Files
cinny/src/client/state/settings.js
T

205 lines
7.1 KiB
JavaScript
Raw Normal View History

2023-06-12 21:15:23 +10:00
import { lightTheme } from 'folds';
2021-08-08 21:56:34 +05:30
import EventEmitter from 'events';
import appDispatcher from '../dispatcher';
import cons from './cons';
2023-06-12 21:15:23 +10:00
import { darkTheme, butterTheme, silverTheme } from '../../colors.css';
2021-08-08 21:56:34 +05:30
function getSettings() {
const settings = localStorage.getItem('settings');
if (settings === null) return null;
return JSON.parse(settings);
}
function setSettings(key, value) {
let settings = getSettings();
if (settings === null) settings = {};
settings[key] = value;
localStorage.setItem('settings', JSON.stringify(settings));
}
class Settings extends EventEmitter {
2021-07-28 18:45:52 +05:30
constructor() {
2021-08-08 21:56:34 +05:30
super();
2023-06-12 21:15:23 +10:00
this.themeClasses = [lightTheme, silverTheme, darkTheme, butterTheme];
2021-07-28 18:45:52 +05:30
this.themes = ['', 'silver-theme', 'dark-theme', 'butter-theme'];
this.themeIndex = this.getThemeIndex();
2021-08-08 21:56:34 +05:30
this.useSystemTheme = this.getUseSystemTheme();
2021-08-08 21:56:34 +05:30
this.isMarkdown = this.getIsMarkdown();
this.isPeopleDrawer = this.getIsPeopleDrawer();
this.hideMembershipEvents = this.getHideMembershipEvents();
this.hideNickAvatarEvents = this.getHideNickAvatarEvents();
2022-01-29 15:20:51 +01:00
this._showNotifications = this.getShowNotifications();
2022-03-18 04:37:11 +01:00
this.isNotificationSounds = this.getIsNotificationSounds();
2023-06-12 21:15:23 +10:00
this.darkModeQueryList = window.matchMedia('(prefers-color-scheme: dark)');
this.darkModeQueryList.addEventListener('change', () => this.applyTheme())
this.isTouchScreenDevice = ('ontouchstart' in window) || (navigator.maxTouchPoints > 0) || (navigator.msMaxTouchPoints > 0);
2021-07-28 18:45:52 +05:30
}
getThemeIndex() {
if (typeof this.themeIndex === 'number') return this.themeIndex;
2021-08-08 21:56:34 +05:30
const settings = getSettings();
2021-07-28 18:45:52 +05:30
if (settings === null) return 0;
if (typeof settings.themeIndex === 'undefined') return 0;
// eslint-disable-next-line radix
return parseInt(settings.themeIndex);
}
getThemeName() {
return this.themes[this.themeIndex];
}
2022-07-09 18:08:35 +05:30
_clearTheme() {
2023-06-12 21:15:23 +10:00
this.themes.forEach((themeName, index) => {
if (themeName !== '') document.body.classList.remove(themeName);
document.body.classList.remove(this.themeClasses[index]);
2021-07-28 18:45:52 +05:30
});
2022-07-09 18:08:35 +05:30
}
applyTheme() {
this._clearTheme();
2023-06-12 21:15:23 +10:00
const autoThemeIndex = this.darkModeQueryList.matches ? 2 : 0;
const themeIndex = this.useSystemTheme ? autoThemeIndex : this.themeIndex;
if (this.themes[themeIndex] === undefined) return
if (this.themes[themeIndex]) document.body.classList.add(this.themes[themeIndex]);
document.body.classList.add(this.themeClasses[themeIndex]);
2022-07-09 18:08:35 +05:30
}
setTheme(themeIndex) {
2021-07-28 18:45:52 +05:30
this.themeIndex = themeIndex;
2022-07-09 18:08:35 +05:30
setSettings('themeIndex', this.themeIndex);
this.applyTheme();
}
toggleUseSystemTheme() {
this.useSystemTheme = !this.useSystemTheme;
setSettings('useSystemTheme', this.useSystemTheme);
this.applyTheme();
this.emit(cons.events.settings.SYSTEM_THEME_TOGGLED, this.useSystemTheme);
2021-07-28 18:45:52 +05:30
}
2021-08-08 21:56:34 +05:30
getUseSystemTheme() {
if (typeof this.useSystemTheme === 'boolean') return this.useSystemTheme;
const settings = getSettings();
2022-07-09 18:08:35 +05:30
if (settings === null) return true;
if (typeof settings.useSystemTheme === 'undefined') return true;
return settings.useSystemTheme;
}
2021-08-08 21:56:34 +05:30
getIsMarkdown() {
if (typeof this.isMarkdown === 'boolean') return this.isMarkdown;
const settings = getSettings();
2022-01-29 19:54:39 +05:30
if (settings === null) return true;
if (typeof settings.isMarkdown === 'undefined') return true;
2021-08-08 21:56:34 +05:30
return settings.isMarkdown;
}
getHideMembershipEvents() {
if (typeof this.hideMembershipEvents === 'boolean') return this.hideMembershipEvents;
const settings = getSettings();
if (settings === null) return false;
if (typeof settings.hideMembershipEvents === 'undefined') return false;
return settings.hideMembershipEvents;
}
getHideNickAvatarEvents() {
if (typeof this.hideNickAvatarEvents === 'boolean') return this.hideNickAvatarEvents;
const settings = getSettings();
2022-03-14 17:48:27 +05:30
if (settings === null) return true;
if (typeof settings.hideNickAvatarEvents === 'undefined') return true;
return settings.hideNickAvatarEvents;
}
getIsPeopleDrawer() {
if (typeof this.isPeopleDrawer === 'boolean') return this.isPeopleDrawer;
const settings = getSettings();
if (settings === null) return true;
if (typeof settings.isPeopleDrawer === 'undefined') return true;
return settings.isPeopleDrawer;
}
2022-01-29 15:20:51 +01:00
get showNotifications() {
if (window.Notification?.permission !== 'granted') return false;
return this._showNotifications;
}
getShowNotifications() {
if (typeof this._showNotifications === 'boolean') return this._showNotifications;
const settings = getSettings();
if (settings === null) return true;
if (typeof settings.showNotifications === 'undefined') return true;
return settings.showNotifications;
}
2022-03-18 04:37:11 +01:00
getIsNotificationSounds() {
if (typeof this.isNotificationSounds === 'boolean') return this.isNotificationSounds;
const settings = getSettings();
if (settings === null) return true;
if (typeof settings.isNotificationSounds === 'undefined') return true;
return settings.isNotificationSounds;
}
2021-08-08 21:56:34 +05:30
setter(action) {
const actions = {
[cons.actions.settings.TOGGLE_SYSTEM_THEME]: () => {
2022-07-09 18:08:35 +05:30
this.toggleUseSystemTheme();
},
2021-08-08 21:56:34 +05:30
[cons.actions.settings.TOGGLE_MARKDOWN]: () => {
this.isMarkdown = !this.isMarkdown;
setSettings('isMarkdown', this.isMarkdown);
this.emit(cons.events.settings.MARKDOWN_TOGGLED, this.isMarkdown);
},
[cons.actions.settings.TOGGLE_PEOPLE_DRAWER]: () => {
this.isPeopleDrawer = !this.isPeopleDrawer;
setSettings('isPeopleDrawer', this.isPeopleDrawer);
this.emit(cons.events.settings.PEOPLE_DRAWER_TOGGLED, this.isPeopleDrawer);
},
[cons.actions.settings.TOGGLE_MEMBERSHIP_EVENT]: () => {
this.hideMembershipEvents = !this.hideMembershipEvents;
setSettings('hideMembershipEvents', this.hideMembershipEvents);
this.emit(cons.events.settings.MEMBERSHIP_EVENTS_TOGGLED, this.hideMembershipEvents);
},
[cons.actions.settings.TOGGLE_NICKAVATAR_EVENT]: () => {
this.hideNickAvatarEvents = !this.hideNickAvatarEvents;
setSettings('hideNickAvatarEvents', this.hideNickAvatarEvents);
this.emit(cons.events.settings.NICKAVATAR_EVENTS_TOGGLED, this.hideNickAvatarEvents);
},
2022-01-29 15:20:51 +01:00
[cons.actions.settings.TOGGLE_NOTIFICATIONS]: async () => {
if (window.Notification?.permission !== 'granted') {
this._showNotifications = false;
} else {
this._showNotifications = !this._showNotifications;
}
setSettings('showNotifications', this._showNotifications);
this.emit(cons.events.settings.NOTIFICATIONS_TOGGLED, this._showNotifications);
},
2022-03-18 04:37:11 +01:00
[cons.actions.settings.TOGGLE_NOTIFICATION_SOUNDS]: () => {
this.isNotificationSounds = !this.isNotificationSounds;
setSettings('isNotificationSounds', this.isNotificationSounds);
this.emit(cons.events.settings.NOTIFICATION_SOUNDS_TOGGLED, this.isNotificationSounds);
},
2021-08-08 21:56:34 +05:30
};
actions[action.type]?.();
}
2021-07-28 18:45:52 +05:30
}
const settings = new Settings();
2021-08-08 21:56:34 +05:30
appDispatcher.register(settings.setter.bind(settings));
2021-07-28 18:45:52 +05:30
export default settings;