Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

feat: contextAPI added #6

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: react-7
Choose a base branch
Loading
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 7 additions & 31 deletions 38 src/App.js
Original file line number Diff line number Diff line change
@@ -1,40 +1,16 @@
import { useState } from 'react';
import './App.css';
import AddVideo from './components/AddVideo';
import videoDB from './data/data';
import VideoList from './components/VideoList';
function App() {
console.log('render App')

const [videos,setVideos] = useState(videoDB);
const [editableVideo,setEditableVideo] = useState(null);

function addVideos(video){
setVideos([
...videos,
{...video, id: videos.length+1}
]);
}
function deleteVideo(id){
setVideos(videos.filter(video=>video.id!==id))
}
function editVideo(id){
setEditableVideo(videos.find(video=>video.id===id))
}
import { useContext } from 'react';
import { VideosContext } from './contexts/videosContext';

function updateVideo(video){
const index = videos.findIndex(v=>v.id===video.id)
const newVideos = [...videos]
newVideos.splice(index,1,video)
setVideos(newVideos)
}
function App() {
const { videos, setVideos } = useContext(VideosContext)

return (
<div className="App" onClick={()=>console.log('App')}>
<AddVideo addVideos={addVideos} updateVideo={updateVideo} editableVideo={editableVideo}></AddVideo>
<VideoList deleteVideo={deleteVideo} editVideo={editVideo} videos={videos}></VideoList>


<div className="App">
<AddVideo />
<VideoList />
</div>
);
}
Expand Down
39 changes: 22 additions & 17 deletions 39 src/components/AddVideo.js
Original file line number Diff line number Diff line change
@@ -1,39 +1,44 @@
import { VideosContext } from '../contexts/videosContext';
import './AddVideo.css';
import {useEffect, useState} from 'react';
import { useContext, useEffect, useState } from 'react';

const initialState = {
time: '1 month ago',
channel: 'Coder Dost',
verified: true,
title:'',
views:''
}
time: '1 month ago',
channel: 'Coder Dost',
verified: true,
title: '',
views: ''
}

function AddVideo({addVideos,updateVideo,editableVideo}) {
function AddVideo() {
const { addVideos, updateVideo, editableVideo } = useContext(VideosContext);
const [video, setVideo] = useState(initialState);

function handleSubmit(e) {
e.stopPropagation()
e.preventDefault();
if(editableVideo){
if (video.title === '' || video.views === '') return
if (editableVideo) {
updateVideo(video)
}else{
} else {
addVideos(video)
}

setVideo(initialState)

}
function handleChange(e) {
setVideo({...video,
[e.target.name] : e.target.value
setVideo({
...video,
[e.target.name]: e.target.value
})
}

useEffect(()=>{
if(editableVideo){
useEffect(() => {
if (editableVideo) {
setVideo(editableVideo)
}
},[editableVideo])
}, [editableVideo])

return (
<form>
Expand All @@ -54,7 +59,7 @@ function AddVideo({addVideos,updateVideo,editableVideo}) {
<button
onClick={handleSubmit}
>
{editableVideo?'Edit':'Add'} Video
{editableVideo ? 'Edit' : 'Add'} Video
</button>
</form>
);
Expand Down
36 changes: 19 additions & 17 deletions 36 src/components/Video.js
Original file line number Diff line number Diff line change
@@ -1,27 +1,29 @@
import { useContext } from 'react';
import './Video.css';
import { VideosContext } from '../contexts/videosContext';

function Video({title,id,channel="Coder Dost",views,time,verified,children,deleteVideo,editVideo}) {
function Video({ title, id, channel = "Coder Dost", views, time, verified, children }) {
console.log('render Video')
const { deleteVideo, editVideo } = useContext(VideosContext);


return (
<>
<>
<div className='container'>
<button className='close' onClick={()=>deleteVideo(id)}>X</button>
<button className='edit' onClick={()=>editVideo(id)}>Edit</button>
<div className="pic">
<img src={`https://picsum.photos/id/${id}/160/90`} alt="Katherine Johnson" />
<button className='close' onClick={() => deleteVideo(id)}>X</button>
<button className='edit' onClick={() => editVideo(id)}>Edit</button>
<div className="pic">
<img src={`https://picsum.photos/id/${id}/160/90`} alt="Katherine Johnson" />
</div>
<div className="title">{title}</div>
<div className="channel">{channel} {verified && '✅'} </div>
<div className="views">
{views} views <span>.</span> {time}
</div>
<div>
{children}
</div>
</div>
<div className="title">{title}</div>
<div className="channel">{channel} {verified && '✅'} </div>
<div className="views">
{views} views <span>.</span> {time}
</div>
<div>
{children}
</div>
</div>
</>
</>
);
}

Expand Down
52 changes: 26 additions & 26 deletions 52 src/components/VideoList.js
Original file line number Diff line number Diff line change
@@ -1,32 +1,32 @@
import Video from "./Video";
import PlayButton from "./PlayButton";
import { useContext } from "react";
import { VideosContext } from "../contexts/videosContext";

function VideoList({videos,deleteVideo,editVideo}){

return(
<>
{videos.map((video) => (
<Video
key={video.id}
title={video.title}
views={video.views}
time={video.time}
channel={video.channel}
verified={video.verified}
id={video.id}
deleteVideo={deleteVideo}
editVideo={editVideo}
>
<PlayButton
onPlay={() => console.log('Playing..',video.title)}
onPause={() => console.log('Paused..',video.title)}
>
{video.title}
</PlayButton>
</Video>
))}
</>
)
function VideoList() {
const { videos } = useContext(VideosContext);
return (
<>
{videos.map((video) => (
<Video
key={video.id}
title={video.title}
views={video.views}
time={video.time}
channel={video.channel}
verified={video.verified}
id={video.id}
>
<PlayButton
onPlay={() => console.log('Playing..', video.title)}
onPause={() => console.log('Paused..', video.title)}
>
{video.title}
</PlayButton>
</Video>
))}
</>
)
}

export default VideoList
46 changes: 46 additions & 0 deletions 46 src/contexts/videosContext.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
import { createContext, useState } from "react";
import videosDB from "../data/data";

const VideosContext = createContext({
videos: null,
setVideos: () => { }
})

const VideosProvider = ({ children }) => {
const [videos, setVideos] = useState(videosDB);
const [editableVideo, setEditableVideo] = useState(null);

function addVideos(video) {
setVideos([
...videos,
{ ...video, id: videos.length + 1 }
]);
}
function deleteVideo(id) {
setVideos(videos.filter(video => video.id !== id))
}
function editVideo(id) {
setEditableVideo(videos.find(video => video.id === id))
}

function updateVideo(video) {
const index = videos.findIndex(v => v.id === video.id)
const newVideos = [...videos]
newVideos.splice(index, 1, video)
setVideos(newVideos)
}

const value = {
videos,
setVideos,
addVideos,
deleteVideo,
editVideo,
updateVideo,
editableVideo
}

return <VideosContext.Provider value={value}>{children}</VideosContext.Provider>
}

export { VideosContext, VideosProvider }
5 changes: 4 additions & 1 deletion 5 src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,14 @@ import React from 'react';
import ReactDOM from 'react-dom/client';
import './index.css';
import App from './App';
import { VideosProvider } from './contexts/videosContext';

const root = ReactDOM.createRoot(document.getElementById('root'));
root.render(
<React.StrictMode>
<App />
<VideosProvider>
<App />
</VideosProvider>
</React.StrictMode>
);

Morty Proxy This is a proxified and sanitized view of the page, visit original site.