Notes/src/entities/branch.js

69 lines
2.1 KiB
JavaScript
Raw Normal View History

2018-03-24 21:39:15 -04:00
"use strict";
const Entity = require('./entity');
2018-04-02 20:46:46 -04:00
const dateUtils = require('../services/date_utils');
2018-03-31 23:08:22 -04:00
const repository = require('../services/repository');
const sql = require('../services/sql');
2018-03-24 21:39:15 -04:00
2018-08-22 23:37:06 +02:00
/**
* Branch represents note's placement in the tree - it's essentially pair of noteId and parentNoteId.
* Each note can have multiple (at least one) branches, meaning it can be placed into multiple places in the tree.
*
* @param {string} branchId - primary key
* @param {string} noteId
* @param {string} parentNoteId
* @param {int} notePosition
* @param {string} prefix
* @param {boolean} isExpanded
* @param {boolean} isDeleted
* @param {string} dateModified
* @param {string} dateCreated
*
* @extends Entity
*/
2018-03-24 21:39:15 -04:00
class Branch extends Entity {
static get entityName() { return "branches"; }
2018-03-24 21:39:15 -04:00
static get primaryKeyName() { return "branchId"; }
2018-05-22 22:22:15 -04: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", "isDeleted", "prefix"]; }
2018-03-31 22:15:06 -04:00
constructor(row = {}) {
super(row);
// used to detect move in note tree
this.origParentNoteId = this.parentNoteId;
}
2018-09-03 09:40:22 +02:00
/** @returns {Note|null} */
2018-03-31 23:08:22 -04:00
async getNote() {
return await repository.getEntity("SELECT * FROM notes WHERE noteId = ?", [this.noteId]);
}
async beforeSaving() {
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-01 17:38:24 -04:00
if (!this.isDeleted) {
this.isDeleted = false;
}
2018-05-26 12:38:25 -04:00
if (!this.dateCreated) {
this.dateCreated = dateUtils.nowDate();
}
super.beforeSaving();
if (this.isChanged) {
this.dateModified = dateUtils.nowDate();
}
2018-03-31 22:15:06 -04:00
}
// cannot be static!
updatePojo(pojo) {
delete pojo.origParentNoteId;
}
2018-03-24 21:39:15 -04:00
}
module.exports = Branch;