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

34 lines
807 B
JavaScript
Raw Normal View History

2017-07-10 22:03:46 +02:00
import { BaseCommand } from './base-command.js';
import { app } from './app.js';
import { _ } from 'lib/locale.js';
2017-07-11 20:17:23 +02:00
import { BaseModel } from 'lib/base-model.js';
2017-07-10 22:03:46 +02:00
import { Folder } from 'lib/models/folder.js';
import { autocompleteFolders } from './autocomplete.js';
class Command extends BaseCommand {
usage() {
2017-07-18 20:21:03 +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
}
aliases() {
return ['cd'];
}
autocomplete() {
return { data: autocompleteFolders };
}
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;