2017-07-10 20:03:46 +00:00
|
|
|
import { BaseCommand } from './base-command.js';
|
|
|
|
import { app } from './app.js';
|
|
|
|
import { _ } from 'lib/locale.js';
|
|
|
|
import { Folder } from 'lib/models/folder.js';
|
2017-07-24 19:47:01 +00:00
|
|
|
import { reg } from '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
|
|
|
}
|
|
|
|
|
|
|
|
aliases() {
|
|
|
|
return ['mkdir'];
|
|
|
|
}
|
|
|
|
|
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;
|