1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-11-30 08:26:59 +02:00
joplin/packages/app-cli/app/command-mktodo.js
2024-01-22 17:16:26 +00:00

32 lines
711 B
JavaScript

const BaseCommand = require('./base-command').default;
const app = require('./app').default;
const { _ } = require('@joplin/lib/locale');
const Note = require('@joplin/lib/models/Note').default;
class Command extends BaseCommand {
usage() {
return 'mktodo <new-todo>';
}
description() {
return _('Creates a new to-do.');
}
async action(args) {
if (!app().currentFolder()) throw new Error(_('Notes can only be created within a notebook.'));
let note = {
title: args['new-todo'],
parent_id: app().currentFolder().id,
is_todo: 1,
};
note = await Note.save(note);
Note.updateGeolocation(note.id);
app().switchCurrentFolder(app().currentFolder());
}
}
module.exports = Command;