mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-12 08:54:00 +02:00
78 lines
2.4 KiB
JavaScript
78 lines
2.4 KiB
JavaScript
import { BaseCommand } from './base-command.js';
|
|
import { app } from './app.js';
|
|
import { _ } from 'lib/locale.js';
|
|
import { Folder } from 'lib/models/folder.js';
|
|
import { Note } from 'lib/models/note.js';
|
|
import { autocompleteFolders } from './autocomplete.js';
|
|
|
|
class Command extends BaseCommand {
|
|
|
|
usage() {
|
|
return 'ls [pattern]';
|
|
}
|
|
|
|
description() {
|
|
return 'Displays the notes in [notebook]. Use `ls ..` to display the list of notebooks.';
|
|
}
|
|
|
|
options() {
|
|
return [
|
|
['-n, --lines <num>', 'Displays only the first top <num> lines.'],
|
|
['-s, --sort <field>', 'Sorts the item by <field> (eg. title, updated_time, created_time).'],
|
|
['-r, --reverse', 'Reverses the sorting order.'],
|
|
['-t, --type <type>', 'Displays only the items of the specific type(s). Can be `n` for notes, `t` for todos, or `nt` for notes and todos (eg. `-tt` would display only the todos, while `-ttd` would display notes and todos.'],
|
|
['-f, --format <format>', 'Either "text" or "json"'],
|
|
];
|
|
}
|
|
|
|
autocomplete() {
|
|
return { data: autocompleteFolders };
|
|
}
|
|
|
|
async action(args) {
|
|
let pattern = args['pattern'];
|
|
let suffix = '';
|
|
let items = [];
|
|
let options = args.options;
|
|
|
|
let queryOptions = {};
|
|
if (options.lines) queryOptions.limit = options.lines;
|
|
if (options.sort) {
|
|
queryOptions.orderBy = options.sort;
|
|
queryOptions.orderByDir = 'ASC';
|
|
}
|
|
if (options.reverse === true) queryOptions.orderByDir = queryOptions.orderByDir == 'ASC' ? 'DESC' : 'ASC';
|
|
queryOptions.caseInsensitive = true;
|
|
if (options.type) {
|
|
queryOptions.itemTypes = [];
|
|
if (options.type.indexOf('n') >= 0) queryOptions.itemTypes.push('note');
|
|
if (options.type.indexOf('t') >= 0) queryOptions.itemTypes.push('todo');
|
|
}
|
|
if (pattern) queryOptions.titlePattern = pattern;
|
|
|
|
if (pattern == '..' || !app().currentFolder()) {
|
|
items = await Folder.all(queryOptions);
|
|
suffix = '/';
|
|
} else {
|
|
if (!app().currentFolder()) throw new Error(_('Please select a notebook first.'));
|
|
items = await Note.previews(app().currentFolder().id, queryOptions);
|
|
}
|
|
|
|
if (options.format && options.format == 'json') {
|
|
this.log(JSON.stringify(items));
|
|
} else {
|
|
for (let i = 0; i < items.length; i++) {
|
|
let item = items[i];
|
|
let line = '';
|
|
if (!!item.is_todo) {
|
|
line += sprintf('[%s] ', !!item.todo_completed ? 'X' : ' ');
|
|
}
|
|
line += item.title + suffix;
|
|
this.log(line);
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
module.exports = Command; |