1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-09 08:45:55 +02:00
joplin/CliClient/app/command-mknote.js

32 lines
676 B
JavaScript
Raw Normal View History

const { BaseCommand } = require('./base-command.js');
const { app } = require('./app.js');
const { _ } = require('lib/locale.js');
2017-12-14 20:12:14 +02:00
const Note = require('lib/models/Note.js');
2017-07-10 22:03:46 +02:00
class Command extends BaseCommand {
usage() {
2017-08-04 18:02:43 +02:00
return 'mknote <new-note>';
2017-07-10 22:03:46 +02:00
}
description() {
2017-07-18 20:21:03 +02:00
return _('Creates a new note.');
2017-07-10 22:03:46 +02:00
}
async action(args) {
if (!app().currentFolder()) throw new Error(_('Notes can only be created within a notebook.'));
let note = {
2017-08-04 18:02:43 +02:00
title: args['new-note'],
2017-07-11 20:17:23 +02:00
parent_id: app().currentFolder().id,
2017-07-10 22:03:46 +02:00
};
note = await Note.save(note);
Note.updateGeolocation(note.id);
2017-10-22 19:12:16 +02:00
app().switchCurrentFolder(app().currentFolder());
2017-07-10 22:03:46 +02:00
}
}
module.exports = Command;