Skip to content

Commit

Permalink
Merge branch 'main' into ft/bump-charter-to-0.1.26
Browse files Browse the repository at this point in the history
  • Loading branch information
koechkevin committed Jun 19, 2024
2 parents 942dfd1 + eca32db commit 1bc8bd4
Show file tree
Hide file tree
Showing 19 changed files with 2,934 additions and 153 deletions.
1,235 changes: 1,235 additions & 0 deletions apps/charterafrica/src/components/FeaturedVideos/FeaturedVideo.snap.js

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
import { createRender } from "@commons-ui/testing-library";
import React from "react";

import FeaturedVideos from "./FeaturedVideos";

import theme from "@/charterafrica/theme";

// eslint-disable-next-line testing-library/render-result-naming-convention
const render = createRender({ theme });

const defaultProps = {
items: [
{
videoId: "awPQ5LfoTys",
title: "Latest Release",
publishedAt: "23/06/2024",
},
],
airedOnText: "Aired on",
title: "Featured Videos",
};

describe("FeaturedVideos", () => {
it("should render", () => {
const { container } = render(<FeaturedVideos {...defaultProps} />);
expect(container).toMatchSnapshot();
});
});
109 changes: 109 additions & 0 deletions apps/charterafrica/src/components/FeaturedVideos/FeaturedVideoCard.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,109 @@
import "videojs-youtube";
import "video.js/dist/video-js.css";

import { RichTypography } from "@commons-ui/core";
import { Box, styled } from "@mui/material";
import PropTypes from "prop-types";
import React, { useEffect, useRef } from "react";
import videojs from "video.js";

import LineClampedRichTypography from "@/charterafrica/components/LineClampedRichTypography";

const StyledDiv = styled(Box)({
minWidth: "100%",
height: "100%",
"& .video-js .vjs-big-play-button": {
height: "100%",
left: 0,
top: 0,
width: "100%",
borderRadius: 0,
background: "rgba(62,32,44, 0.9)",
border: "none",
margin: 0,
},
"& .video-js .vjs-big-play-button:hover": {
height: "100%",
left: 0,
top: 0,
width: "100%",
borderRadius: 0,
background: "rgba(62,32,44, 0.8)",
},
".vjs-button > .vjs-icon-placeholder:before, .video-js .vjs-big-play-button .vjs-icon-placeholder:before":
{
position: "relative",
display: "flex",
justifyContent: "center",
alignItems: "center",
// Since we are not using icon of height 126 but rather content "\f101"
fontSize: 126,
},
});

const FeaturedVideoCard = React.forwardRef(
function FeaturedVideoCard(props, ref) {
const { sx, videoId, title, publishedAt, airedOnText } = props;
const videoRef = useRef(null);
const playerRef = useRef(null);
const parentRef = useRef(null);

const src = `https://www.youtube.com/watch?v=${videoId}`;

useEffect(() => {
if (videoRef.current && !playerRef.current) {
const options = {
autoplay: false,
controls: true,
preload: "auto",
sources: [{ src, type: "video/youtube" }],
techOrder: ["youtube"],
height: "auto",
youtube: { ytControls: 2 },
};
playerRef.current = videojs(videoRef.current, options);
}
}, [src]);
return (
<Box sx={sx} ref={ref}>
<StyledDiv ref={parentRef}>
<div data-vjs-player>
{/* eslint-disable-next-line jsx-a11y/media-has-caption */}
<video
ref={videoRef}
className="video-js vjs-fluid vjs-default-skin hide"
/>
</div>
</StyledDiv>
<LineClampedRichTypography
lineClamp={2}
color="primary.dark"
variant="h5SemiBold"
component="h5"
sx={{ typography: { md: "h5" }, marginBottom: 2, mt: 3 }}
>
{title}
</LineClampedRichTypography>
<RichTypography color="primary.dark">
{airedOnText} {publishedAt}
</RichTypography>
</Box>
);
},
);

FeaturedVideoCard.propTypes = {
videoId: PropTypes.string,
title: PropTypes.string,
publishedAt: PropTypes.string,
airedOnText: PropTypes.string,
};

FeaturedVideoCard.defaultProps = {
videoId: undefined,
title: undefined,
publishedAt: undefined,
airedOnText: undefined,
};

export default FeaturedVideoCard;
Loading

0 comments on commit 1bc8bd4

Please sign in to comment.