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

124 lines
3.8 KiB
JavaScript
Raw Normal View History

const BaseCommand = require('./base-command').default;
const { app } = require('./app.js');
const { _ } = require('@joplin/lib/locale');
const BaseModel = require('@joplin/lib/BaseModel').default;
const Folder = require('@joplin/lib/models/Folder').default;
const Setting = require('@joplin/lib/models/Setting').default;
const Note = require('@joplin/lib/models/Note').default;
const { sprintf } = require('sprintf-js');
const time = require('@joplin/lib/time').default;
const { cliUtils } = require('./cli-utils.js');
2017-07-10 22:03:46 +02:00
class Command extends BaseCommand {
usage() {
2017-08-04 18:02:43 +02:00
return 'ls [note-pattern]';
2017-07-10 22:03:46 +02:00
}
description() {
2017-08-04 18:02:43 +02:00
return _('Displays the notes in the current notebook. Use `ls /` to display the list of notebooks.');
2017-07-10 22:03:46 +02:00
}
enabled() {
2020-03-08 11:17:10 +02:00
return true;
}
2017-07-10 22:03:46 +02:00
options() {
2020-03-08 11:17:10 +02:00
return [
['-n, --limit <num>', _('Displays only the first top <num> notes.')],
['-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 to-dos, or `nt` for notes and to-dos (eg. `-tt` would display only the to-dos, while `-tnt` would display notes and to-dos.')],
2020-03-08 11:17:10 +02:00
['-f, --format <format>', _('Either "text" or "json"')],
['-l, --long', _('Use long list format. Format is ID, NOTE_COUNT (for notebook), DATE, TODO_CHECKED (for to-dos), TITLE')],
];
2017-07-10 22:03:46 +02:00
}
async action(args) {
const pattern = args['note-pattern'];
2017-07-10 22:03:46 +02:00
let items = [];
const options = args.options;
2017-07-10 22:03:46 +02:00
const queryOptions = {};
if (options.limit) queryOptions.limit = options.limit;
2017-07-10 22:03:46 +02:00
if (options.sort) {
queryOptions.orderBy = options.sort;
queryOptions.orderByDir = 'ASC';
}
if (options.reverse === true) queryOptions.orderByDir = queryOptions.orderByDir === 'ASC' ? 'DESC' : 'ASC';
2017-07-10 22:03:46 +02:00
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;
2017-07-31 21:47:58 +02:00
queryOptions.uncompletedTodosOnTop = Setting.value('uncompletedTodosOnTop');
2017-07-10 22:03:46 +02:00
2017-07-12 22:39:47 +02:00
let modelType = null;
if (pattern === '/' || !app().currentFolder()) {
2017-07-15 17:35:40 +02:00
queryOptions.includeConflictFolder = true;
2017-07-10 22:03:46 +02:00
items = await Folder.all(queryOptions);
2017-07-12 22:39:47 +02:00
modelType = Folder.modelType();
2017-07-10 22:03:46 +02:00
} else {
if (!app().currentFolder()) throw new Error(_('Please select a notebook first.'));
items = await Note.previews(app().currentFolder().id, queryOptions);
2017-07-12 22:39:47 +02:00
modelType = Note.modelType();
2017-07-10 22:03:46 +02:00
}
if (options.format && options.format === 'json') {
2017-10-07 18:30:27 +02:00
this.stdout(JSON.stringify(items));
2017-07-10 22:03:46 +02:00
} else {
2017-07-12 22:39:47 +02:00
let hasTodos = false;
for (let i = 0; i < items.length; i++) {
const item = items[i];
2017-07-12 22:39:47 +02:00
if (item.is_todo) {
hasTodos = true;
break;
}
}
const seenTitles = [];
const rows = [];
2017-07-17 20:46:09 +02:00
let shortIdShown = false;
2017-07-10 22:03:46 +02:00
for (let i = 0; i < items.length; i++) {
const item = items[i];
const row = [];
2017-07-12 22:39:47 +02:00
if (options.long) {
2017-07-17 20:46:09 +02:00
row.push(BaseModel.shortId(item.id));
shortIdShown = true;
if (modelType === Folder.modelType()) {
2017-07-12 22:39:47 +02:00
row.push(await Folder.noteCount(item.id));
}
row.push(time.formatMsToLocal(item.user_updated_time));
2017-07-10 22:03:46 +02:00
}
2017-07-30 21:51:18 +02:00
let title = item.title;
2017-07-17 20:46:09 +02:00
if (!shortIdShown && (seenTitles.indexOf(item.title) >= 0 || !item.title)) {
2019-09-19 23:51:18 +02:00
title += ` (${BaseModel.shortId(item.id)})`;
} else {
seenTitles.push(item.title);
}
2017-07-12 22:39:47 +02:00
if (hasTodos) {
if (item.is_todo) {
row.push(sprintf('[%s]', item.todo_completed ? 'X' : ' '));
2017-07-12 22:39:47 +02:00
} else {
row.push(' ');
}
}
row.push(title);
rows.push(row);
2017-07-10 22:03:46 +02:00
}
2017-07-12 22:39:47 +02:00
2017-10-09 22:45:20 +02:00
cliUtils.printArray(this.stdout.bind(this), rows);
2017-07-10 22:03:46 +02:00
}
}
}
module.exports = Command;