mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-15 09:04:04 +02:00
52 lines
1.2 KiB
JavaScript
52 lines
1.2 KiB
JavaScript
import { BaseCommand } from './base-command.js';
|
|
import { _, setLocale } from 'lib/locale.js';
|
|
import { app } from './app.js';
|
|
import { Setting } from 'lib/models/setting.js';
|
|
|
|
class Command extends BaseCommand {
|
|
|
|
usage() {
|
|
return 'config [name] [value]';
|
|
}
|
|
|
|
description() {
|
|
return _("Gets or sets a config value. If [value] is not provided, it will show the value of [name]. If neither [name] nor [value] is provided, it will list the current configuration.");
|
|
}
|
|
|
|
async action(args) {
|
|
|
|
const renderKeyValue = (name) => {
|
|
const value = Setting.value(name);
|
|
if (Setting.isEnum(name)) {
|
|
return _('%s = %s (%s)', name, value, Setting.enumOptionLabel(name, value));
|
|
} else {
|
|
return _('%s = %s', name, value);
|
|
}
|
|
}
|
|
|
|
if (!args.name && !args.value) {
|
|
let keys = Setting.publicKeys();
|
|
for (let i = 0; i < keys.length; i++) {
|
|
this.log(renderKeyValue(keys[i]));
|
|
}
|
|
return;
|
|
}
|
|
|
|
if (args.name && !args.value) {
|
|
this.log(renderKeyValue(args.name));
|
|
return;
|
|
}
|
|
|
|
Setting.setValue(args.name, args.value);
|
|
|
|
if (args.name == 'locale') {
|
|
setLocale(Setting.value('locale'));
|
|
app().onLocaleChanged();
|
|
}
|
|
|
|
await Setting.saveAll();
|
|
}
|
|
|
|
}
|
|
|
|
module.exports = Command; |