mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-07-29 02:52:27 +08:00
31 lines
867 B
JavaScript
31 lines
867 B
JavaScript
"use strict";
|
|
|
|
const Entity = require('./entity');
|
|
|
|
class Note extends Entity {
|
|
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]);
|
|
}
|
|
|
|
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]);
|
|
}
|
|
}
|
|
|
|
module.exports = Note; |