1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-15 09:04:04 +02:00
joplin/ReactNativeClient/lib/components/shared/config-shared.js

82 lines
2.5 KiB
JavaScript
Raw Normal View History

2018-03-09 19:49:35 +02:00
const Setting = require("lib/models/Setting.js");
const SyncTargetRegistry = require("lib/SyncTargetRegistry");
const { _ } = require("lib/locale.js");
2018-03-09 19:49:35 +02:00
const shared = {};
shared.init = function(comp) {
if (!comp.state) comp.state = {};
comp.state.checkSyncConfigResult = null;
comp.state.settings = {};
comp.state.changedSettingKeys = [];
2018-03-09 19:49:35 +02:00
};
shared.checkSyncConfig = async function(comp, settings) {
2018-03-09 19:49:35 +02:00
const syncTargetId = settings["sync.target"];
const SyncTargetClass = SyncTargetRegistry.classById(syncTargetId);
2018-03-09 19:49:35 +02:00
const options = Setting.subValues("sync." + syncTargetId, settings);
comp.setState({ checkSyncConfigResult: "checking" });
const result = await SyncTargetClass.checkConfig(options);
comp.setState({ checkSyncConfigResult: result });
2018-03-09 19:49:35 +02:00
};
shared.checkSyncConfigMessages = function(comp) {
const result = comp.state.checkSyncConfigResult;
const output = [];
2018-03-09 19:49:35 +02:00
if (result === "checking") {
output.push(_("Checking... Please wait."));
} else if (result && result.ok) {
2018-03-09 19:49:35 +02:00
output.push(_("Success! Synchronisation configuration appears to be correct."));
} else if (result && !result.ok) {
2018-03-09 19:49:35 +02:00
output.push(_("Error. Please check that URL, username, password, etc. are correct and that the sync target is accessible. The reported error was:"));
output.push(result.errorMessage);
}
return output;
2018-03-09 19:49:35 +02:00
};
shared.updateSettingValue = function(comp, key, value) {
const settings = Object.assign({}, comp.state.settings);
const changedSettingKeys = comp.state.changedSettingKeys.slice();
settings[key] = Setting.formatValue(key, value);
if (changedSettingKeys.indexOf(key) < 0) changedSettingKeys.push(key);
comp.setState({
settings: settings,
changedSettingKeys: changedSettingKeys,
});
2018-03-09 19:49:35 +02:00
};
shared.saveSettings = function(comp) {
for (let key in comp.state.settings) {
if (!comp.state.settings.hasOwnProperty(key)) continue;
if (comp.state.changedSettingKeys.indexOf(key) < 0) continue;
console.info("Saving", key, comp.state.settings[key]);
Setting.setValue(key, comp.state.settings[key]);
}
comp.setState({ changedSettingKeys: [] });
2018-03-09 19:49:35 +02:00
};
shared.settingsToComponents = function(comp, device, settings) {
const keys = Setting.keys(true, device);
const settingComps = [];
for (let i = 0; i < keys.length; i++) {
const key = keys[i];
if (!Setting.isPublic(key)) continue;
const md = Setting.settingMetadata(key);
if (md.show && !md.show(settings)) continue;
const settingComp = comp.settingToComponent(key, settings[key]);
if (!settingComp) continue;
settingComps.push(settingComp);
}
2018-03-09 19:49:35 +02:00
return settingComps;
};
2018-03-09 19:49:35 +02:00
module.exports = shared;