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
27 lines
687 B
JavaScript
27 lines
687 B
JavaScript
// @flow
|
|
import type { Player } from './videojs';
|
|
import videojs from 'video.js';
|
|
|
|
class PlayPreviousButton extends videojs.getComponent('Button') {
|
|
constructor(player, options = {}) {
|
|
super(player, options);
|
|
this.addClass('vjs-button--play-previous');
|
|
this.controlText('Play Previous');
|
|
}
|
|
}
|
|
|
|
export function addPlayPreviousButton(player: Player, playPreviousURI: () => void) {
|
|
const controlBar = player.controlBar;
|
|
|
|
const playPrevious = new PlayPreviousButton(player, {
|
|
name: 'PlayPreviousButton',
|
|
text: 'Play Previous',
|
|
clickHandler: () => {
|
|
playPreviousURI();
|
|
},
|
|
});
|
|
|
|
if (controlBar) {
|
|
controlBar.addChild(playPrevious, {}, 0);
|
|
}
|
|
}
|