mirror of
https://github.com/FrankerFaceZ/FrankerFaceZ.git
synced 2025-06-28 05:15:54 +00:00
214 lines
5.5 KiB
JavaScript
214 lines
5.5 KiB
JavaScript
|
'use strict';
|
||
|
|
||
|
// ============================================================================
|
||
|
// CSS Tweaks for Twitch Twilight
|
||
|
// ============================================================================
|
||
|
|
||
|
import Module from 'utilities/module';
|
||
|
import {ManagedStyle} from 'utilities/dom';
|
||
|
import {has} from 'utilities/object';
|
||
|
|
||
|
|
||
|
const CLASSES = {
|
||
|
'side-nav': '.side-nav',
|
||
|
'side-rec-channels': '.side-nav .recommended-channels',
|
||
|
'side-rec-friends': '.side-nav .recommended-friends',
|
||
|
'side-friends': '.side-nav .online-friends',
|
||
|
'side-closed-friends': '.side-nav--collapsed .online-friends',
|
||
|
'side-closed-rec-channels': '.side-nav--collapsed .recommended-channels',
|
||
|
|
||
|
'pinned-cheer': '.pinned-cheer',
|
||
|
'whispers': '.whispers'
|
||
|
};
|
||
|
|
||
|
|
||
|
export default class CSSTweaks extends Module {
|
||
|
constructor(...args) {
|
||
|
super(...args);
|
||
|
|
||
|
this.should_enable = true;
|
||
|
|
||
|
this.inject('settings');
|
||
|
this.inject('site.chat');
|
||
|
this.inject('site.theme');
|
||
|
|
||
|
this.style = new ManagedStyle;
|
||
|
this.chunks = {};
|
||
|
this.chunks_loaded = false;
|
||
|
|
||
|
|
||
|
// Layout
|
||
|
|
||
|
this.settings.add('layout.side-nav.show', {
|
||
|
default: true,
|
||
|
ui: {
|
||
|
sort: -1,
|
||
|
path: 'Appearance > Layout >> Side Navigation',
|
||
|
title: 'Display Side Navigation',
|
||
|
|
||
|
component: 'setting-check-box'
|
||
|
},
|
||
|
changed: val => this.toggleHide('side-nav', !val)
|
||
|
});
|
||
|
|
||
|
this.settings.add('layout.side-nav.show-rec-channels', {
|
||
|
default: 1,
|
||
|
ui: {
|
||
|
path: 'Appearance > Layout >> Side Navigation',
|
||
|
title: 'Display Recommended Channels',
|
||
|
component: 'setting-select-box',
|
||
|
data: [
|
||
|
{value: 0, title: 'Never'},
|
||
|
{value: 1, title: 'Always'},
|
||
|
{value: 2, title: 'When Side Navigation is Open'}
|
||
|
]
|
||
|
},
|
||
|
changed: val => {
|
||
|
this.toggleHide('side-rec-channels', val === 0);
|
||
|
this.toggleHide('side-closed-rec-channels', val === 2);
|
||
|
}
|
||
|
});
|
||
|
|
||
|
this.settings.add('layout.side-nav.show-friends', {
|
||
|
default: 1,
|
||
|
ui: {
|
||
|
path: 'Appearance > Layout >> Side Navigation',
|
||
|
title: 'Display Online Friends',
|
||
|
component: 'setting-select-box',
|
||
|
data: [
|
||
|
{value: 0, title: 'Never'},
|
||
|
{value: 1, title: 'Always'},
|
||
|
{value: 2, title: 'When Side Navigation is Open'}
|
||
|
]
|
||
|
},
|
||
|
changed: val => {
|
||
|
this.toggleHide('side-friends', val === 0);
|
||
|
this.toggleHide('side-closed-friends', val === 2);
|
||
|
}
|
||
|
});
|
||
|
|
||
|
this.settings.add('layout.side-nav.show-rec-friends', {
|
||
|
default: true,
|
||
|
ui: {
|
||
|
path: 'Appearance > Layout >> Side Navigation',
|
||
|
title: 'Display Recommended Friends',
|
||
|
component: 'setting-check-box'
|
||
|
},
|
||
|
changed: val => this.toggleHide('side-rec-friends', !val)
|
||
|
});
|
||
|
|
||
|
this.settings.add('layout.swap-sidebars', {
|
||
|
default: false,
|
||
|
ui: {
|
||
|
path: 'Appearance > Layout >> General',
|
||
|
title: 'Swap Sidebars',
|
||
|
description: 'Swap navigation and chat to the opposite sides of the window.',
|
||
|
|
||
|
component: 'setting-check-box'
|
||
|
},
|
||
|
changed: val => this.toggle('swap-sidebars', val)
|
||
|
});
|
||
|
|
||
|
this.settings.add('layout.minimal-navigation', {
|
||
|
default: false,
|
||
|
ui: {
|
||
|
path: 'Appearance > Layout >> General',
|
||
|
title: 'Minimize Navigation',
|
||
|
description: "Slide the site navigation bar up out of view when it isn't in use.",
|
||
|
|
||
|
component: 'setting-check-box'
|
||
|
},
|
||
|
changed: val => this.toggle('minimal-navigation', val)
|
||
|
});
|
||
|
|
||
|
|
||
|
// Chat
|
||
|
|
||
|
this.settings.add('whispers.show', {
|
||
|
default: true,
|
||
|
ui: {
|
||
|
path: 'Chat > Whispers >> General',
|
||
|
title: 'Display Whispers',
|
||
|
component: 'setting-check-box'
|
||
|
},
|
||
|
changed: val => this.toggleHide('whispers', !val)
|
||
|
});
|
||
|
|
||
|
this.settings.add('chat.bits.show', {
|
||
|
default: true,
|
||
|
ui: {
|
||
|
order: -1,
|
||
|
path: 'Chat > Bits and Cheering >> Appearance',
|
||
|
title: 'Display Bits',
|
||
|
description: 'Display UI associated with bits. Note: This will not hide cheering in chat messages.',
|
||
|
component: 'setting-check-box'
|
||
|
},
|
||
|
changed: val => this.toggle('hide-bits', !val)
|
||
|
});
|
||
|
}
|
||
|
|
||
|
onEnable() {
|
||
|
this.toggle('swap-sidebars', this.settings.get('layout.swap-sidebars'));
|
||
|
this.toggle('minimal-navigation', this.settings.get('layout.minimal-navigation'));
|
||
|
|
||
|
this.toggleHide('side-nav', !this.settings.get('layout.side-nav.show'));
|
||
|
this.toggleHide('side-rec-friends', !this.settings.get('layout.side-nav.show-rec-friends'));
|
||
|
|
||
|
const recs = this.settings.get('layout.side-nav.show-rec-channels');
|
||
|
this.toggleHide('side-rec-channels', recs === 0);
|
||
|
this.toggleHide('side-closed-rec-channels', recs === 2);
|
||
|
|
||
|
const friends = this.settings.get('layout.side-nav.show-friends');
|
||
|
this.toggleHide('side-friends', friends === 0);
|
||
|
this.toggleHide('side-closed-friends', friends === 2);
|
||
|
|
||
|
this.toggleHide('whispers', !this.settings.get('whispers.show'));
|
||
|
}
|
||
|
|
||
|
|
||
|
toggleHide(key, val) {
|
||
|
const k = `hide--${key}`;
|
||
|
if ( ! val ) {
|
||
|
this.style.delete(k);
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
if ( ! has(CLASSES, key) )
|
||
|
throw new Error(`cannot find class for "${key}"`);
|
||
|
|
||
|
this.style.set(k, `${CLASSES[key]} { display: none !important }`);
|
||
|
}
|
||
|
|
||
|
|
||
|
async toggle(key, val) {
|
||
|
if ( ! val ) {
|
||
|
this.style.delete(key);
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
if ( ! this.chunks_loaded )
|
||
|
await this.populate();
|
||
|
|
||
|
if ( ! has(this.chunks, key) )
|
||
|
throw new Error(`cannot find chunk "${key}"`);
|
||
|
|
||
|
this.style.set(key, this.chunks[key]);
|
||
|
}
|
||
|
|
||
|
|
||
|
populate() {
|
||
|
if ( this.chunks_loaded )
|
||
|
return;
|
||
|
|
||
|
return new Promise(async r => {
|
||
|
const raw = (await import(/* webpackChunkName: "site-css-tweaks" */ './styles.js')).default;
|
||
|
for(const key of raw.keys()) {
|
||
|
const k = key.slice(2, key.length - (key.endsWith('.scss') ? 5 : 4));
|
||
|
this.chunks[k] = raw(key);
|
||
|
}
|
||
|
|
||
|
this.chunks_loaded = true;
|
||
|
r();
|
||
|
})
|
||
|
}
|
||
|
}
|