I’m using react-player component for this.
I have file 1 where I’m storing some data as an array, including a local video.
JavaScript
x
13
13
1
import videoSample from "../assets/videos/sample-video.mov";
2
3
export const Data = {
4
ProjectList: [
5
{
6
title: "My title",
7
desc: "Some description",
8
videoUrl: { videoSample },
9
sourceUrl: "https:// ... ",
10
},
11
],
12
};
13
File 2 takes the array and maps each item to a React component called ProjectDetail
.
JavaScript
1
10
10
1
function MappingFunction() {
2
return (
3
<>
4
{Data.ProjectList.map((project, index) => (
5
<ProjectDetail key={index} {project} />
6
))}
7
</>
8
);
9
}
10
Finally, this is file 3 which contains ProjectDetail
. It takes the array item as props. videoUrl
is passed to the ReactPlayer component.
JavaScript
1
22
22
1
export default function ProjectDetail(props) {
2
return (
3
<>
4
<div>
5
<ReactPlayer
6
url={props.videoUrl} // does not work!
7
width="500px"
8
/>
9
</div>
10
<div>
11
<h2>{props.title}</h2> // works
12
<p>{props.desc}</p> // works
13
<button
14
onClick={() => { window.open(props.sourceUrl, "_blank"); }} // works
15
> Click to see more
16
</button>
17
</div>
18
</>
19
);
20
}
21
22
title
, desc
and sourceUrl
are working fine, but I don’t understand videoUrl
doesn’t. I tried looking up an answer but was unsuccessful.
If I import videoSample
in file 3 directly, it works fine, but not when passed as a prop from outside. What am I missing?
Advertisement
Answer
Found my mistake. All I needed to do was removing the curly brackets.
videoUrl: { videoSample }
-> videoUrl: videoSample