mirror of
https://github.com/the-djmaze/snappymail.git
synced 2024-11-14 19:54:43 +08:00
46 lines
1.1 KiB
JavaScript
46 lines
1.1 KiB
JavaScript
import ko from 'ko';
|
|
|
|
import AppStore from 'Stores/User/App';
|
|
import ContactStore from 'Stores/User/Contact';
|
|
import Remote from 'Remote/User/Fetch';
|
|
|
|
export class ContactsUserSettings {
|
|
constructor() {
|
|
this.contactsAutosave = AppStore.contactsAutosave;
|
|
|
|
this.allowContactsSync = ContactStore.allowContactsSync;
|
|
this.enableContactsSync = ContactStore.enableContactsSync;
|
|
this.contactsSyncUrl = ContactStore.contactsSyncUrl;
|
|
this.contactsSyncUser = ContactStore.contactsSyncUser;
|
|
this.contactsSyncPass = ContactStore.contactsSyncPass;
|
|
|
|
this.saveTrigger = ko
|
|
.computed(() =>
|
|
[
|
|
this.enableContactsSync() ? '1' : '0',
|
|
this.contactsSyncUrl(),
|
|
this.contactsSyncUser(),
|
|
this.contactsSyncPass()
|
|
].join('|')
|
|
)
|
|
.extend({ throttle: 500 });
|
|
}
|
|
|
|
onBuild() {
|
|
this.contactsAutosave.subscribe((value) => {
|
|
Remote.saveSettings(null, {
|
|
'ContactsAutosave': value ? '1' : '0'
|
|
});
|
|
});
|
|
|
|
this.saveTrigger.subscribe(() => {
|
|
Remote.saveContactsSyncData(
|
|
null,
|
|
this.enableContactsSync(),
|
|
this.contactsSyncUrl(),
|
|
this.contactsSyncUser(),
|
|
this.contactsSyncPass()
|
|
);
|
|
});
|
|
}
|
|
}
|