mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
340 lines
9.6 KiB
JavaScript
340 lines
9.6 KiB
JavaScript
import 'webcomponents.js/webcomponents-lite';
|
|
import dom from '../../scripts/dom';
|
|
import scroller from '../../libraries/scroller';
|
|
import browser from '../../scripts/browser';
|
|
import focusManager from '../../components/focusManager';
|
|
import layoutManager from '../../components/layoutManager';
|
|
import './emby-tabs.scss';
|
|
import '../../styles/scrollstyles.scss';
|
|
|
|
/* eslint-disable indent */
|
|
const EmbyTabs = Object.create(HTMLDivElement.prototype);
|
|
const buttonClass = 'emby-tab-button';
|
|
const activeButtonClass = buttonClass + '-active';
|
|
|
|
function setActiveTabButton(newButton) {
|
|
newButton.classList.add(activeButtonClass);
|
|
}
|
|
|
|
function getTabPanel() {
|
|
return null;
|
|
}
|
|
|
|
function removeActivePanelClass() {
|
|
const tabPanel = getTabPanel();
|
|
if (tabPanel) {
|
|
tabPanel.classList.remove('is-active');
|
|
}
|
|
}
|
|
|
|
function fadeInRight(elem) {
|
|
const pct = browser.mobile ? '4%' : '0.5%';
|
|
|
|
const keyframes = [
|
|
{ opacity: '0', transform: 'translate3d(' + pct + ', 0, 0)', offset: 0 },
|
|
{ opacity: '1', transform: 'none', offset: 1 }];
|
|
|
|
elem.animate(keyframes, {
|
|
duration: 160,
|
|
iterations: 1,
|
|
easing: 'ease-out'
|
|
});
|
|
}
|
|
|
|
function triggerBeforeTabChange(tabs, index, previousIndex) {
|
|
tabs.dispatchEvent(new CustomEvent('beforetabchange', {
|
|
detail: {
|
|
selectedTabIndex: index,
|
|
previousIndex: previousIndex
|
|
}
|
|
}));
|
|
if (previousIndex != null && previousIndex !== index) {
|
|
removeActivePanelClass();
|
|
}
|
|
|
|
const newPanel = getTabPanel();
|
|
|
|
if (newPanel) {
|
|
// animate new panel ?
|
|
if (newPanel.animate) {
|
|
fadeInRight(newPanel);
|
|
}
|
|
|
|
newPanel.classList.add('is-active');
|
|
}
|
|
}
|
|
|
|
function onClick(e) {
|
|
const tabs = this;
|
|
|
|
const current = tabs.querySelector('.' + activeButtonClass);
|
|
const tabButton = dom.parentWithClass(e.target, buttonClass);
|
|
|
|
if (tabButton && tabButton !== current) {
|
|
if (current) {
|
|
current.classList.remove(activeButtonClass);
|
|
}
|
|
|
|
const previousIndex = current ? parseInt(current.getAttribute('data-index')) : null;
|
|
|
|
setActiveTabButton(tabButton);
|
|
|
|
const index = parseInt(tabButton.getAttribute('data-index'));
|
|
|
|
triggerBeforeTabChange(tabs, index, previousIndex);
|
|
|
|
// If toCenter is called syncronously within the click event, it sometimes ends up canceling it
|
|
setTimeout(function () {
|
|
tabs.selectedTabIndex = index;
|
|
|
|
tabs.dispatchEvent(new CustomEvent('tabchange', {
|
|
detail: {
|
|
selectedTabIndex: index,
|
|
previousIndex: previousIndex
|
|
}
|
|
}));
|
|
}, 120);
|
|
|
|
if (tabs.scroller) {
|
|
tabs.scroller.toCenter(tabButton, false);
|
|
}
|
|
}
|
|
}
|
|
|
|
function onFocusIn(e) {
|
|
const tabs = this;
|
|
const tabButton = dom.parentWithClass(e.target, buttonClass);
|
|
if (tabButton && tabs.scroller) {
|
|
tabs.scroller.toCenter(tabButton, false);
|
|
}
|
|
}
|
|
|
|
function onFocusOut(e) {
|
|
const parentContainer = e.target.parentNode;
|
|
const previousFocus = parentContainer.querySelector('.lastFocused');
|
|
if (previousFocus) {
|
|
previousFocus.classList.remove('lastFocused');
|
|
}
|
|
e.target.classList.add('lastFocused');
|
|
}
|
|
|
|
function initScroller(tabs) {
|
|
if (tabs.scroller) {
|
|
return;
|
|
}
|
|
|
|
const contentScrollSlider = tabs.querySelector('.emby-tabs-slider');
|
|
if (contentScrollSlider) {
|
|
tabs.scroller = new scroller(tabs, {
|
|
horizontal: 1,
|
|
itemNav: 0,
|
|
mouseDragging: 1,
|
|
touchDragging: 1,
|
|
slidee: contentScrollSlider,
|
|
smart: true,
|
|
releaseSwing: true,
|
|
scrollBy: 200,
|
|
speed: 120,
|
|
elasticBounds: 1,
|
|
dragHandle: 1,
|
|
dynamicHandle: 1,
|
|
clickBar: 1,
|
|
hiddenScroll: true,
|
|
|
|
// In safari the transform is causing the headers to occasionally disappear or flicker
|
|
requireAnimation: !browser.safari,
|
|
allowNativeSmoothScroll: true
|
|
});
|
|
tabs.scroller.init();
|
|
} else {
|
|
tabs.classList.add('scrollX');
|
|
tabs.classList.add('hiddenScrollX');
|
|
tabs.classList.add('smoothScrollX');
|
|
}
|
|
}
|
|
|
|
EmbyTabs.createdCallback = function () {
|
|
if (this.classList.contains('emby-tabs')) {
|
|
return;
|
|
}
|
|
this.classList.add('emby-tabs');
|
|
this.classList.add('focusable');
|
|
|
|
dom.addEventListener(this, 'click', onClick, {
|
|
passive: true
|
|
});
|
|
|
|
if (layoutManager.tv) {
|
|
dom.addEventListener(this, 'focusin', onFocusIn, { passive: true });
|
|
}
|
|
|
|
dom.addEventListener(this, 'focusout', onFocusOut);
|
|
};
|
|
|
|
EmbyTabs.focus = function () {
|
|
const selectedTab = this.querySelector('.' + activeButtonClass);
|
|
const lastFocused = this.querySelector('.lastFocused');
|
|
|
|
if (lastFocused) {
|
|
focusManager.focus(lastFocused);
|
|
} else if (selectedTab) {
|
|
focusManager.focus(selectedTab);
|
|
} else {
|
|
focusManager.autoFocus(this);
|
|
}
|
|
};
|
|
|
|
EmbyTabs.refresh = function () {
|
|
if (this.scroller) {
|
|
this.scroller.reload();
|
|
}
|
|
};
|
|
|
|
EmbyTabs.attachedCallback = function () {
|
|
initScroller(this);
|
|
|
|
const current = this.querySelector('.' + activeButtonClass);
|
|
const currentIndex = current ? parseInt(current.getAttribute('data-index')) : parseInt(this.getAttribute('data-index') || '0');
|
|
|
|
if (currentIndex !== -1) {
|
|
this.selectedTabIndex = currentIndex;
|
|
|
|
const tabButtons = this.querySelectorAll('.' + buttonClass);
|
|
|
|
const newTabButton = tabButtons[currentIndex];
|
|
|
|
if (newTabButton) {
|
|
setActiveTabButton(newTabButton);
|
|
}
|
|
}
|
|
|
|
if (!this.readyFired) {
|
|
this.readyFired = true;
|
|
this.dispatchEvent(new CustomEvent('ready', {}));
|
|
}
|
|
};
|
|
|
|
EmbyTabs.detachedCallback = function () {
|
|
if (this.scroller) {
|
|
this.scroller.destroy();
|
|
this.scroller = null;
|
|
}
|
|
|
|
dom.removeEventListener(this, 'click', onClick, {
|
|
passive: true
|
|
});
|
|
|
|
if (layoutManager.tv) {
|
|
dom.removeEventListener(this, 'focusin', onFocusIn, { passive: true });
|
|
}
|
|
};
|
|
|
|
function getSelectedTabButton(elem) {
|
|
return elem.querySelector('.' + activeButtonClass);
|
|
}
|
|
|
|
EmbyTabs.selectedIndex = function (selected, triggerEvent) {
|
|
const tabs = this;
|
|
|
|
if (selected == null) {
|
|
return tabs.selectedTabIndex || 0;
|
|
}
|
|
|
|
const current = tabs.selectedIndex();
|
|
|
|
tabs.selectedTabIndex = selected;
|
|
|
|
const tabButtons = tabs.querySelectorAll('.' + buttonClass);
|
|
|
|
if (current === selected || triggerEvent === false) {
|
|
triggerBeforeTabChange(tabs, selected, current);
|
|
|
|
tabs.dispatchEvent(new CustomEvent('tabchange', {
|
|
detail: {
|
|
selectedTabIndex: selected
|
|
}
|
|
}));
|
|
|
|
const currentTabButton = tabButtons[current];
|
|
setActiveTabButton(tabButtons[selected]);
|
|
|
|
if (current !== selected && currentTabButton) {
|
|
currentTabButton.classList.remove(activeButtonClass);
|
|
}
|
|
} else {
|
|
onClick.call(tabs, {
|
|
target: tabButtons[selected]
|
|
});
|
|
}
|
|
};
|
|
|
|
function getSibling(elem, method) {
|
|
let sibling = elem[method];
|
|
|
|
while (sibling) {
|
|
if (sibling.classList.contains(buttonClass) && !sibling.classList.contains('hide')) {
|
|
return sibling;
|
|
}
|
|
|
|
sibling = sibling[method];
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
EmbyTabs.selectNext = function () {
|
|
const current = getSelectedTabButton(this);
|
|
|
|
const sibling = getSibling(current, 'nextSibling');
|
|
|
|
if (sibling) {
|
|
onClick.call(this, {
|
|
target: sibling
|
|
});
|
|
}
|
|
};
|
|
|
|
EmbyTabs.selectPrevious = function () {
|
|
const current = getSelectedTabButton(this);
|
|
|
|
const sibling = getSibling(current, 'previousSibling');
|
|
|
|
if (sibling) {
|
|
onClick.call(this, {
|
|
target: sibling
|
|
});
|
|
}
|
|
};
|
|
|
|
EmbyTabs.triggerBeforeTabChange = function () {
|
|
const tabs = this;
|
|
|
|
triggerBeforeTabChange(tabs, tabs.selectedIndex());
|
|
};
|
|
|
|
EmbyTabs.triggerTabChange = function () {
|
|
const tabs = this;
|
|
|
|
tabs.dispatchEvent(new CustomEvent('tabchange', {
|
|
detail: {
|
|
selectedTabIndex: tabs.selectedIndex()
|
|
}
|
|
}));
|
|
};
|
|
|
|
EmbyTabs.setTabEnabled = function (index, enabled) {
|
|
const btn = this.querySelector('.emby-tab-button[data-index="' + index + '"]');
|
|
|
|
if (enabled) {
|
|
btn.classList.remove('hide');
|
|
} else {
|
|
btn.classList.remove('add');
|
|
}
|
|
};
|
|
|
|
document.registerElement('emby-tabs', {
|
|
prototype: EmbyTabs,
|
|
extends: 'div'
|
|
});
|
|
|
|
/* eslint-enable indent */
|