1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-18 09:35:20 +02:00
joplin/CliClient/app/command-use.js

33 lines
779 B
JavaScript
Raw Normal View History

const { BaseCommand } = require('./base-command.js');
const { app } = require('./app.js');
const { _ } = require('lib/locale.js');
const { BaseModel } = require('lib/base-model.js');
const { Folder } = require('lib/models/folder.js');
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
}
autocomplete() {
return { data: autocompleteFolders };
}
2017-12-07 20:12:46 +02:00
compatibleUis() {
return ['cli'];
}
2017-07-10 22:03:46 +02:00
async action(args) {
2017-07-11 20:17:23 +02:00
let 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;