87c94e3c1c
* add mobile plugin back on ios * further touchups and fix ios * finish mobile functionality * dont show big play button on mobile * remove logs * proof of concept * dont go full screen on rotate * add back functionality * replace dispose event with navigate away * bugfix * turn off show if you liked button and nag only on homepage * add back old functionality * ending event not working * test here * working but needs cleanup * more player touchups * bugfix * add settings button on mobile * more touchups * more cleanups * touchup loading functionality * fix hover thumbnails * touchup and eslint fix * fix repopulation bug * change recsys event name * bugfix events * change the way buttons are removed and added * finish chapters button * refactor to use videojs methods * refactor to fix autoplay next * ux touchups * seems to be behaving properly * control bar behaving how it should * fix control bar on ios * working on flow and eslint errors * bugfix and flow fixes * bring back nudge * fix playlist button bug * remove chapter markers properly * show big play button * bugfix recsys closed event * fix analytics bug * fix embeds * bugfix * possible bugfix for kp * bugfix playlist buttons * fix issue with mobile ui plugin * fix firefox autoplay issue * fix bug for play on floating player closed * bugfix volume control for ios * instantiate new player if switching between claim types * fix flow and lint errors * fix control bar not showing up when switching sources * dispose old player if recreating * bugfix save position * reset recsys data between videos * fix audio upload posters * clear claimSrcVhs on reload * bugfix errant image previews showing up * reset player value of having already switched quality * fix watch position not being used * bugfix switching between sources not perserving position * fix save position bug * fix playlist buttons * bugfix * code cleanup and add back 5 second feature
25 lines
683 B
JavaScript
25 lines
683 B
JavaScript
// @flow
|
|
const VideoJsFunctions = ({ isAudio }: { isAudio: boolean }) => {
|
|
// TODO: can remove this function as well
|
|
// Create the video DOM element and wrapper
|
|
function createVideoPlayerDOM(container: any) {
|
|
if (!container) return;
|
|
|
|
// This seems like a poor way to generate the DOM for video.js
|
|
const wrapper = document.createElement('div');
|
|
wrapper.setAttribute('data-vjs-player', 'true');
|
|
const el = document.createElement('video');
|
|
el.className = 'video-js vjs-big-play-centered ';
|
|
wrapper.appendChild(el);
|
|
|
|
container.appendChild(wrapper);
|
|
|
|
return el;
|
|
}
|
|
|
|
return {
|
|
createVideoPlayerDOM,
|
|
};
|
|
};
|
|
|
|
export default VideoJsFunctions;
|