2017-11-03 00:09:34 +00:00
|
|
|
const { BaseCommand } = require('./base-command.js');
|
|
|
|
const { app } = require('./app.js');
|
|
|
|
const { _ } = require('lib/locale.js');
|
2017-12-14 18:12:14 +00:00
|
|
|
const Folder = require('lib/models/Folder.js');
|
2017-11-03 00:09:34 +00:00
|
|
|
const { reg } = require('lib/registry.js');
|
2017-07-10 20:03:46 +00:00
|
|
|
|
|
|
|
class Command extends BaseCommand {
|
|
|
|
|
|
|
|
usage() {
|
2017-08-04 18:02:43 +02:00
|
|
|
return 'mkbook <new-notebook>';
|
2017-07-10 20:03:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
description() {
|
2017-07-18 18:21:03 +00:00
|
|
|
return _('Creates a new notebook.');
|
2017-07-10 20:03:46 +00:00
|
|
|
}
|
|
|
|
|
2017-07-15 16:35:40 +01:00
|
|
|
async action(args) {
|
2017-08-04 18:02:43 +02:00
|
|
|
let folder = await Folder.save({ title: args['new-notebook'] }, { userSideValidation: true });
|
2017-07-10 20:03:46 +00:00
|
|
|
app().switchCurrentFolder(folder);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = Command;
|