trilium/src/entities/branch.js

34 lines
1.2 KiB
JavaScript
Raw Normal View History

2018-03-25 09:39:15 +08:00
"use strict";
const Entity = require('./entity');
2018-04-03 08:46:46 +08:00
const dateUtils = require('../services/date_utils');
2018-04-01 11:08:22 +08:00
const repository = require('../services/repository');
const sql = require('../services/sql');
2018-03-25 09:39:15 +08:00
class Branch extends Entity {
static get tableName() { return "branches"; }
static get primaryKeyName() { return "branchId"; }
2018-05-23 10:22:15 +08:00
// notePosition is not part of hash because it would produce a lot of updates in case of reordering
static get hashedProperties() { return ["branchId", "noteId", "parentNoteId", "dateModified", "isDeleted", "prefix"]; }
2018-04-01 10:15:06 +08:00
2018-04-01 11:08:22 +08:00
async getNote() {
return await repository.getEntity("SELECT * FROM notes WHERE noteId = ?", [this.noteId]);
}
async beforeSaving() {
2018-04-03 08:30:00 +08:00
super.beforeSaving();
2018-04-02 05:38:24 +08:00
if (this.notePosition === undefined) {
const maxNotePos = await sql.getValue('SELECT MAX(notePosition) FROM branches WHERE parentNoteId = ? AND isDeleted = 0', [this.parentNoteId]);
this.notePosition = maxNotePos === null ? 0 : maxNotePos + 1;
}
2018-04-02 05:38:24 +08:00
if (!this.isDeleted) {
this.isDeleted = false;
}
2018-04-03 08:46:46 +08:00
this.dateModified = dateUtils.nowDate()
2018-04-01 10:15:06 +08:00
}
2018-03-25 09:39:15 +08:00
}
module.exports = Branch;