-
Notifications
You must be signed in to change notification settings - Fork 366
/
Copy pathAddVideo.js
68 lines (60 loc) · 1.34 KB
/
AddVideo.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
import { VideosContext } from '../contexts/videosContext';
import './AddVideo.css';
import { useContext, useEffect, useState } from 'react';
const initialState = {
time: '1 month ago',
channel: 'Coder Dost',
verified: true,
title: '',
views: ''
}
function AddVideo() {
const { addVideos, updateVideo, editableVideo } = useContext(VideosContext);
const [video, setVideo] = useState(initialState);
function handleSubmit(e) {
e.stopPropagation()
e.preventDefault();
if (video.title === '' || video.views === '') return
if (editableVideo) {
updateVideo(video)
} else {
addVideos(video)
}
setVideo(initialState)
}
function handleChange(e) {
setVideo({
...video,
[e.target.name]: e.target.value
})
}
useEffect(() => {
if (editableVideo) {
setVideo(editableVideo)
}
}, [editableVideo])
return (
<form>
<input
type="text"
name="title"
onChange={handleChange}
placeholder="title"
value={video.title}
/>
<input
type="text"
name="views"
onChange={handleChange}
placeholder="views"
value={video.views}
/>
<button
onClick={handleSubmit}
>
{editableVideo ? 'Edit' : 'Add'} Video
</button>
</form>
);
}
export default AddVideo;