Notes/src/entities/note.js
2018-01-29 20:57:55 -05:00

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;