1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-03 08:35:29 +02:00
joplin/packages/app-cli/app/command-mktodo.js

32 lines
711 B
JavaScript
Raw Normal View History

const BaseCommand = require('./base-command').default;
2024-01-20 16:29:21 +02:00
const app = require('./app').default;
const { _ } = require('@joplin/lib/locale');
const Note = require('@joplin/lib/models/Note').default;
2017-07-31 20:57:31 +02:00
class Command extends BaseCommand {
usage() {
2017-08-04 18:02:43 +02:00
return 'mktodo <new-todo>';
2017-07-31 20:57:31 +02:00
}
description() {
2017-10-30 02:37:34 +02:00
return _('Creates a new to-do.');
2017-07-31 20:57:31 +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-todo'],
2017-07-31 20:57:31 +02:00
parent_id: app().currentFolder().id,
is_todo: 1,
};
note = await Note.save(note);
Note.updateGeolocation(note.id);
2017-10-22 19:12:16 +02:00
app().switchCurrentFolder(app().currentFolder());
2017-07-31 20:57:31 +02:00
}
}
module.exports = Command;