mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-18 09:35:20 +02:00
37 lines
845 B
JavaScript
37 lines
845 B
JavaScript
const Note = require('@joplin/lib/models/Note.js');
|
|
const ListWidget = require('tkwidgets/ListWidget.js');
|
|
|
|
class NoteListWidget extends ListWidget {
|
|
constructor() {
|
|
super();
|
|
this.selectedNoteId_ = 0;
|
|
|
|
this.updateIndexFromSelectedNoteId_ = false;
|
|
|
|
this.itemRenderer = note => {
|
|
let label = Note.displayTitle(note); // + ' ' + note.id;
|
|
if (note.is_todo) {
|
|
label = `[${note.todo_completed ? 'X' : ' '}] ${label}`;
|
|
}
|
|
return label;
|
|
};
|
|
}
|
|
|
|
set selectedNoteId(v) {
|
|
this.updateIndexFromSelectedNoteId_ = true;
|
|
this.selectedNoteId_ = v;
|
|
}
|
|
|
|
render() {
|
|
if (this.updateIndexFromSelectedNoteId_) {
|
|
const index = this.itemIndexByKey('id', this.selectedNoteId_);
|
|
this.currentIndex = index >= 0 ? index : 0;
|
|
this.updateIndexFromSelectedNoteId_ = false;
|
|
}
|
|
|
|
super.render();
|
|
}
|
|
}
|
|
|
|
module.exports = NoteListWidget;
|