2022-11-01 17:28:14 +02:00
|
|
|
const BaseCommand = require('./base-command').default;
|
2017-11-03 02:09:34 +02:00
|
|
|
const { app } = require('./app.js');
|
2020-11-07 17:59:37 +02:00
|
|
|
const { _ } = require('@joplin/lib/locale');
|
2021-01-22 19:41:11 +02:00
|
|
|
const Folder = require('@joplin/lib/models/Folder').default;
|
2017-07-10 22:03:46 +02:00
|
|
|
|
|
|
|
class Command extends BaseCommand {
|
|
|
|
usage() {
|
2017-08-04 18:02:43 +02:00
|
|
|
return 'mkbook <new-notebook>';
|
2017-07-10 22:03:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
description() {
|
2017-07-18 20:21:03 +02:00
|
|
|
return _('Creates a new notebook.');
|
2017-07-10 22:03:46 +02:00
|
|
|
}
|
|
|
|
|
2017-07-15 17:35:40 +02:00
|
|
|
async action(args) {
|
2020-03-14 01:46:14 +02:00
|
|
|
const folder = await Folder.save({ title: args['new-notebook'] }, { userSideValidation: true });
|
2017-07-10 22:03:46 +02:00
|
|
|
app().switchCurrentFolder(folder);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-30 09:35:42 +02:00
|
|
|
module.exports = Command;
|