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';
|
|
|
|
|
|
|
|
class Command extends BaseCommand {
|
|
|
|
|
|
|
|
usage() {
|
|
|
|
return 'mkbook <notebook>';
|
|
|
|
}
|
|
|
|
|
|
|
|
description() {
|
|
|
|
return 'Creates a new notebook.';
|
|
|
|
}
|
|
|
|
|
|
|
|
aliases() {
|
|
|
|
return ['mkdir'];
|
|
|
|
}
|
|
|
|
|
2017-07-15 15:35:40 +00:00
|
|
|
async action(args) {
|
2017-07-17 19:19:01 +00:00
|
|
|
let folder = await Folder.save({ title: args['notebook'] }, { userSideValidation: true });
|
2017-07-15 15:35:40 +00:00
|
|
|
|
2017-07-10 20:03:46 +00:00
|
|
|
app().switchCurrentFolder(folder);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = Command;
|