mirror of
https://github.com/the-djmaze/snappymail.git
synced 2024-11-13 11:13:07 +08:00
69 lines
1.6 KiB
JavaScript
69 lines
1.6 KiB
JavaScript
import ko from 'ko';
|
|
|
|
import { StorageResultType, Notification } from 'Common/Enums';
|
|
import { i18n } from 'Common/Translator';
|
|
|
|
import DomainStore from 'Stores/Admin/Domain';
|
|
|
|
import Remote from 'Remote/Admin/Fetch';
|
|
|
|
import { command } from 'Knoin/Knoin';
|
|
import { AbstractViewPopup } from 'Knoin/AbstractViews';
|
|
|
|
class DomainAliasPopupView extends AbstractViewPopup {
|
|
constructor() {
|
|
super('DomainAlias');
|
|
|
|
this.addObservables({
|
|
saving: false,
|
|
savingError: '',
|
|
|
|
name: '',
|
|
|
|
alias: ''
|
|
});
|
|
|
|
this.domains = DomainStore.domainsWithoutAliases;
|
|
|
|
this.domainsOptions = ko.computed(() => this.domains().map(item => ({ optValue: item.name, optText: item.name })));
|
|
|
|
this.canBeSaved = ko.computed(() => !this.saving() && this.name() && this.alias());
|
|
|
|
this.onDomainAliasCreateOrSaveResponse = this.onDomainAliasCreateOrSaveResponse.bind(this);
|
|
}
|
|
|
|
@command((self) => self.canBeSaved())
|
|
createCommand() {
|
|
this.saving(true);
|
|
Remote.createDomainAlias(this.onDomainAliasCreateOrSaveResponse, this.name(), this.alias());
|
|
}
|
|
|
|
onDomainAliasCreateOrSaveResponse(result, data) {
|
|
this.saving(false);
|
|
if (StorageResultType.Success === result && data) {
|
|
if (data.Result) {
|
|
rl.app.reloadDomainList();
|
|
this.closeCommand();
|
|
} else if (Notification.DomainAlreadyExists === data.ErrorCode) {
|
|
this.savingError(i18n('ERRORS/DOMAIN_ALREADY_EXISTS'));
|
|
}
|
|
} else {
|
|
this.savingError(i18n('ERRORS/UNKNOWN_ERROR'));
|
|
}
|
|
}
|
|
|
|
onShow() {
|
|
this.clearForm();
|
|
}
|
|
|
|
clearForm() {
|
|
this.saving(false);
|
|
this.savingError('');
|
|
|
|
this.name('');
|
|
|
|
this.alias('');
|
|
}
|
|
}
|
|
|
|
export { DomainAliasPopupView, DomainAliasPopupView as default };
|