summaryrefslogtreecommitdiffstats
path: root/browser/components/newtab/content-src/aboutwelcome/components/OnboardingVideo.jsx
blob: 629a409a596b1ce9c54290dae9931ec25b307f1e (plain)
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
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this file,
 * You can obtain one at http://mozilla.org/MPL/2.0/. */

import React from "react";

export const OnboardingVideo = props => {
  const vidUrl = props.content.video_url;
  const autoplay = props.content.autoPlay;

  const handleVideoAction = event => {
    props.handleAction({
      currentTarget: {
        value: event,
      },
    });
  };

  return (
    <div>
      <video // eslint-disable-line jsx-a11y/media-has-caption
        controls={true}
        autoPlay={autoplay}
        src={vidUrl}
        width="604px"
        height="340px"
        onPlay={() => handleVideoAction("video_start")}
        onEnded={() => handleVideoAction("video_end")}
      >
        <source src={vidUrl}></source>
      </video>
    </div>
  );
};