2016-08-17 06:01:20 +08:00
|
|
|
import ko from 'ko';
|
2014-09-02 08:15:31 +08:00
|
|
|
|
2016-08-17 06:01:20 +08:00
|
|
|
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
|
|
|
|
2020-08-14 04:58:41 +08:00
|
|
|
import { Capa, KeyState } from 'Common/Enums';
|
2019-07-05 03:19:24 +08:00
|
|
|
import { settings } from 'Common/Links';
|
2014-08-25 15:10:51 +08:00
|
|
|
|
2016-08-17 06:01:20 +08:00
|
|
|
import * as Settings from 'Storage/Settings';
|
2014-08-21 23:08:34 +08:00
|
|
|
|
2019-07-05 03:19:24 +08:00
|
|
|
import { getApp } from 'Helper/Apps/User';
|
2015-01-28 06:16:00 +08:00
|
|
|
|
2019-07-05 03:19:24 +08:00
|
|
|
import { showScreenPopup, setHash } from 'Knoin/Knoin';
|
|
|
|
import { AbstractViewNext } from 'Knoin/AbstractViewNext';
|
2015-05-20 06:05:54 +08:00
|
|
|
|
2019-07-05 03:19:24 +08:00
|
|
|
class AbstractSystemDropDownUserView extends AbstractViewNext {
|
2016-08-17 06:01:20 +08:00
|
|
|
constructor() {
|
|
|
|
super();
|
2015-04-10 16:17:49 +08:00
|
|
|
|
2020-08-07 00:24:46 +08:00
|
|
|
this.logoImg = (Settings.settingsGet('UserLogo')||'').trim();
|
|
|
|
this.logoTitle = (Settings.settingsGet('UserLogoTitle')||'').trim();
|
2014-04-12 09:05:57 +08:00
|
|
|
|
2016-08-17 06:01:20 +08:00
|
|
|
this.mobile = !!Settings.appSettingsGet('mobile');
|
|
|
|
this.mobileDevice = !!Settings.appSettingsGet('mobileDevice');
|
2014-04-12 09:05:57 +08:00
|
|
|
|
2016-08-17 06:01:20 +08:00
|
|
|
this.allowSettings = !!Settings.capa(Capa.Settings);
|
|
|
|
this.allowHelp = !!Settings.capa(Capa.Help);
|
2013-11-16 06:21:12 +08:00
|
|
|
|
2016-08-17 06:01:20 +08:00
|
|
|
this.currentAudio = AppStore.currentAudio;
|
2015-04-10 16:17:49 +08:00
|
|
|
|
2016-08-17 06:01:20 +08:00
|
|
|
this.accountEmail = AccountStore.email;
|
2015-04-10 16:17:49 +08:00
|
|
|
|
2016-08-17 06:01:20 +08:00
|
|
|
this.accounts = AccountStore.accounts;
|
|
|
|
this.accountsUnreadCount = AccountStore.accountsUnreadCount;
|
2015-04-10 16:17:49 +08:00
|
|
|
|
2016-08-17 06:01:20 +08:00
|
|
|
this.accountMenuDropdownTrigger = ko.observable(false);
|
|
|
|
this.capaAdditionalAccounts = ko.observable(Settings.capa(Capa.AdditionalAccounts));
|
2013-11-16 06:21:12 +08:00
|
|
|
|
2020-07-20 21:47:33 +08:00
|
|
|
this.addAccountClick = this.addAccountClick.bind(this);
|
2013-11-16 06:21:12 +08:00
|
|
|
|
2020-08-15 02:35:39 +08:00
|
|
|
addEventListener('audio.stop', () => AppStore.currentAudio(''));
|
|
|
|
addEventListener('audio.start', e => AppStore.currentAudio(e.detail));
|
2016-06-30 08:02:45 +08:00
|
|
|
}
|
2015-02-02 04:46:23 +08:00
|
|
|
|
2016-08-17 06:01:20 +08:00
|
|
|
stopPlay() {
|
2020-08-15 02:35:39 +08:00
|
|
|
dispatchEvent(new CustomEvent('audio.api.stop'));
|
2016-08-17 06:01:20 +08:00
|
|
|
}
|
2013-11-16 06:21:12 +08:00
|
|
|
|
2016-09-03 07:19:37 +08:00
|
|
|
accountClick(account, event) {
|
2020-07-30 03:49:41 +08:00
|
|
|
if (account && event && undefined !== event.which && 1 === event.which) {
|
2016-08-17 06:01:20 +08:00
|
|
|
AccountStore.accounts.loading(true);
|
2020-08-14 04:58:41 +08:00
|
|
|
setTimeout(() => AccountStore.accounts.loading(false), 1000);
|
2016-08-17 06:01:20 +08:00
|
|
|
}
|
2013-11-16 06:21:12 +08:00
|
|
|
|
2016-08-17 06:01:20 +08:00
|
|
|
return true;
|
2016-06-30 08:02:45 +08:00
|
|
|
}
|
2013-11-16 06:21:12 +08:00
|
|
|
|
2016-08-17 06:01:20 +08:00
|
|
|
emailTitle() {
|
|
|
|
return AccountStore.email();
|
2016-06-30 08:02:45 +08:00
|
|
|
}
|
2014-04-29 23:31:49 +08:00
|
|
|
|
2016-08-17 06:01:20 +08:00
|
|
|
settingsClick() {
|
2019-07-05 03:19:24 +08:00
|
|
|
if (Settings.capa(Capa.Settings)) {
|
2016-08-17 06:01:20 +08:00
|
|
|
setHash(settings());
|
|
|
|
}
|
2016-06-30 08:02:45 +08:00
|
|
|
}
|
|
|
|
|
2019-07-05 03:19:24 +08:00
|
|
|
settingsHelp() {
|
|
|
|
if (Settings.capa(Capa.Help)) {
|
2016-08-17 06:01:20 +08:00
|
|
|
showScreenPopup(require('View/Popup/KeyboardShortcutsHelp'));
|
2015-05-20 06:05:54 +08:00
|
|
|
}
|
2016-08-17 06:01:20 +08:00
|
|
|
}
|
2013-11-16 06:21:12 +08:00
|
|
|
|
2016-08-17 06:01:20 +08:00
|
|
|
addAccountClick() {
|
2019-07-05 03:19:24 +08:00
|
|
|
if (this.capaAdditionalAccounts()) {
|
2016-08-17 06:01:20 +08:00
|
|
|
showScreenPopup(require('View/Popup/Account'));
|
2013-11-16 06:21:12 +08:00
|
|
|
}
|
2016-08-17 06:01:20 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
logoutClick() {
|
|
|
|
getApp().logout();
|
|
|
|
}
|
|
|
|
|
|
|
|
onBuild() {
|
|
|
|
key('`', [KeyState.MessageList, KeyState.MessageView, KeyState.Settings], () => {
|
2019-07-05 03:19:24 +08:00
|
|
|
if (this.viewModelVisibility()) {
|
2016-08-17 06:01:20 +08:00
|
|
|
MessageStore.messageFullScreenMode(false);
|
|
|
|
this.accountMenuDropdownTrigger(true);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
// shortcuts help
|
|
|
|
key('shift+/', [KeyState.MessageList, KeyState.MessageView, KeyState.Settings], () => {
|
2019-07-05 03:19:24 +08:00
|
|
|
if (this.viewModelVisibility()) {
|
2016-08-17 06:01:20 +08:00
|
|
|
showScreenPopup(require('View/Popup/KeyboardShortcutsHelp'));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
2014-04-29 23:31:49 +08:00
|
|
|
|
2019-07-05 03:19:24 +08:00
|
|
|
export { AbstractSystemDropDownUserView, AbstractSystemDropDownUserView as default };
|