1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-15 09:04:04 +02:00
joplin/packages/app-cli/app/command-use.js

27 lines
679 B
JavaScript
Raw Normal View History

const { BaseCommand } = require('./base-command.js');
const { app } = require('./app.js');
const { _ } = require('@joplin/lib/locale');
const BaseModel = require('@joplin/lib/BaseModel').default;
2017-07-10 22:03:46 +02:00
class Command extends BaseCommand {
usage() {
2017-07-28 20:13:07 +02:00
return 'use <notebook>';
2017-07-10 22:03:46 +02:00
}
description() {
2017-07-18 20:21:03 +02:00
return _('Switches to [notebook] - all further operations will happen within this notebook.');
2017-07-10 22:03:46 +02:00
}
2017-12-07 20:12:46 +02:00
compatibleUis() {
return ['cli'];
}
2017-07-10 22:03:46 +02:00
async action(args) {
const folder = await app().loadItem(BaseModel.TYPE_FOLDER, args['notebook']);
2017-07-18 20:21:03 +02:00
if (!folder) throw new Error(_('Cannot find "%s".', args['notebook']));
2017-07-10 22:03:46 +02:00
app().switchCurrentFolder(folder);
}
}
module.exports = Command;