mirror of
https://github.com/the-djmaze/snappymail.git
synced 2024-11-10 17:13:38 +08:00
0bbb2f14a4
--- Fixes: New login form style display problem since version 1.10.4 (#1196) Collapse the TO: field in message view (#1199) Paste with HTML tags fails (#1193)
420 lines
9.3 KiB
JavaScript
420 lines
9.3 KiB
JavaScript
|
|
import window from 'window';
|
|
import $ from '$';
|
|
import _ from '_';
|
|
import ko from 'ko';
|
|
import key from 'key';
|
|
import ssm from 'ssm';
|
|
|
|
import {
|
|
$win, $html, $doc,
|
|
startMicrotime, leftPanelDisabled, leftPanelType,
|
|
sUserAgent, bMobileDevice, bAnimationSupported
|
|
} from 'Common/Globals';
|
|
|
|
import {
|
|
noop, isNormal, pString, inArray, microtime, timestamp,
|
|
detectDropdownVisibility, windowResizeCallback
|
|
} from 'Common/Utils';
|
|
|
|
import {KeyState, Magics} from 'Common/Enums';
|
|
import {root, rootAdmin, rootUser, populateAuthSuffix} from 'Common/Links';
|
|
import {initOnStartOrLangChange, initNotificationLanguage} from 'Common/Translator';
|
|
import {toggle as toggleCmd} from 'Common/Cmd';
|
|
import * as Events from 'Common/Events';
|
|
import * as Settings from 'Storage/Settings';
|
|
|
|
import LanguageStore from 'Stores/Language';
|
|
import ThemeStore from 'Stores/Theme';
|
|
import SocialStore from 'Stores/Social';
|
|
|
|
import {routeOff, setHash} from 'Knoin/Knoin';
|
|
import {AbstractBoot} from 'Knoin/AbstractBoot';
|
|
|
|
class AbstractApp extends AbstractBoot
|
|
{
|
|
/**
|
|
* @param {RemoteStorage|AdminRemoteStorage} Remote
|
|
*/
|
|
constructor(Remote)
|
|
{
|
|
super();
|
|
|
|
this.googlePreviewSupportedCache = null;
|
|
this.isLocalAutocomplete = true;
|
|
this.iframe = null;
|
|
this.lastErrorTime = 0;
|
|
|
|
this.iframe = $('<iframe class="internal-hiddden" />').appendTo('body');
|
|
|
|
$win.on('error', (event) => {
|
|
if (event && event.originalEvent && event.originalEvent.message &&
|
|
-1 === inArray(event.originalEvent.message, [
|
|
'Script error.', 'Uncaught Error: Error calling method on NPObject.'
|
|
]))
|
|
{
|
|
const time = timestamp();
|
|
if (this.lastErrorTime >= time)
|
|
{
|
|
return;
|
|
}
|
|
|
|
this.lastErrorTime = time;
|
|
|
|
Remote.jsError(
|
|
noop,
|
|
event.originalEvent.message,
|
|
event.originalEvent.filename,
|
|
event.originalEvent.lineno,
|
|
window.location && window.location.toString ? window.location.toString() : '',
|
|
$html.attr('class'),
|
|
microtime() - startMicrotime
|
|
);
|
|
}
|
|
});
|
|
|
|
$win.on('resize', () => {
|
|
Events.pub('window.resize');
|
|
});
|
|
|
|
Events.sub('window.resize', _.throttle(() => {
|
|
const
|
|
iH = $win.height(),
|
|
iW = $win.height();
|
|
|
|
if ($win.__sizes[0] !== iH || $win.__sizes[1] !== iW)
|
|
{
|
|
$win.__sizes[0] = iH;
|
|
$win.__sizes[1] = iW;
|
|
|
|
Events.pub('window.resize.real');
|
|
}
|
|
}, Magics.Time50ms));
|
|
|
|
// DEBUG
|
|
// Events.sub({
|
|
// 'window.resize': function() {
|
|
// window.console.log('window.resize');
|
|
// },
|
|
// 'window.resize.real': function() {
|
|
// window.console.log('window.resize.real');
|
|
// }
|
|
// });
|
|
|
|
$doc.on('keydown', (event) => {
|
|
if (event && event.ctrlKey)
|
|
{
|
|
$html.addClass('rl-ctrl-key-pressed');
|
|
}
|
|
}).on('keyup', (event) => {
|
|
if (event && !event.ctrlKey)
|
|
{
|
|
$html.removeClass('rl-ctrl-key-pressed');
|
|
}
|
|
});
|
|
|
|
$doc.on('mousemove keypress click', _.debounce(() => {
|
|
Events.pub('rl.auto-logout-refresh');
|
|
}, Magics.Time5s));
|
|
|
|
key('esc, enter', KeyState.All, () => {
|
|
detectDropdownVisibility();
|
|
});
|
|
|
|
if (Settings.appSettingsGet('allowCmdInterface'))
|
|
{
|
|
key('ctrl+shift+`', KeyState.All, () => {
|
|
toggleCmd();
|
|
});
|
|
}
|
|
}
|
|
|
|
remote() {
|
|
return null;
|
|
}
|
|
|
|
data() {
|
|
return null;
|
|
}
|
|
|
|
getApplicationConfiguration(name, default_) {
|
|
return this.applicationConfiguration[name] || default_;
|
|
}
|
|
|
|
/**
|
|
* @param {string} link
|
|
* @returns {boolean}
|
|
*/
|
|
download(link) {
|
|
|
|
if (sUserAgent && (-1 < sUserAgent.indexOf('chrome') || -1 < sUserAgent.indexOf('chrome')))
|
|
{
|
|
const oLink = window.document.createElement('a');
|
|
oLink.href = link;
|
|
|
|
if (window.document && window.document.createEvent)
|
|
{
|
|
const oE = window.document.createEvent.MouseEvents;
|
|
if (oE && oE.initEvent && oLink.dispatchEvent)
|
|
{
|
|
oE.initEvent('click', true, true);
|
|
oLink.dispatchEvent(oE);
|
|
return true;
|
|
}
|
|
}
|
|
}
|
|
|
|
if (bMobileDevice)
|
|
{
|
|
window.open(link, '_self');
|
|
window.focus();
|
|
}
|
|
else
|
|
{
|
|
this.iframe.attr('src', link);
|
|
// window.document.location.href = link;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* @returns {boolean}
|
|
*/
|
|
googlePreviewSupported() {
|
|
if (null === this.googlePreviewSupportedCache)
|
|
{
|
|
this.googlePreviewSupportedCache = !!Settings.settingsGet('AllowGoogleSocial') &&
|
|
!!Settings.settingsGet('AllowGoogleSocialPreview');
|
|
}
|
|
|
|
return this.googlePreviewSupportedCache;
|
|
}
|
|
|
|
/**
|
|
* @param {string} title
|
|
*/
|
|
setWindowTitle(title) {
|
|
title = ((isNormal(title) && 0 < title.length) ? '' + title : '');
|
|
if (Settings.settingsGet('Title'))
|
|
{
|
|
title += (title ? ' - ' : '') + Settings.settingsGet('Title');
|
|
}
|
|
|
|
window.document.title = title + ' ...';
|
|
window.document.title = title;
|
|
}
|
|
|
|
redirectToAdminPanel() {
|
|
_.delay(() => {
|
|
window.location.href = rootAdmin();
|
|
}, Magics.Time100ms);
|
|
}
|
|
|
|
clearClientSideToken() {
|
|
if (window.__rlah_clear)
|
|
{
|
|
window.__rlah_clear();
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @param {string} token
|
|
*/
|
|
setClientSideToken(token) {
|
|
if (window.__rlah_set)
|
|
{
|
|
window.__rlah_set(token);
|
|
|
|
Settings.settingsSet('AuthAccountHash', token);
|
|
populateAuthSuffix();
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @param {boolean=} admin = false
|
|
* @param {boolean=} logout = false
|
|
* @param {boolean=} close = false
|
|
*/
|
|
loginAndLogoutReload(admin = false, logout = false, close = false) {
|
|
|
|
const inIframe = !!Settings.appSettingsGet('inIframe');
|
|
let customLogoutLink = pString(Settings.appSettingsGet('customLogoutLink'));
|
|
|
|
if (logout)
|
|
{
|
|
this.clearClientSideToken();
|
|
}
|
|
|
|
if (logout && close && window.close)
|
|
{
|
|
window.close();
|
|
}
|
|
|
|
customLogoutLink = customLogoutLink || (admin ? rootAdmin() : rootUser());
|
|
|
|
if (logout && window.location.href !== customLogoutLink)
|
|
{
|
|
_.delay(() => {
|
|
|
|
if (inIframe && window.parent)
|
|
{
|
|
window.parent.location.href = customLogoutLink;
|
|
}
|
|
else
|
|
{
|
|
window.location.href = customLogoutLink;
|
|
}
|
|
|
|
$win.trigger('rl.tooltips.diactivate');
|
|
|
|
}, Magics.Time100ms);
|
|
}
|
|
else
|
|
{
|
|
routeOff();
|
|
setHash(root(), true);
|
|
routeOff();
|
|
|
|
_.delay(() => {
|
|
|
|
if (inIframe && window.parent)
|
|
{
|
|
window.parent.location.reload();
|
|
}
|
|
else
|
|
{
|
|
window.location.reload();
|
|
}
|
|
|
|
$win.trigger('rl.tooltips.diactivate');
|
|
|
|
}, Magics.Time100ms);
|
|
}
|
|
}
|
|
|
|
historyBack() {
|
|
window.history.back();
|
|
}
|
|
|
|
bootstart() {
|
|
|
|
// log('Ps' + 'ss, hac' + 'kers! The' + 're\'s not' + 'hing inte' + 'resting :' + ')');
|
|
|
|
Events.pub('rl.bootstart');
|
|
|
|
const mobile = Settings.appSettingsGet('mobile');
|
|
|
|
ko.components.register('SaveTrigger', require('Component/SaveTrigger'));
|
|
ko.components.register('Input', require('Component/Input'));
|
|
ko.components.register('Select', require('Component/Select'));
|
|
ko.components.register('Radio', require('Component/Radio'));
|
|
ko.components.register('TextArea', require('Component/TextArea'));
|
|
ko.components.register('Date', require('Component/Date'));
|
|
|
|
ko.components.register('x-script', require('Component/Script'));
|
|
// ko.components.register('svg-icon', require('Component/SvgIcon'));
|
|
|
|
if (Settings.appSettingsGet('materialDesign') && bAnimationSupported)
|
|
{
|
|
ko.components.register('Checkbox', require('Component/MaterialDesign/Checkbox'));
|
|
ko.components.register('CheckboxSimple', require('Component/Checkbox'));
|
|
}
|
|
else
|
|
{
|
|
// ko.components.register('Checkbox', require('Component/Classic/Checkbox'));
|
|
// ko.components.register('CheckboxSimple', require('Component/Classic/Checkbox'));
|
|
ko.components.register('Checkbox', require('Component/Checkbox'));
|
|
ko.components.register('CheckboxSimple', require('Component/Checkbox'));
|
|
}
|
|
|
|
initOnStartOrLangChange(initNotificationLanguage);
|
|
|
|
_.delay(windowResizeCallback, Magics.Time1s);
|
|
|
|
Events.sub('ssm.mobile-enter', () => {
|
|
leftPanelDisabled(true);
|
|
});
|
|
|
|
Events.sub('ssm.mobile-leave', () => {
|
|
leftPanelDisabled(false);
|
|
});
|
|
|
|
if (Settings.appSettingsGet('loginGlassStyle'))
|
|
{
|
|
$html.addClass('glass');
|
|
}
|
|
|
|
if (!mobile)
|
|
{
|
|
ssm.addState({
|
|
id: 'mobile',
|
|
query: '(max-width: 767px)',
|
|
onEnter: () => {
|
|
$html.addClass('ssm-state-mobile');
|
|
Events.pub('ssm.mobile-enter');
|
|
},
|
|
onLeave: () => {
|
|
$html.removeClass('ssm-state-mobile');
|
|
Events.pub('ssm.mobile-leave');
|
|
}
|
|
});
|
|
|
|
ssm.addState({
|
|
id: 'tablet',
|
|
query: '(min-width: 768px) and (max-width: 999px)',
|
|
onEnter: () => {
|
|
$html.addClass('ssm-state-tablet');
|
|
},
|
|
onLeave: () => {
|
|
$html.removeClass('ssm-state-tablet');
|
|
}
|
|
});
|
|
|
|
ssm.addState({
|
|
id: 'desktop',
|
|
query: '(min-width: 1000px) and (max-width: 1400px)',
|
|
onEnter: () => {
|
|
$html.addClass('ssm-state-desktop');
|
|
},
|
|
onLeave: () => {
|
|
$html.removeClass('ssm-state-desktop');
|
|
}
|
|
});
|
|
|
|
ssm.addState({
|
|
id: 'desktop-large',
|
|
query: '(min-width: 1401px)',
|
|
onEnter: () => {
|
|
$html.addClass('ssm-state-desktop-large');
|
|
},
|
|
onLeave: () => {
|
|
$html.removeClass('ssm-state-desktop-large');
|
|
}
|
|
});
|
|
}
|
|
else
|
|
{
|
|
$html.addClass('ssm-state-mobile').addClass('rl-mobile');
|
|
Events.pub('ssm.mobile-enter');
|
|
}
|
|
|
|
leftPanelDisabled.subscribe((bValue) => {
|
|
$html.toggleClass('rl-left-panel-disabled', bValue);
|
|
$html.toggleClass('rl-left-panel-enabled', !bValue);
|
|
});
|
|
|
|
leftPanelType.subscribe((sValue) => {
|
|
$html.toggleClass('rl-left-panel-none', 'none' === sValue);
|
|
$html.toggleClass('rl-left-panel-short', 'short' === sValue);
|
|
});
|
|
|
|
leftPanelDisabled.valueHasMutated();
|
|
|
|
LanguageStore.populate();
|
|
ThemeStore.populate();
|
|
SocialStore.populate();
|
|
}
|
|
}
|
|
|
|
export {AbstractApp, AbstractApp as default};
|