Skip to content

Instantly share code, notes, and snippets.

@Yeaseen
Last active August 9, 2020 15:25
Show Gist options
  • Save Yeaseen/4ae05502c505fa201251394e062b6a46 to your computer and use it in GitHub Desktop.
Save Yeaseen/4ae05502c505fa201251394e062b6a46 to your computer and use it in GitHub Desktop.
import React, { useState, useEffect } from 'react'
import { useHistory } from 'react-router-dom'
import Swal from "sweetalert2";
const CreatePost = () => {
const history = useHistory()
const [title, setTitle] = useState("")
const [body, setBody] = useState("")
const [image, setImage] = useState("")
const [url, setUrl] = useState("")
useEffect(() => {
if (url) {
//After getting the url, I call a node api of mine to save the data into mongodb
fetch("/createpost", {
method: "post",
headers: {
"Content-Type": "application/json",
"Authorization": "Bearer " + localStorage.getItem("jwt")
},
body: JSON.stringify({
title,
body,
pic: url
})
}).then(res => res.json())
.then(data => {
//console.log(data)
if (data.error) {
Swal.fire({
icon: 'error',
title: 'Oops...',
text: data.error
})
}
else {
Swal.fire({
position: 'top-end',
icon: 'success',
title: 'Created post successfully',
showConfirmButton: false,
timer: 1500
})
history.push("/")
}
}).catch(err => {
console.log(err)
})
}
}, [url])
const postDetails = () => {
//Update the FormData with necessary details at the end of image file
const data = new FormData()
data.append("file", image)
data.append("upload_preset", YOUR_APP_NAME_IN_CLOUDINARY)
data.append("cloud_name", YOUR_CLOUD_NAME)
//Calling the cloudinary api call to upload image and get the public url of uploaded image.
fetch("https://api.cloudinary.com/v1_1/YOUR_CLOUD_NAME/image/upload", {
method: "post",
body: data
})
.then(res => res.json())
.then(data => {
console.log(data)
setUrl(data.secure_url)
})
.catch(err => {
console.log(err)
})
}
return (
<div className="card input-field"
style={{
margin: "30px auto",
maxWidth: "500px",
padding: "20px",
textAlign: "center"
}}
>
<input
type="text"
placeholder="title"
value={title}
onChange={(e) => setTitle(e.target.value)}
/>
<input
type="text"
placeholder="body"
value={body}
onChange={(e) => setBody(e.target.value)}
/>
<div className="file-field input-field">
<div className="btn #64b5f6 blue darken-1">
<span>Upload Image</span>
<input type="file" onChange={(e) => {
setImage(e.target.files[0])
}} />
</div>
<div className="file-path-wrapper">
<input className="file-path validate" type="text" />
</div>
</div>
<button className="btn waves-effect waves-light #64b5f6 blue darken-1"
onClick={() => postDetails()}
>
Submit Post
</button>
</div>
)
}
export default CreatePost
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment