mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-12 08:54:00 +02:00
71efff6827
* Update eslint config * Applied linter to lib * Applied eslint config to CliClient/app * Removed prettier due to https://github.com/prettier/prettier/pull/4765 * First pass on test units * Applied linter config to test units * Applied eslint config to clipper * Applied to plugin dir * Applied to root of ElectronClient * Applied on RN root * Applied on CLI root * Applied on Clipper root * Applied config to tools * test hook * test hook * test hook * Added pre-commit hook * Applied rule no-trailing-spaces * Make sure root packages are installed when installing sub-dir * Added doc
98 lines
1.5 KiB
JavaScript
98 lines
1.5 KiB
JavaScript
const { _ } = require('lib/locale.js');
|
|
const { reg } = require('lib/registry.js');
|
|
|
|
class BaseCommand {
|
|
constructor() {
|
|
this.stdout_ = null;
|
|
this.prompt_ = null;
|
|
}
|
|
|
|
usage() {
|
|
throw new Error('Usage not defined');
|
|
}
|
|
|
|
encryptionCheck(item) {
|
|
if (item && item.encryption_applied) throw new Error(_('Cannot change encrypted item'));
|
|
}
|
|
|
|
description() {
|
|
throw new Error('Description not defined');
|
|
}
|
|
|
|
async action(args) {
|
|
throw new Error('Action not defined');
|
|
}
|
|
|
|
compatibleUis() {
|
|
return ['cli', 'gui'];
|
|
}
|
|
|
|
supportsUi(ui) {
|
|
return this.compatibleUis().indexOf(ui) >= 0;
|
|
}
|
|
|
|
options() {
|
|
return [];
|
|
}
|
|
|
|
hidden() {
|
|
return false;
|
|
}
|
|
|
|
enabled() {
|
|
return true;
|
|
}
|
|
|
|
cancellable() {
|
|
return false;
|
|
}
|
|
|
|
async cancel() {}
|
|
|
|
name() {
|
|
let r = this.usage().split(' ');
|
|
return r[0];
|
|
}
|
|
|
|
setDispatcher(fn) {
|
|
this.dispatcher_ = fn;
|
|
}
|
|
|
|
dispatch(action) {
|
|
if (!this.dispatcher_) throw new Error('Dispatcher not defined');
|
|
return this.dispatcher_(action);
|
|
}
|
|
|
|
setStdout(fn) {
|
|
this.stdout_ = fn;
|
|
}
|
|
|
|
stdout(text) {
|
|
if (this.stdout_) this.stdout_(text);
|
|
}
|
|
|
|
setPrompt(fn) {
|
|
this.prompt_ = fn;
|
|
}
|
|
|
|
async prompt(message, options = null) {
|
|
if (!this.prompt_) throw new Error('Prompt is undefined');
|
|
return await this.prompt_(message, options);
|
|
}
|
|
|
|
metadata() {
|
|
return {
|
|
name: this.name(),
|
|
usage: this.usage(),
|
|
options: this.options(),
|
|
hidden: this.hidden(),
|
|
};
|
|
}
|
|
|
|
logger() {
|
|
return reg.logger();
|
|
}
|
|
}
|
|
|
|
module.exports = { BaseCommand };
|