ultrawidify/src/ext/lib/video-data/PlayerData.ts

926 lines
28 KiB
TypeScript

import Debug from '../../conf/Debug';
import ExtensionMode from '../../../common/enums/ExtensionMode.enum'
import PlayerNotificationUi from '../uwui/PlayerNotificationUI';
import * as _ from 'lodash';
import { sleep } from '../../../common/js/utils';
import VideoData from './VideoData';
import EventBus from '../EventBus';
import UI from '../uwui/UI';
import { SiteSettings } from '../settings/SiteSettings';
import PageInfo from './PageInfo';
import { RunLevel } from '../../enum/run-level.enum';
import { ExtensionEnvironment } from '../../../common/interfaces/SettingsInterface';
import { ComponentLogger } from '../logging/ComponentLogger';
import { collectionHas, equalish } from '../../util/comparators';
if (process.env.CHANNEL !== 'stable'){
console.info("Loading: PlayerData.js");
}
interface PlayerDimensions {
width?: number;
height?: number;
fullscreen?: boolean;
}
interface ElementData {
element: HTMLElement,
type: string, // kinda forgot what this is being used for
tagName?: string,
classList?: any,
id?: string
width?: number;
height?: number;
heuristics?: any;
index?: number,
autoScore?: number;
}
type ElementStack = ElementData[];
/**
* accepts <video> tag (element) and list of names that can appear in id or class
* returns player dimensions (width, height)
* Theater mode is mildly broken on youtube. <video> tag remains bigger than the player after leaving the fullscreen mode, and
* there's nothing we can do about that. This function aims to solve the problem by finding the player element that's wrapped around
* the <video> tag.
* In general, an outer tag should be bigger than the inner tag. Therefore the smallest element between <video> tag and the document
* root should be the player.
* If list of names is provided, the function returns dimensions of the first element that contains any name from the list in either
* id or class.
*
*
* RUN LEVELS
* Run are there to ensure only the necessary functions run.
*
* * Off:
* * Extension is effectively disabled. However, even in this quasi-disabled state,
* certain functions of the class should still be active.
* 1. Player size monitoring
* (Run level could be set to 'off' due to player being too small)
* 2. Event bus
* (Actions from popup may cause RunLevel to increase)
*
* * UiOnly:
* * Extension should show in-player UI, but it should not inject any
* unnecessary CSS.
*/
class PlayerData {
private playerCssClass = 'uw-ultrawidify-player-css';
//#region helper objects
logger: ComponentLogger;
videoData: VideoData;
pageInfo: PageInfo;
siteSettings: SiteSettings;
notificationService: PlayerNotificationUi;
eventBus: EventBus;
//#endregion
//#region HTML objects
videoElement: HTMLVideoElement;
element: HTMLElement;
//#endregion
//#region flags
runLevel: RunLevel = RunLevel.Off;
enabled: boolean;
invalid: boolean = false;
private periodicallyRefreshPlayerElement: boolean = false;
halted: boolean = true;
isFullscreen: boolean = !!document.fullscreenElement;
isTheaterMode: boolean = false; // note: fullscreen mode will count as theaterMode if player was in theater mode before fs switch. This is desired, so far.
isTooSmall: boolean = true;
//#endregion
//#region misc stuff
extensionMode: any;
dimensions: PlayerDimensions;
private observer: ResizeObserver;
private trackChangesTimeout: any;
private markedElement: HTMLElement;
private ui: UI;
private _isTrackDimensionChangesActive: boolean = false;
elementStack: ElementStack = [] as ElementStack;
//#endregion
//#region event bus configuration
private eventBusCommands = {
'get-player-tree': [{
function: () => this.handlePlayerTreeRequest()
}],
'get-player-dimensions': [{
function: () => {
this.eventBus.send('uw-config-broadcast', {
type: 'player-dimensions',
data: this.dimensions
});
}
}],
'set-mark-element': [{ // NOTE: is this still used?
function: (data) => this.markElement(data)
}],
'update-player': [{
function: () => this._requestTick(true)
}],
'set-run-level': [{
function: (runLevel) => this.setRunLevel(runLevel)
}],
'change-player-element': [{
function: () => {
this.nextPlayerElement();
}
}]
}
//#endregion
private dimensionChangeListener = {
that: this,
handleEvent: function(event: Event) {
this.that.requestTick();
}
}
private fallbackDimensionChangeInterval: any;
/**
* Gets player aspect ratio. If in full screen, it returns screen aspect ratio unless settings say otherwise.
*/
get aspectRatio() {
try {
if (this.isFullscreen) {
return window.innerWidth / window.innerHeight;
}
if (!this.dimensions) {
return (this.element?.scrollWidth ?? this.videoElement.videoWidth) / (this.element?.scrollHeight ?? this.videoElement.videoHeight);
}
return this.dimensions.width / this.dimensions.height;
} catch (e) {
console.error('cannot determine aspect ratio!', e);
return 1;
}
}
/**
* Gets current environment (needed when determining whether extension runs in fulls screen, theater, or normal)
*/
private lastEnvironment: ExtensionEnvironment;
get environment(): ExtensionEnvironment {
if (this.isFullscreen) {
return ExtensionEnvironment.Fullscreen;
}
if (this.isTheaterMode) {
return ExtensionEnvironment.Theater;
}
return ExtensionEnvironment.Normal;
}
/**
* ————————————————————————————————————————————————————————————————————————
* END OF PROPERTIES
* ————————————————————————————————————————————————————————————————————————
*
*/
//#region lifecycle
constructor(videoData) {
try {
// set all our helper objects
this.logger = new ComponentLogger(videoData.logAggregator, 'PlayerData', {styles: {}});
this.videoData = videoData;
this.videoElement = videoData.video;
this.pageInfo = videoData.pageInfo;
this.siteSettings = videoData.siteSettings;
this.eventBus = videoData.eventBus;
// do the rest
this.invalid = false;
this.updatePlayer(this.getPlayer());
this.isTooSmall = this.checkIfTooSmall();;
this.initEventBus();
this.dimensions = undefined;
this.periodicallyRefreshPlayerElement = false;
try {
this.periodicallyRefreshPlayerElement = this.siteSettings.data.currentDOMConfig.periodicallyRefreshPlayerElement;
} catch (e) {
// no biggie — that means we don't have any special settings for this site.
}
// this happens when we don't find a matching player element
if (!this.element) {
this.invalid = true;
return;
}
this.startChangeDetection();
document.addEventListener('fullscreenchange', this.dimensionChangeListener);
// we want to reload on storage changes
this.siteSettings.subscribeToStorageChange('PlayerData', (siteConfUpdate) => this.reloadPlayerDataConfig(siteConfUpdate));
} catch (e) {
console.error('[Ultrawidify::PlayerData::ctor] There was an error setting up player data. You should be never seeing this message. Error:', e);
this.invalid = true;
}
}
/**
* Initializes event bus
*/
private initEventBus() {
for (const action in this.eventBusCommands) {
for (const command of this.eventBusCommands[action]) {
this.eventBus.subscribe(action, command);
}
}
}
private initFallbackDimensionMonitor() {
this.stopFallbackDimensionMonitor();
this.fallbackDimensionChangeInterval = setInterval( () => {
this.processTick();
}, 2000);
}
/**
* Stops manually scanning for dimension changes
*/
stopFallbackDimensionMonitor() {
clearInterval(this.fallbackDimensionChangeInterval);
this.fallbackDimensionChangeInterval = undefined;
}
/**
* Initialized player UI at a later time.
* @param playerDimensions
* @returns
*/
deferredUiInitialization(playerDimensions = this.dimensions) {
if (this.ui || this.siteSettings.data.enableUI === ExtensionMode.Disabled) {
return;
}
if (
this.isFullscreen
|| (
this.siteSettings.data.enableUI >= ExtensionMode.FullScreen
&& playerDimensions.width > 1208
&& playerDimensions.height > 720
)
) {
this.ui = new UI(
'ultrawidifyUi',
{
parentElement: this.element,
eventBus: this.eventBus,
playerData: this,
uiSettings: this.videoData.settings.active.ui,
siteSettings: this.siteSettings,
}
);
if (this.runLevel < RunLevel.UIOnly) {
this.ui?.disable();
}
if (this.runLevel >= RunLevel.UIOnly) {
this.ui?.enable();
this.startChangeDetection();
}
if (this.runLevel >= RunLevel.CustomCSSActive) {
this.element.classList.add(this.playerCssClass);
}
}
}
/**
* Completely stops everything the extension is doing
*/
destroy() {
document.removeEventListener('fullscreenchange', this.dimensionChangeListener);
this.stopChangeDetection();
this.ui?.destroy();
this.notificationService?.destroy();
}
//#endregion
//#region utils
/**
* Checks if player dimensions are too small for autodetection to run.
* Full screen is never too small, even if it's
* @param playerDimensions
* @returns
*/
private checkIfTooSmall() {
return !document.fullscreenElement && (this.element.clientWidth < 1208 || this.element.clientHeight < 720);
}
private reloadPlayerDataConfig(siteConfUpdate) {
// this.siteSettings = siteConfUpdate;
// this.updatePlayer();
this.periodicallyRefreshPlayerElement = false;
try {
this.periodicallyRefreshPlayerElement = this.siteSettings.data.currentDOMConfig.periodicallyRefreshPlayerElement;
} catch (e) {
// no biggie — that means we don't have any special settings for this site.
}
// because this is often caused by the UI
this.handlePlayerTreeRequest();
}
/**
* Sets extension runLevel and sets or unsets appropriate css classes as necessary
* @param runLevel
* @returns
*/
setRunLevel(runLevel: RunLevel) {
if (this.runLevel === runLevel) {
return;
}
// increasing runLevel works differently than decreasing
if (this.runLevel > runLevel) {
if (runLevel < RunLevel.CustomCSSActive) {
this.element.classList.remove(this.playerCssClass);
}
if (runLevel < RunLevel.UIOnly) {
this.ui?.disable();
}
} else {
if (runLevel >= RunLevel.UIOnly) {
this.ui?.enable();
this.startChangeDetection();
}
if (runLevel >= RunLevel.CustomCSSActive) {
this.element.classList.add(this.playerCssClass);
}
}
this.runLevel = runLevel;
}
//#endregion
onPlayerDimensionsChanged: ResizeObserverCallback = _.debounce(
(mutationList?, observer?) => {
this._requestTick(true);
},
250, // do it once per this many ms
{
leading: true, // do it when we call this fallback first
trailing: true // do it after the timeout if we call this callback few more times
}
);
private _requestTick(immediately?: boolean) {
if (immediately) {
this.processTick();
}
}
// Currently just a dummy, but at some point we could try to avoid running
// processTick on every tick — instead, running it only when needed.
// But today is not that day.
requestTick() {
this._requestTick();
}
/**
* Checks if anything changed
* @returns
*/
private processTick() {
let changeDetected = false;
let changes = {
player: false,
fullScreen: false,
theater: false,
dimensions: false,
}
let fs, newPlayerCandidate, isTheaterMode, currentDimensions;
fullScreenCheck:
{
fs = !!document.fullscreenElement;
if (fs !== this.isFullscreen) {
changes.fullScreen = true;
changeDetected = true;
}
}
playerCheck:
{
newPlayerCandidate = this.getPlayer();
if (!newPlayerCandidate) {
console.warn('[uw->PlayerData::processTick()] — player not detected — dimensions will not be checked')
return;
}
if (newPlayerCandidate !== this.element) {
changes.player = true;
changeDetected = true;
}
}
theaterModeCheck:
{
isTheaterMode = equalish(window.innerWidth, this.element.offsetWidth, 32);
if (isTheaterMode !== this.isTheaterMode) {
changes.theater = true;
changeDetected = true;
}
}
dimensionCheck:
{
if (this.isFullscreen) {
currentDimensions = {
width: window.innerWidth,
height: window.innerHeight,
};
} else {
currentDimensions = {
width: this.element.offsetWidth,
height: this.element.offsetHeight
};
}
if (currentDimensions.width !== this.dimensions?.width || currentDimensions.height !== this.dimensions?.height) {
changes.dimensions = true;
changeDetected = true;
}
}
// we only commit changes if no errors were encountered
commitChanges:
{
if (changes.fullScreen) this.isFullscreen = fs;
if (changes.player) this.updatePlayer(newPlayerCandidate);
if (changes.theater) this.isTheaterMode = isTheaterMode;
if (changes.dimensions) this.dimensions = currentDimensions;
this.isTooSmall = this.checkIfTooSmall();
}
const canEnable = this.siteSettings.isEnabledForEnvironment(this.isFullscreen, this.isTheaterMode);
if (this.runLevel === RunLevel.Off && canEnable) {
this.eventBus.send('restore-ar', null);
} else if (!canEnable && this.runLevel !== RunLevel.Off) {
// must be called before
this.eventBus.send('restore-ar', null);
this.setRunLevel(RunLevel.Off);
}
if (changeDetected) {
this.deferredUiInitialization();
this.eventBus.send('restore-ar', null);
this.eventBus.send('delayed-restore-ar', {delay: 500});
}
}
//#region player element change detection
/**
* Starts change detection.
* @returns
*/
startChangeDetection(){
if (this.invalid) {
return;
}
try {
if (this.observer) {
this.observer.disconnect();
}
this.observer = new ResizeObserver(
this.onPlayerDimensionsChanged
);
this.observer.observe(this.element);
} catch (e) {
console.error("failed to set observer",e );
}
// legacy mode still exists, but acts as a fallback for observers and is triggered less
// frequently in order to avoid too many pointless checks
this.initFallbackDimensionMonitor();
}
stopChangeDetection(){
this.observer.disconnect();
}
private getElementStack(): ElementStack {
const elementStack: ElementStack = [{
element: this.videoElement,
type: 'video',
tagName: 'video',
classList: this.videoElement.classList,
id: this.videoElement.id,
}];
let element = this.videoElement.parentNode as HTMLElement;
// first pass to generate the element stack and translate it into array
while (element) {
elementStack.push({
element,
type: '',
tagName: element.tagName,
classList: element.classList,
id: element.id,
width: element.offsetWidth, // say no to reflows, don't do element.offset[width/height]
height: element.offsetHeight, // repeatedly ... let's just do it once at this spot
heuristics: {},
});
element = element.parentElement;
}
this.elementStack = elementStack;
return this.elementStack;
}
/**
* Updates current player element
* @param options
* @returns
*/
updatePlayer(newPlayer: HTMLElement, options?: {verbose?: boolean}) {
if (newPlayer === this.element || !newPlayer) {
return;
}
if (this.element) {
this.observer?.unobserve(this.element);
}
// clean up and re-initialize UI
this.ui?.destroy();
delete this.ui;
// Don't forget to also move observer to the new player
// (if observer exists)
this.element = newPlayer;
this.observer?.observe(this.element);
this.ui = new UI(
'ultrawidifyUi',
{
parentElement: this.element,
eventBus: this.eventBus,
playerData: this,
uiSettings: this.videoData.settings.active.ui,
siteSettings: this.siteSettings,
}
);
}
/**
* Finds and returns HTML element of the player
*/
private getPlayer(options?: {verbose?: boolean}): HTMLElement {
const videoWidth = this.videoElement.offsetWidth;
const videoHeight = this.videoElement.offsetHeight;
let playerCandidate;
const elementStack = this.getElementStack();
const playerQs = this.siteSettings.getCustomDOMQuerySelector('player');
const playerIndex = this.siteSettings.getPlayerIndex();
// on verbose, get both qs and index player
if (options?.verbose) {
if (playerIndex) {
playerCandidate = elementStack[playerIndex];
playerCandidate.heuristics['manualElementByParentIndex'] = true;
}
if (playerQs) {
playerCandidate = this.getPlayerQs(playerQs, elementStack, videoWidth, videoHeight);
}
}
// if mode is given, we follow the preference
if (this.siteSettings.data.currentDOMConfig?.elements?.player?.manual && this.siteSettings.data.currentDOMConfig?.elements?.player?.mode) {
if (this.siteSettings.data.currentDOMConfig?.elements?.player?.mode === 'qs') {
playerCandidate = this.getPlayerQs(playerQs, elementStack, videoWidth, videoHeight);
} else {
playerCandidate = elementStack[playerIndex];
playerCandidate.heuristics['manualElementByParentIndex'] = true;
}
} else {
// try to figure it out based on what we have, with playerQs taking priority
if (playerQs) {
playerCandidate = this.getPlayerQs(playerQs, elementStack, videoWidth, videoHeight);
} else if (playerIndex) { // btw 0 is not a valid index for player
playerCandidate = elementStack[playerIndex];
playerCandidate.heuristics['manualElementByParentIndex'] = true;
}
}
if (playerCandidate) {
if (options?.verbose) {
this.getPlayerAuto(elementStack, videoWidth, videoHeight);
playerCandidate.heuristics['activePlayer'] = true;
}
return playerCandidate.element;
} else {
const playerCandidate = this.getPlayerAuto(elementStack, videoWidth, videoHeight);
if (playerCandidate === null) {
console.warn('[uw::getPlayer] getPlayerAuto returned null — no player detected?');
} else {
playerCandidate.heuristics['activePlayer'] = true;
return playerCandidate.element;
}
}
}
private nextPlayerElement() {
const currentIndex = this.siteSettings.data.playerAutoConfig?.currentIndex ?? this.siteSettings.data.playerAutoConfig?.initialIndex;
if (!currentIndex) {
// console.warn('Player Element not valid.');
return;
}
const nextIndex = currentIndex + 1;
const elementStack = this.getElementStack();
if (
equalish(elementStack[currentIndex].element.offsetWidth, elementStack[nextIndex].element.offsetWidth, 2)
&& equalish(elementStack[currentIndex].element.offsetHeight, elementStack[nextIndex].element.offsetHeight, 2)
) {
// this.siteSettings.set('playerAutoConfig.initialIndex', this.siteSettings.data.playerAutoConfig.initialIndex + 1, {noSave: true});
// this.siteSettings.set('playerAutoConfig.modified', true);
// console.log('updated site settings:', this.siteSettings.data.playerAutoConfig);
// this.videoData.settings.saveWithoutReload();
this.updatePlayer(elementStack[nextIndex].element);
}
}
/**
* Gets player based on some assumptions, without us defining shit.
* @param elementStack
* @param videoWidth
* @param videoHeight
* @returns
*/
private getPlayerAuto(elementStack: ElementStack, videoWidth, videoHeight) {
let penaltyMultiplier = 2;
const sizePenaltyMultiplier = 0.1;
const perLevelScorePenalty = 10;
let sameSizeBonus = 0;
const fullscreenElement = document.fullscreenElement;
for (const [index, elementData] of elementStack.entries()) {
elementData.index = index;
// ignore weird elements, those would break our stuff
if (elementData.width == 0 || elementData.height == 0) {
elementData.heuristics['invalidSize'] = true;
continue;
}
if (elementData.element === fullscreenElement) {
// reset penalty multiplier if current element is full screen element
// penaltyMultiplier here must be smaller than initial penalty multiplier,
// so that playerElement is not above fullscreenElement. Player element must
// be a descendant of fullscreenElement for the UI to show up
penaltyMultiplier = 1;
}
// element is player, if at least one of the sides is as long as the video
// note that we can't make any additional assumptions with regards to player
// size, since there are both cases where the other side is bigger _and_ cases
// where other side is smaller than the video.
//
// Don't bother thinking about this too much, as any "thinking" was quickly
// corrected by bugs caused by various edge cases.
if (
equalish(elementData.height, videoHeight, 5)
|| equalish(elementData.width, videoWidth, 5)
) {
let score = 1000;
// -------------------
// PENALTIES
// -------------------
//
// Our ideal player will be as close to the video element, and it will als
// be as close to the size of the video.
const diffX = (elementData.width - videoWidth);
const diffY = (elementData.height - videoHeight);
// we have a minimal amount of grace before we start dinking scores for
// mismatched dimensions. The size of the dimension mismatch dink is
// proportional to area rather than circumference, meaning we multiply
// x and y dinks instead of adding them up.
let playerSizePenalty = 1;
if (diffY > 5) {
playerSizePenalty *= diffY * sizePenaltyMultiplier;
}
if (diffX > 5) {
playerSizePenalty *= diffX * sizePenaltyMultiplier;
}
score -= playerSizePenalty;
// we prefer elements closer to the video, so the score of each potential
// candidate gets dinked a bit
// score -= perLevelScorePenalty * penaltyMultiplier;
if (elementData.width === elementStack[index - 1].width && elementData.height === elementStack[index - 1].height) {
score += ++sameSizeBonus;
} else {
sameSizeBonus = 0;
}
elementData.autoScore = score;
elementData.heuristics['autoScoreDetails'] = {
playerSizePenalty,
diffX,
diffY,
penaltyMultiplier
}
// ensure next valid candidate is gonna have a harder job winning out
penaltyMultiplier++;
}
}
let bestCandidate: any = {autoScore: -99999999, initialValue: true};
for (const element of elementStack) {
if (element.autoScore > bestCandidate.autoScore) {
bestCandidate = element;
}
}
if (bestCandidate.initialValue) {
bestCandidate = null;
} else {
bestCandidate.heuristics['autoMatch'] = true;
// if (this.siteSettings.data.playerAutoConfig?.initialIndex !== bestCandidate.index) {
// this.siteSettings.set('playerAutoConfig.initialIndex', bestCandidate.index, {reload: false, scripted: true});
// }
}
// BUT WAIT! THERE'S MORE
// Some sites (youtube) can re-parent elements, causing current player element to vanish from DOM
// Which means we need to set up an observer that will re-acquire the player when that happens.
// TODO: Ideally, observer should request a tick
if (bestCandidate) {
const observer = new MutationObserver(
(mutations) => {
mutations.forEach((mutation) => {
mutation.removedNodes.forEach((node) => {
if (node === bestCandidate.element) {
observer.disconnect();
this.updatePlayer(
this.getPlayer()
);
}
})
});
}
);
observer.observe(bestCandidate.element.parentNode, {childList: true});
}
return bestCandidate;
}
/**
* Gets player element based on a query string.
*
* Since query string does not necessarily uniquely identify an element, this function also
* tries to evaluate which candidate of element that match the query selector is the most
* likely the one element we're looking for.
*
* Function prefers elements that are:
* 1. closer to the video
* 2. about the same size as the video
* 3. they must appear between video and root of the DOM hierarchy
*
* @param queryString query string for player element
* @param elementStack branch of DOM hierarchy that ends with a video
* @param videoWidth width of the video
* @param videoHeight height of the video
* @returns best candidate or null, if nothing in elementStack matches our query selector
*/
private getPlayerQs(queryString: string, elementStack: any[], videoWidth, videoHeight) {
const perLevelScorePenalty = 10;
let penaltyMultiplier = 0;
const allSelectors = document.querySelectorAll(queryString);
for (const element of elementStack) {
if (collectionHas(allSelectors, element.element)) {
let score = 100;
// we award points to elements which match video size in one
// dimension and exceed it in the other
if (
(element.width >= videoWidth && equalish(element.height, videoHeight, 2))
|| (element.height >= videoHeight && equalish(element.width, videoWidth, 2))
) {
score += 75;
}
score -= perLevelScorePenalty * penaltyMultiplier;
element.heuristics['qsScore'] = score;
penaltyMultiplier++;
}
}
let bestCandidate: any = {qsScore: -99999999, initialValue: true};
for (const element of elementStack) {
if (element.qsScore > bestCandidate.qsScore) {
bestCandidate = element;
}
}
if (bestCandidate.initialValue) {
bestCandidate = null;
} else {
bestCandidate.heuristics['qsMatch'] = true;
}
return bestCandidate;
}
/**
* Lists elements between video and DOM root for display in player selector (UI)
*/
private handlePlayerTreeRequest() {
// this populates this.elementStack fully
// this.updatePlayer({verbose: true});
this.eventBus.send('uw-config-broadcast', {type: 'player-tree', config: JSON.parse(JSON.stringify(this.elementStack))});
}
private markElement(data: {parentIndex: number, enable: boolean}) {
if (data.enable === false) {
this.markedElement.remove();
return;
}
if (this.markedElement) {
this.markedElement.remove();
}
const elementBB = this.elementStack[data.parentIndex].element.getBoundingClientRect();;
// console.log('element bounding box:', elementBB);
const div = document.createElement('div');
div.style.position = 'fixed';
div.style.top = `${elementBB.top}px`;
div.style.left = `${elementBB.left}px`;
div.style.width = `${elementBB.width}px`;
div.style.height = `${elementBB.height}px`;
div.style.zIndex = '100';
div.style.border = '5px dashed #fa6';
div.style.pointerEvents = 'none';
div.style.boxSizing = 'border-box';
div.style.backgroundColor = 'rgba(255, 128, 64, 0.25)';
document.body.insertBefore(div, document.body.firstChild);
this.markedElement = div;
// this.elementStack[data.parentIndex].element.style.outline = data.enable ? '5px dashed #fa6' : null;
// this.elementStack[data.parentIndex].element.style.filter = data.enable ? 'sepia(1) brightness(2) contrast(0.5)' : null;
}
forceRefreshPlayerElement() {
// this.updatePlayer();
this._requestTick(true);
}
}
if (process.env.CHANNEL !== 'stable'){
console.info("PlayerData loaded");
}
export default PlayerData;