mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-15 09:04:04 +02:00
34 lines
600 B
JavaScript
34 lines
600 B
JavaScript
//import { Note } from 'lib/models/note.js';
|
|
|
|
const Note = require('lib/models/note.js').Note;
|
|
const TextWidget = require('tkwidgets/TextWidget.js');
|
|
|
|
class NoteWidget extends TextWidget {
|
|
|
|
constructor() {
|
|
super();
|
|
this.noteId_ = 0;
|
|
this.note_ = null;
|
|
}
|
|
|
|
get noteId() {
|
|
return this.noteId_;
|
|
}
|
|
|
|
set noteId(v) {
|
|
if (v === this.noteId_) return;
|
|
this.noteId_ = v;
|
|
this.note_ = null;
|
|
this.invalidate();
|
|
}
|
|
|
|
async willRender() {
|
|
if (!this.note_ && this.noteId_) {
|
|
this.note_ = await Note.load(this.noteId_);
|
|
this.text = this.note_.body;
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
module.exports = NoteWidget; |