2017-11-03 00:09:34 +00:00
|
|
|
const { BaseCommand } = require('./base-command.js');
|
|
|
|
const { app } = require('./app.js');
|
|
|
|
const { _ } = require('lib/locale.js');
|
|
|
|
const { Folder } = require('lib/models/folder.js');
|
|
|
|
const { reg } = require('lib/registry.js');
|
2017-07-10 20:03:46 +00:00
|
|
|
|
|
|
|
class Command extends BaseCommand {
|
|
|
|
|
|
|
|
usage() {
|
2017-08-04 16:02:43 +00: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
|
|
|
}
|
|
|
|
|
|
|
|
aliases() {
|
|
|
|
return ['mkdir'];
|
|
|
|
}
|
|
|
|
|
2017-07-15 15:35:40 +00:00
|
|
|
async action(args) {
|
2017-08-04 16:02:43 +00: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;
|