mirror of
https://github.com/the-djmaze/snappymail.git
synced 2024-11-15 12:15:20 +08:00
180 lines
4.4 KiB
JavaScript
180 lines
4.4 KiB
JavaScript
import ko from 'ko';
|
|
|
|
import {
|
|
$htmlCL,
|
|
leftPanelDisabled,
|
|
leftPanelType,
|
|
bMobileDevice
|
|
} from 'Common/Globals';
|
|
|
|
import { KeyState } from 'Common/Enums';
|
|
import { rootAdmin, rootUser } from 'Common/Links';
|
|
import { initOnStartOrLangChange, initNotificationLanguage } from 'Common/Translator';
|
|
|
|
import LanguageStore from 'Stores/Language';
|
|
import ThemeStore from 'Stores/Theme';
|
|
|
|
const Settings = rl.settings;
|
|
|
|
class AbstractApp {
|
|
/**
|
|
* @param {RemoteStorage|AdminRemoteStorage} Remote
|
|
*/
|
|
constructor() {
|
|
this.isLocalAutocomplete = true;
|
|
this.lastErrorTime = 0;
|
|
|
|
const $doc = document;
|
|
$doc.addEventListener('keydown', (event) => {
|
|
if (event && event.ctrlKey) {
|
|
$htmlCL.add('rl-ctrl-key-pressed');
|
|
}
|
|
});
|
|
$doc.addEventListener('keyup', (event) => {
|
|
if (event && !event.ctrlKey) {
|
|
$htmlCL.remove('rl-ctrl-key-pressed');
|
|
}
|
|
});
|
|
|
|
const fn = (()=>dispatchEvent(new CustomEvent('rl.auto-logout-refresh'))).debounce(5000);
|
|
|
|
$doc.addEventListener('mousemove', fn);
|
|
$doc.addEventListener('keypress', fn);
|
|
$doc.addEventListener('click', fn);
|
|
|
|
key('esc, enter', KeyState.All, () => rl.Dropdowns.detectVisibility());
|
|
}
|
|
|
|
remote() {
|
|
return null;
|
|
}
|
|
|
|
data() {
|
|
return null;
|
|
}
|
|
|
|
/**
|
|
* @param {string} link
|
|
* @returns {boolean}
|
|
*/
|
|
download(link) {
|
|
if (bMobileDevice) {
|
|
open(link, '_self');
|
|
focus();
|
|
} else {
|
|
const oLink = document.createElement('a');
|
|
oLink.href = link;
|
|
document.body.appendChild(oLink).click();
|
|
oLink.remove();
|
|
}
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* @param {string} token
|
|
*/
|
|
setClientSideToken(token) {
|
|
rl.hash.set();
|
|
Settings.set('AuthAccountHash', token);
|
|
}
|
|
|
|
logoutReload(close = false) {
|
|
const logoutLink = rl.adminArea() ? rootAdmin() : rootUser();
|
|
|
|
rl.hash.clear();
|
|
close && window.close && window.close();
|
|
|
|
if (location.href !== logoutLink) {
|
|
setTimeout(() => (Settings.app('inIframe') ? parent : window).location.href = logoutLink, 100);
|
|
} else {
|
|
rl.route.reload();
|
|
}
|
|
}
|
|
|
|
bootstart() {
|
|
const mobile = Settings.app('mobile');
|
|
|
|
ko.components.register('SaveTrigger', require('Component/SaveTrigger').default);
|
|
ko.components.register('Input', require('Component/Input').default);
|
|
ko.components.register('Select', require('Component/Select').default);
|
|
ko.components.register('TextArea', require('Component/TextArea').default);
|
|
|
|
if (Settings.app('materialDesign') && !bMobileDevice) {
|
|
ko.components.register('Checkbox', require('Component/MaterialDesign/Checkbox').default);
|
|
ko.components.register('CheckboxSimple', require('Component/Checkbox').default);
|
|
} else {
|
|
ko.components.register('Checkbox', require('Component/Checkbox').default);
|
|
ko.components.register('CheckboxSimple', require('Component/Checkbox').default);
|
|
}
|
|
|
|
initOnStartOrLangChange(initNotificationLanguage);
|
|
|
|
if (!mobile) {
|
|
$htmlCL.add('rl-desktop');
|
|
|
|
ssm.addState({
|
|
id: 'mobile',
|
|
query: '(max-width: 767px)',
|
|
onEnter: () => {
|
|
$htmlCL.add('ssm-state-mobile');
|
|
leftPanelDisabled(true);
|
|
},
|
|
onLeave: () => {
|
|
$htmlCL.remove('ssm-state-mobile');
|
|
leftPanelDisabled(false);
|
|
}
|
|
});
|
|
|
|
ssm.addState({
|
|
id: 'tablet',
|
|
query: '(min-width: 768px) and (max-width: 999px)',
|
|
onEnter: () => $htmlCL.add('ssm-state-tablet'),
|
|
onLeave: () => $htmlCL.remove('ssm-state-tablet')
|
|
});
|
|
|
|
ssm.addState({
|
|
id: 'desktop',
|
|
query: '(min-width: 1000px) and (max-width: 1400px)',
|
|
onEnter: () => $htmlCL.add('ssm-state-desktop'),
|
|
onLeave: () => $htmlCL.remove('ssm-state-desktop')
|
|
});
|
|
|
|
ssm.addState({
|
|
id: 'desktop-large',
|
|
query: '(min-width: 1401px)',
|
|
onEnter: () => $htmlCL.add('ssm-state-desktop-large'),
|
|
onLeave: () => $htmlCL.remove('ssm-state-desktop-large')
|
|
});
|
|
} else {
|
|
$htmlCL.add('ssm-state-mobile', 'rl-mobile');
|
|
leftPanelDisabled(true);
|
|
}
|
|
|
|
leftPanelDisabled.subscribe((bValue) => {
|
|
$htmlCL.toggle('rl-left-panel-disabled', bValue);
|
|
$htmlCL.toggle('rl-left-panel-enabled', !bValue);
|
|
});
|
|
|
|
leftPanelType.subscribe((sValue) => {
|
|
$htmlCL.toggle('rl-left-panel-none', 'none' === sValue);
|
|
$htmlCL.toggle('rl-left-panel-short', 'short' === sValue);
|
|
});
|
|
|
|
leftPanelDisabled.valueHasMutated();
|
|
|
|
LanguageStore.populate();
|
|
ThemeStore.populate();
|
|
}
|
|
|
|
/**
|
|
* @returns {void}
|
|
*/
|
|
hideLoading() {
|
|
const id = id => document.getElementById(id);
|
|
id('rl-content').hidden = false;
|
|
id('rl-loading').remove();
|
|
}
|
|
|
|
}
|
|
|
|
export { AbstractApp, AbstractApp as default };
|