1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-18 09:35:20 +02:00
joplin/packages/app-cli/app/gui/NoteListWidget.js

46 lines
1.0 KiB
JavaScript
Raw Normal View History

const Note = require('@joplin/lib/models/Note').default;
2017-10-08 00:17:10 +02:00
const ListWidget = require('tkwidgets/ListWidget.js');
class NoteListWidget extends ListWidget {
constructor() {
super();
this.selectedNoteId_ = 0;
this.showIds = false;
2017-10-08 00:17:10 +02:00
this.updateIndexFromSelectedNoteId_ = false;
this.itemRenderer = note => {
let label = Note.displayTitle(note);
if (this.showIds) {
label = `${Note.shortId(note.id)} ${Note.displayTitle(note)}`;
}
if (note.is_todo) {
2019-09-19 23:51:18 +02:00
label = `[${note.todo_completed ? 'X' : ' '}] ${label}`;
}
return label;
};
2017-10-08 00:17:10 +02:00
}
set selectedNoteId(v) {
this.updateIndexFromSelectedNoteId_ = true;
2017-10-08 00:17:10 +02:00
this.selectedNoteId_ = v;
}
toggleShowIds() {
this.showIds = !this.showIds;
this.invalidate();
}
render() {
if (this.updateIndexFromSelectedNoteId_) {
const index = this.itemIndexByKey('id', this.selectedNoteId_);
this.currentIndex = index >= 0 ? index : 0;
this.updateIndexFromSelectedNoteId_ = false;
}
super.render();
2017-10-08 00:17:10 +02:00
}
}
module.exports = NoteListWidget;