1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-03 08:35:29 +02:00
joplin/ReactNativeClient/src/models/setting.js

129 lines
3.0 KiB
JavaScript
Raw Normal View History

2017-05-12 22:17:23 +02:00
import { BaseModel } from 'src/base-model.js';
import { Log } from 'src/log.js';
import { Database } from 'src/database.js';
class Setting extends BaseModel {
2017-05-16 23:46:21 +02:00
static defaults_ = {
'clientId': { value: '', type: 'string' },
'sessionId': { value: '', type: 'string' },
'user.email': { value: '', type: 'string' },
'user.session': { value: '', type: 'string' },
2017-05-18 21:58:01 +02:00
'sync.lastRevId': { value: 0, type: 'int' },
2017-05-16 23:46:21 +02:00
};
2017-05-12 22:17:23 +02:00
static tableName() {
return 'settings';
}
static defaultSetting(key) {
if (!(key in this.defaults_)) throw new Error('Unknown key: ' + key);
let output = Object.assign({}, this.defaults_[key]);
output.key = key;
return output;
}
2017-05-16 23:46:21 +02:00
static keys() {
if (this.keys_) return this.keys_;
this.keys_ = [];
for (let n in this.defaults_) {
if (!this.defaults_.hasOwnProperty(n)) continue;
this.keys_.push(n);
}
return this.keys_;
}
2017-05-12 22:17:23 +02:00
static load() {
this.cache_ = [];
return this.db().selectAll('SELECT * FROM settings').then((r) => {
for (let i = 0; i < r.rows.length; i++) {
this.cache_.push(r.rows.item(i));
}
});
}
static setValue(key, value) {
2017-05-16 23:46:21 +02:00
// if (value !== null && typeof value === 'object') {
// return this.setObject(key, value);
// }
2017-05-12 22:17:23 +02:00
this.scheduleUpdate();
2017-05-16 23:46:21 +02:00
2017-05-12 22:17:23 +02:00
for (let i = 0; i < this.cache_.length; i++) {
if (this.cache_[i].key == key) {
this.cache_[i].value = value;
return;
}
}
let s = this.defaultSetting(key);
s.value = value;
this.cache_.push(s);
}
2017-05-16 23:46:21 +02:00
// static del(key) {
// this.scheduleUpdate();
// for (let i = 0; i < this.cache_.length; i++) {
// if (this.cache_[i].key == key) {
// this.cache_[i].value = value;
// return;
// }
// }
// }
2017-05-12 22:17:23 +02:00
static value(key) {
for (let i = 0; i < this.cache_.length; i++) {
if (this.cache_[i].key == key) {
return this.cache_[i].value;
}
}
let s = this.defaultSetting(key);
return s.value;
}
2017-05-16 23:46:21 +02:00
// Currently only supports objects with properties one level deep
static object(key) {
let output = {};
let keys = this.keys();
for (let i = 0; i < keys.length; i++) {
let k = keys[i].split('.');
if (k[0] == key) {
output[k[1]] = this.value(keys[i]);
}
}
return output;
}
// Currently only supports objects with properties one level deep
static setObject(key, object) {
for (let n in object) {
if (!object.hasOwnProperty(n)) continue;
this.setValue(key + '.' + n, object[n]);
}
}
2017-05-12 22:17:23 +02:00
static scheduleUpdate() {
if (this.updateTimeoutId) clearTimeout(this.updateTimeoutId);
this.updateTimeoutId = setTimeout(() => {
Log.info('Saving settings...');
this.updateTimeoutId = null;
BaseModel.db().transaction((tx) => {
tx.executeSql('DELETE FROM settings');
for (let i = 0; i < this.cache_.length; i++) {
let q = Database.insertQuery(this.tableName(), this.cache_[i]);
tx.executeSql(q.sql, q.params);
}
}).then(() => {
2017-05-12 22:17:23 +02:00
Log.info('Settings have been saved.');
}).catch((error) => {
Log.warn('Could not update settings:', error);
2017-05-12 22:17:23 +02:00
});
}, 500);
}
}
export { Setting };