2021-08-08 16:26:34 +00:00
|
|
|
import EventEmitter from 'events';
|
|
|
|
import appDispatcher from '../dispatcher';
|
|
|
|
|
|
|
|
import cons from './cons';
|
|
|
|
|
|
|
|
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 13:15:52 +00:00
|
|
|
constructor() {
|
2021-08-08 16:26:34 +00:00
|
|
|
super();
|
|
|
|
|
2021-07-28 13:15:52 +00:00
|
|
|
this.themes = ['', 'silver-theme', 'dark-theme', 'butter-theme'];
|
|
|
|
this.themeIndex = this.getThemeIndex();
|
2021-08-08 16:26:34 +00:00
|
|
|
|
2022-01-03 13:16:43 +00:00
|
|
|
this.useSystemTheme = this.getUseSystemTheme();
|
2021-08-08 16:26:34 +00:00
|
|
|
this.isMarkdown = this.getIsMarkdown();
|
2021-11-15 03:53:59 +00:00
|
|
|
this.isPeopleDrawer = this.getIsPeopleDrawer();
|
2021-12-12 15:23:32 +00:00
|
|
|
this.hideMembershipEvents = this.getHideMembershipEvents();
|
|
|
|
this.hideNickAvatarEvents = this.getHideNickAvatarEvents();
|
2021-08-25 08:10:38 +00:00
|
|
|
|
|
|
|
this.isTouchScreenDevice = ('ontouchstart' in window) || (navigator.maxTouchPoints > 0) || (navigator.msMaxTouchPoints > 0);
|
2021-07-28 13:15:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
getThemeIndex() {
|
|
|
|
if (typeof this.themeIndex === 'number') return this.themeIndex;
|
|
|
|
|
2021-08-08 16:26:34 +00:00
|
|
|
const settings = getSettings();
|
2021-07-28 13:15:52 +00:00
|
|
|
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];
|
|
|
|
}
|
|
|
|
|
|
|
|
setTheme(themeIndex) {
|
|
|
|
const appBody = document.getElementById('appBody');
|
2022-01-07 04:51:35 +00:00
|
|
|
|
|
|
|
appBody.classList.remove('system-theme');
|
2021-07-28 13:15:52 +00:00
|
|
|
this.themes.forEach((themeName) => {
|
|
|
|
if (themeName === '') return;
|
|
|
|
appBody.classList.remove(themeName);
|
|
|
|
});
|
2022-01-07 04:51:35 +00:00
|
|
|
// If use system theme is enabled
|
|
|
|
// we will override current theme choice with system theme
|
|
|
|
if (this.useSystemTheme) {
|
|
|
|
appBody.classList.add('system-theme');
|
|
|
|
} else if (this.themes[themeIndex] !== '') {
|
|
|
|
appBody.classList.add(this.themes[themeIndex]);
|
|
|
|
}
|
2021-08-08 16:26:34 +00:00
|
|
|
setSettings('themeIndex', themeIndex);
|
2021-07-28 13:15:52 +00:00
|
|
|
this.themeIndex = themeIndex;
|
|
|
|
}
|
2021-08-08 16:26:34 +00:00
|
|
|
|
2022-01-03 13:16:43 +00:00
|
|
|
getUseSystemTheme() {
|
|
|
|
if (typeof this.useSystemTheme === 'boolean') return this.useSystemTheme;
|
|
|
|
|
|
|
|
const settings = getSettings();
|
|
|
|
if (settings === null) return false;
|
|
|
|
if (typeof settings.useSystemTheme === 'undefined') return false;
|
|
|
|
return settings.useSystemTheme;
|
|
|
|
}
|
|
|
|
|
2021-08-08 16:26:34 +00:00
|
|
|
getIsMarkdown() {
|
|
|
|
if (typeof this.isMarkdown === 'boolean') return this.isMarkdown;
|
|
|
|
|
|
|
|
const settings = getSettings();
|
|
|
|
if (settings === null) return false;
|
|
|
|
if (typeof settings.isMarkdown === 'undefined') return false;
|
|
|
|
return settings.isMarkdown;
|
|
|
|
}
|
|
|
|
|
2021-12-12 15:23:32 +00:00
|
|
|
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();
|
|
|
|
if (settings === null) return false;
|
|
|
|
if (typeof settings.hideNickAvatarEvents === 'undefined') return false;
|
|
|
|
return settings.hideNickAvatarEvents;
|
|
|
|
}
|
|
|
|
|
2021-11-15 03:53:59 +00:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2021-08-08 16:26:34 +00:00
|
|
|
setter(action) {
|
|
|
|
const actions = {
|
2022-01-03 13:16:43 +00:00
|
|
|
[cons.actions.settings.TOGGLE_SYSTEM_THEME]: () => {
|
|
|
|
this.useSystemTheme = !this.useSystemTheme;
|
2022-01-07 04:51:35 +00:00
|
|
|
|
2022-01-03 13:16:43 +00:00
|
|
|
setSettings('useSystemTheme', this.useSystemTheme);
|
2022-01-07 04:51:35 +00:00
|
|
|
this.setTheme(this.themeIndex);
|
2022-01-03 13:16:43 +00:00
|
|
|
|
|
|
|
this.emit(cons.events.settings.SYSTEM_THEME_TOGGLED, this.useSystemTheme);
|
|
|
|
},
|
2021-08-08 16:26:34 +00:00
|
|
|
[cons.actions.settings.TOGGLE_MARKDOWN]: () => {
|
|
|
|
this.isMarkdown = !this.isMarkdown;
|
|
|
|
setSettings('isMarkdown', this.isMarkdown);
|
|
|
|
this.emit(cons.events.settings.MARKDOWN_TOGGLED, this.isMarkdown);
|
|
|
|
},
|
2021-11-15 03:53:59 +00:00
|
|
|
[cons.actions.settings.TOGGLE_PEOPLE_DRAWER]: () => {
|
|
|
|
this.isPeopleDrawer = !this.isPeopleDrawer;
|
|
|
|
setSettings('isPeopleDrawer', this.isPeopleDrawer);
|
|
|
|
this.emit(cons.events.settings.PEOPLE_DRAWER_TOGGLED, this.isPeopleDrawer);
|
|
|
|
},
|
2021-12-12 15:23:32 +00:00
|
|
|
[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);
|
|
|
|
},
|
2021-08-08 16:26:34 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
actions[action.type]?.();
|
|
|
|
}
|
2021-07-28 13:15:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const settings = new Settings();
|
2021-08-08 16:26:34 +00:00
|
|
|
appDispatcher.register(settings.setter.bind(settings));
|
2021-07-28 13:15:52 +00:00
|
|
|
|
|
|
|
export default settings;
|