2017-11-03 02:09:34 +02:00
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 BaseModel = require ( 'lib/BaseModel.js' ) ;
const Folder = require ( 'lib/models/Folder.js' ) ;
const Setting = require ( 'lib/models/Setting.js' ) ;
const Note = require ( 'lib/models/Note.js' ) ;
2017-11-03 02:09:34 +02:00
const { sprintf } = require ( 'sprintf-js' ) ;
const { time } = require ( 'lib/time-utils.js' ) ;
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
}
2017-10-24 23:37:36 +02:00
enabled ( ) {
return false ;
}
2017-07-10 22:03:46 +02:00
options ( ) {
return [
2017-07-28 20:13:07 +02:00
[ '-n, --limit <num>' , _ ( 'Displays only the first top <num> notes.' ) ] ,
[ '-s, --sort <field>' , _ ( 'Sorts the item by <field> (eg. title, updated_time, created_time).' ) ] ,
2017-07-18 20:21:03 +02:00
[ '-r, --reverse' , _ ( 'Reverses the sorting order.' ) ] ,
2017-10-30 02:37:34 +02:00
[ '-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 `-ttd` would display notes and to-dos.' ) ] ,
2017-07-28 20:13:07 +02:00
[ '-f, --format <format>' , _ ( 'Either "text" or "json"' ) ] ,
2017-10-30 02:37:34 +02:00
[ '-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 ) {
2017-08-04 18:02:43 +02:00
let pattern = args [ 'note-pattern' ] ;
2017-07-10 22:03:46 +02:00
let items = [ ] ;
let options = args . options ;
let queryOptions = { } ;
2017-07-10 22:47:01 +02:00
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' ;
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 ;
2017-07-11 20:17:23 +02:00
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 ++ ) {
let item = items [ i ] ;
if ( item . is _todo ) {
hasTodos = true ;
break ;
}
}
2017-07-10 22:47:01 +02:00
let seenTitles = [ ] ;
2017-07-12 22:39:47 +02:00
let 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 ++ ) {
let item = items [ i ] ;
2017-07-12 22:39:47 +02:00
let row = [ ] ;
if ( options . long ) {
2017-07-17 20:46:09 +02:00
row . push ( BaseModel . shortId ( item . id ) ) ;
shortIdShown = true ;
2017-07-12 22:39:47 +02:00
if ( modelType == Folder . modelType ( ) ) {
row . push ( await Folder . noteCount ( item . id ) ) ;
}
2017-08-21 19:56:40 +02:00
row . push ( time . unixMsToLocalDateTime ( item . user _updated _time ) ) ;
2017-07-10 22:03:46 +02:00
}
2017-07-10 22:47:01 +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 ) ) {
title += ' (' + BaseModel . shortId ( item . id ) + ')' ;
2017-07-10 22:47:01 +02:00
} 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' : ' ' ) ) ;
} 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
}
2017-07-10 22:59:58 +02:00
2017-07-10 22:03:46 +02:00
}
}
module . exports = Command ;