snappymail/dev/View/User/AbstractSystemDropDown.js

118 lines
2.8 KiB
JavaScript
Raw Normal View History

import _ from '_';
import ko from 'ko';
import key from 'key';
import AppStore from 'Stores/User/App';
import AccountStore from 'Stores/User/Account';
import MessageStore from 'Stores/User/Message';
2014-08-21 23:08:34 +08:00
import {Capa, Magics, KeyState} from 'Common/Enums';
import {trim, isUnd} from 'Common/Utils';
import {settings} from 'Common/Links';
2014-08-25 15:10:51 +08:00
import * as Events from 'Common/Events';
import * as Settings from 'Storage/Settings';
2014-08-21 23:08:34 +08:00
import {getApp} from 'Helper/Apps/User';
2015-01-28 06:16:00 +08:00
import {showScreenPopup, setHash} from 'Knoin/Knoin';
import {AbstractViewNext} from 'Knoin/AbstractViewNext';
class AbstractSystemDropDownUserView extends AbstractViewNext
{
constructor() {
super();
2015-04-10 16:17:49 +08:00
this.logoImg = trim(Settings.settingsGet('UserLogo'));
this.logoTitle = trim(Settings.settingsGet('UserLogoTitle'));
this.mobile = !!Settings.appSettingsGet('mobile');
this.mobileDevice = !!Settings.appSettingsGet('mobileDevice');
this.allowSettings = !!Settings.capa(Capa.Settings);
this.allowHelp = !!Settings.capa(Capa.Help);
this.currentAudio = AppStore.currentAudio;
2015-04-10 16:17:49 +08:00
this.accountEmail = AccountStore.email;
2015-04-10 16:17:49 +08:00
this.accounts = AccountStore.accounts;
this.accountsUnreadCount = AccountStore.accountsUnreadCount;
2015-04-10 16:17:49 +08:00
this.accountMenuDropdownTrigger = ko.observable(false);
this.capaAdditionalAccounts = ko.observable(Settings.capa(Capa.AdditionalAccounts));
this.addAccountClick = _.bind(this.addAccountClick, this);
Events.sub('audio.stop', () => AppStore.currentAudio(''));
Events.sub('audio.start', (sName) => AppStore.currentAudio(sName));
2016-06-30 08:02:45 +08:00
}
stopPlay() {
Events.pub('audio.api.stop');
}
accountClick(oAccount, oEvent) {
if (oAccount && oEvent && !isUnd(oEvent.which) && 1 === oEvent.which)
{
AccountStore.accounts.loading(true);
_.delay(() => AccountStore.accounts.loading(false), Magics.Time1s);
}
return true;
2016-06-30 08:02:45 +08:00
}
emailTitle() {
return AccountStore.email();
2016-06-30 08:02:45 +08:00
}
2014-04-29 23:31:49 +08:00
settingsClick() {
if (Settings.capa(Capa.Settings))
{
setHash(settings());
}
2016-06-30 08:02:45 +08:00
}
settingsHelp()
{
if (Settings.capa(Capa.Help))
{
showScreenPopup(require('View/Popup/KeyboardShortcutsHelp'));
}
}
addAccountClick() {
if (this.capaAdditionalAccounts())
{
showScreenPopup(require('View/Popup/Account'));
}
}
logoutClick() {
getApp().logout();
}
onBuild() {
key('`', [KeyState.MessageList, KeyState.MessageView, KeyState.Settings], () => {
if (this.viewModelVisibility())
{
MessageStore.messageFullScreenMode(false);
this.accountMenuDropdownTrigger(true);
}
});
// shortcuts help
key('shift+/', [KeyState.MessageList, KeyState.MessageView, KeyState.Settings], () => {
if (this.viewModelVisibility())
{
showScreenPopup(require('View/Popup/KeyboardShortcutsHelp'));
return false;
}
return true;
});
}
}
2014-04-29 23:31:49 +08:00
export {AbstractSystemDropDownUserView, AbstractSystemDropDownUserView as default};