1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-21 09:38:01 +02:00
joplin/packages/app-cli/app/command-use.ts

27 lines
718 B
TypeScript
Raw Normal View History

import BaseCommand from './base-command';
const { app } = require('./app.js');
import { _ } from '@joplin/lib/locale';
import BaseModel from '@joplin/lib/BaseModel';
2017-07-10 22:03:46 +02:00
class Command extends BaseCommand {
public override usage() {
2017-07-28 20:13:07 +02:00
return 'use <notebook>';
2017-07-10 22:03:46 +02:00
}
public override 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
}
public override compatibleUis() {
2017-12-07 20:12:46 +02:00
return ['cli'];
}
public override async action(args: any) {
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;