UNPKG

media-chrome

Version:

Custom elements (web components) for making audio and video player controls that look great in your website or app.

60 lines (51 loc) 1.79 kB
import { MediaChromeMenuButton } from './media-chrome-menu-button.js'; import { globalThis } from '../utils/server-safe-globals.js'; import { getMediaController } from '../utils/element-utils.js'; import { t } from '../utils/i18n.js'; function getSlotTemplateHTML() { return /*html*/ ` <style> :host([aria-expanded="true"]) slot[name=tooltip] { display: none; } </style> <slot name="icon"> <svg aria-hidden="true" viewBox="0 0 24 24"> <path d="M4.5 14.5a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5Zm7.5 0a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5Zm7.5 0a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5Z"/> </svg> </slot> `; } function getTooltipContentHTML() { return t('Settings'); } /** * @attr {string} target - CSS id selector for the element to be targeted by the button. */ class MediaSettingsMenuButton extends MediaChromeMenuButton { static getSlotTemplateHTML = getSlotTemplateHTML; static getTooltipContentHTML = getTooltipContentHTML; static get observedAttributes(): string[] { return [...super.observedAttributes, 'target']; } connectedCallback(): void { super.connectedCallback(); this.setAttribute('aria-label', t('settings')); } /** * Returns the element with the id specified by the `invoketarget` attribute. * @return {HTMLElement | null} */ get invokeTargetElement(): HTMLElement | null { if (this.invokeTarget != undefined) return super.invokeTargetElement; return getMediaController(this).querySelector('media-settings-menu'); } } if (!globalThis.customElements.get('media-settings-menu-button')) { globalThis.customElements.define( 'media-settings-menu-button', MediaSettingsMenuButton ); } export { MediaSettingsMenuButton }; export default MediaSettingsMenuButton;