2015-02-22 06:00:51 +08:00
|
|
|
|
2016-06-30 08:02:45 +08:00
|
|
|
var
|
|
|
|
ko = require('ko'),
|
|
|
|
|
|
|
|
Settings = require('Storage/Settings');
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @constructor
|
|
|
|
*/
|
|
|
|
function ContactUserStore()
|
|
|
|
{
|
|
|
|
this.contacts = ko.observableArray([]);
|
|
|
|
this.contacts.loading = ko.observable(false).extend({'throttle': 200});
|
|
|
|
this.contacts.importing = ko.observable(false).extend({'throttle': 200});
|
|
|
|
this.contacts.syncing = ko.observable(false).extend({'throttle': 200});
|
|
|
|
this.contacts.exportingVcf = ko.observable(false).extend({'throttle': 200});
|
|
|
|
this.contacts.exportingCsv = ko.observable(false).extend({'throttle': 200});
|
|
|
|
|
|
|
|
this.allowContactsSync = ko.observable(false);
|
|
|
|
this.enableContactsSync = ko.observable(false);
|
|
|
|
this.contactsSyncUrl = ko.observable('');
|
|
|
|
this.contactsSyncUser = ko.observable('');
|
|
|
|
this.contactsSyncPass = ko.observable('');
|
|
|
|
}
|
|
|
|
|
|
|
|
ContactUserStore.prototype.populate = function()
|
|
|
|
{
|
|
|
|
this.allowContactsSync(!!Settings.settingsGet('ContactsSyncIsAllowed'));
|
|
|
|
this.enableContactsSync(!!Settings.settingsGet('EnableContactsSync'));
|
|
|
|
|
|
|
|
this.contactsSyncUrl(Settings.settingsGet('ContactsSyncUrl'));
|
|
|
|
this.contactsSyncUser(Settings.settingsGet('ContactsSyncUser'));
|
|
|
|
this.contactsSyncPass(Settings.settingsGet('ContactsSyncPassword'));
|
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = new ContactUserStore();
|