Piped/src/piped.js

43 lines
2.4 KiB
JavaScript
Raw Normal View History

import {$, $all, $$, $add, $event, $ready} from '../node_modules/efy/efy.js';
2022-11-08 16:38:20 +00:00
$ready('#efy_sidebar', ()=>{
$add('div', {id: 'piped_efy_module'}, [], $('#efy_sidebar'), 'afterbegin');
2022-11-08 16:38:20 +00:00
/*Custom Menu*/ $add('div', {id: 'custom_sidebar_menu'}, [], $('#efy_modules'));
for (let a = ['preferences', 'history', 'playlists', 'feed'],
b = ['Preferences', 'History', 'Playlists', 'Feed'],
c = $('#custom_sidebar_menu'), i = 0; i < a.length; i++){
$add('a', {href: `./${a[i]}`}, [b[i]], c)
}
2022-11-08 16:38:20 +00:00
/*Custom Settings*/ $add('details', {id: 'piped_style'}, [
['summary', {}, [['i', {efy_icon: 'dots'}], 'Piped Style']],
['div', {efy_tabs: 'piped_style'}, [['div', {class: 'efy_tabs'}]]]
], $('#efy_modules'));
$add('mark', {efy_lang: 'alpha'}, [], $('#piped_style > summary'), 'beforeend');
/*Tabs*/ for (let a = ['comments', 'captions'], b = ['Comments', 'Captions'],
c = $('[efy_tabs=piped_style]'), i = 0; i < a.length; i++) {
const active = (a[i] === 'comments') ? {efy_active: ''} : null;
$add('button', {efy_tab: a[i], ...active}, [b[i]], $$(c, '.efy_tabs'));
$add('div', {efy_content: a[i], efy_select: '', id: `efy_${a[i]}`, ...active}, [], c);
2022-11-08 16:38:20 +00:00
}
/*Comments*/ for (let a = 'comments_full comments_nobg'.split(' '), b = ['Full Width', 'No Background'],
c = $('[efy_tabs=piped_style] [efy_content="comments"]'), i = 0; i < a.length; i++) {
$add('input', {type: 'checkbox', name: 'piped_style_comments', id: `piped_style_${a[i]}`}, [], c);
$add('label', {for: `piped_style_${a[i]}`}, [b[i]], c);
}
/*Captions*/ for (let a = 'captions-trans captions-solid'.split(' '), b = ['No Background', 'Black Background'],
c = $('[efy_tabs=piped_style] [efy_content="captions"]'), i = 0; i < a.length; i++) {
$add('input', {type: 'checkbox', name: 'piped_style_captions', id: `piped_style_${a[i]}`}, [], c);
$add('label', {for: `piped_style_${a[i]}`}, [b[i]], c);
2022-11-08 16:38:20 +00:00
}
/*Comments & Captions*/ for (let a = ['comments_full', 'comments_nobg', 'captions-trans', 'captions-solid'],
b = ['.pp-comments', '.pp-comments', '.shaka-text-container', '.shaka-text-container'],
c = ['pp-full-width', 'pp-no-bg', 'pp-trans', 'pp-solid'], i = 0; i < a.length; i++) {
$event($(`#piped_style_${a[i]}`), 'click', ()=>{
2022-11-08 16:38:20 +00:00
$all(b[i]).forEach( (e)=>{ e.classList.toggle(c[i]) })
})
}
}, 1);