2021-03-11 05:41:35 +08:00
|
|
|
import { AppUserStore } from 'Stores/User/App';
|
|
|
|
import { AccountUserStore } from 'Stores/User/Account';
|
|
|
|
import { MessageUserStore } from 'Stores/User/Message';
|
2014-08-21 23:08:34 +08:00
|
|
|
|
2021-03-16 23:06:16 +08:00
|
|
|
import { Capa, Scope } from 'Common/Enums';
|
2019-07-05 03:19:24 +08:00
|
|
|
import { settings } from 'Common/Links';
|
2014-08-25 15:10:51 +08:00
|
|
|
|
2020-09-17 02:35:29 +08:00
|
|
|
import { showScreenPopup } from 'Knoin/Knoin';
|
2021-01-24 17:25:23 +08:00
|
|
|
import { AbstractViewRight } from 'Knoin/AbstractViews';
|
2015-05-20 06:05:54 +08:00
|
|
|
|
2021-01-26 05:00:13 +08:00
|
|
|
import { KeyboardShortcutsHelpPopupView } from 'View/Popup/KeyboardShortcutsHelp';
|
|
|
|
import { AccountPopupView } from 'View/Popup/Account';
|
2021-02-09 04:19:58 +08:00
|
|
|
import { ContactsPopupView } from 'View/Popup/Contacts';
|
2021-01-26 05:00:13 +08:00
|
|
|
|
2021-02-17 03:12:23 +08:00
|
|
|
import { doc, Settings, leftPanelDisabled } from 'Common/Globals';
|
|
|
|
|
|
|
|
import { ThemeStore } from 'Stores/Theme';
|
2020-09-04 18:05:17 +08:00
|
|
|
|
2021-09-23 16:40:10 +08:00
|
|
|
export class SystemDropDownUserView extends AbstractViewRight {
|
2021-09-23 15:41:02 +08:00
|
|
|
constructor() {
|
|
|
|
super('SystemDropDown');
|
2015-04-10 16:17:49 +08:00
|
|
|
|
2021-03-23 21:48:34 +08:00
|
|
|
this.allowAccounts = Settings.capa(Capa.AdditionalAccounts);
|
2021-03-10 18:44:48 +08:00
|
|
|
this.allowSettings = Settings.capa(Capa.Settings);
|
2013-11-16 06:21:12 +08:00
|
|
|
|
2021-03-11 05:41:35 +08:00
|
|
|
this.accountEmail = AccountUserStore.email;
|
2015-04-10 16:17:49 +08:00
|
|
|
|
2021-03-11 05:41:35 +08:00
|
|
|
this.accounts = AccountUserStore.accounts;
|
|
|
|
this.accountsLoading = AccountUserStore.loading;
|
|
|
|
this.accountsUnreadCount = AccountUserStore.accountsUnreadCount;
|
2015-04-10 16:17:49 +08:00
|
|
|
|
2020-10-27 18:09:24 +08:00
|
|
|
this.addObservables({
|
2021-03-17 17:09:10 +08:00
|
|
|
currentAudio: '',
|
2021-03-23 21:48:34 +08:00
|
|
|
accountMenuDropdownTrigger: false
|
2020-10-27 18:09:24 +08:00
|
|
|
});
|
2013-11-16 06:21:12 +08:00
|
|
|
|
2021-03-17 17:05:22 +08:00
|
|
|
this.allowContacts = AppUserStore.allowContacts();
|
2021-02-09 04:19:58 +08:00
|
|
|
|
2021-03-17 17:09:10 +08:00
|
|
|
addEventListener('audio.stop', () => this.currentAudio(''));
|
|
|
|
addEventListener('audio.start', e => this.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) {
|
2021-03-10 16:43:31 +08:00
|
|
|
if (account && 0 === event.button) {
|
2021-03-11 05:41:35 +08:00
|
|
|
AccountUserStore.loading(true);
|
|
|
|
setTimeout(() => AccountUserStore.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() {
|
2021-03-11 05:41:35 +08:00
|
|
|
return AccountUserStore.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() {
|
2021-03-23 21:48:34 +08:00
|
|
|
this.allowSettings && rl.route.setHash(settings());
|
2016-06-30 08:02:45 +08:00
|
|
|
}
|
|
|
|
|
2019-07-05 03:19:24 +08:00
|
|
|
settingsHelp() {
|
2021-09-17 20:37:18 +08:00
|
|
|
showScreenPopup(KeyboardShortcutsHelpPopupView);
|
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() {
|
2021-03-23 21:48:34 +08:00
|
|
|
this.allowAccounts && showScreenPopup(AccountPopupView);
|
2016-08-17 06:01:20 +08:00
|
|
|
}
|
|
|
|
|
2021-02-09 04:19:58 +08:00
|
|
|
contactsClick() {
|
2021-03-23 21:48:34 +08:00
|
|
|
this.allowContacts && showScreenPopup(ContactsPopupView);
|
2021-02-09 04:19:58 +08:00
|
|
|
}
|
|
|
|
|
2021-09-14 16:06:38 +08:00
|
|
|
toggleLayout()
|
2021-02-17 03:12:23 +08:00
|
|
|
{
|
2021-09-14 16:06:38 +08:00
|
|
|
const mobile = !ThemeStore.isMobile();
|
|
|
|
doc.cookie = 'rllayout=' + (mobile ? 'mobile' : 'desktop');
|
|
|
|
ThemeStore.isMobile(mobile);
|
|
|
|
leftPanelDisabled(mobile);
|
2021-02-17 03:12:23 +08:00
|
|
|
// location.reload();
|
|
|
|
}
|
|
|
|
|
2016-08-17 06:01:20 +08:00
|
|
|
logoutClick() {
|
2020-09-15 15:29:25 +08:00
|
|
|
rl.app.logout();
|
2016-08-17 06:01:20 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
onBuild() {
|
2021-03-16 23:06:16 +08:00
|
|
|
shortcuts.add('m,contextmenu', '', [Scope.MessageList, Scope.MessageView, Scope.Settings], () => {
|
2021-09-23 02:17:44 +08:00
|
|
|
if (!this.viewModelDom.hidden) {
|
2021-03-11 05:41:35 +08:00
|
|
|
MessageUserStore.messageFullScreenMode(false);
|
2016-08-17 06:01:20 +08:00
|
|
|
this.accountMenuDropdownTrigger(true);
|
2020-10-09 21:00:26 +08:00
|
|
|
return false;
|
2016-08-17 06:01:20 +08:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
// shortcuts help
|
2021-03-16 23:06:16 +08:00
|
|
|
shortcuts.add('?,f1,help', '', [Scope.MessageList, Scope.MessageView, Scope.Settings], () => {
|
2021-09-23 02:17:44 +08:00
|
|
|
if (!this.viewModelDom.hidden) {
|
2021-01-26 05:00:13 +08:00
|
|
|
showScreenPopup(KeyboardShortcutsHelpPopupView);
|
2016-08-17 06:01:20 +08:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|