trilium/src/entities/note.js

31 lines
867 B
JavaScript
Raw Normal View History

2018-01-29 12:16:50 +08:00
"use strict";
const Entity = require('./entity');
2018-01-29 12:16:50 +08:00
class Note extends Entity {
2018-01-30 09:57:55 +08:00
constructor(sql, row) {
super(sql, row);
if (this.type === "code" && this.mime === "application/json") {
this.jsonContent = JSON.parse(this.content);
}
}
async getAttributes() {
return this.sql.getEntities("SELECT * FROM attributes WHERE noteId = ?", [this.noteId]);
2018-01-29 12:16:50 +08:00
}
async getAttribute(name) {
return this.sql.getEntity("SELECT * FROM attributes WHERE noteId = ? AND name = ?", [this.noteId, name]);
}
async getRevisions() {
return this.sql.getEntities("SELECT * FROM note_revisions WHERE noteId = ?", [this.noteId]);
}
async getTrees() {
return this.sql.getEntities("SELECT * FROM note_tree WHERE isDeleted = 0 AND noteId = ?", [this.noteId]);
2018-01-29 12:16:50 +08:00
}
}
module.exports = Note;