mirror of
https://github.com/zadam/trilium.git
synced 2025-11-02 11:26:15 +01:00
40 lines
1.0 KiB
JavaScript
40 lines
1.0 KiB
JavaScript
"use strict";
|
|
|
|
const Entity = require('./entity');
|
|
const repository = require('../services/repository');
|
|
const utils = require('../services/utils');
|
|
const sql = require('../services/sql');
|
|
|
|
class Label extends Entity {
|
|
static get tableName() { return "labels"; }
|
|
static get primaryKeyName() { return "labelId"; }
|
|
|
|
async getNote() {
|
|
return await repository.getEntity("SELECT * FROM notes WHERE noteId = ?", [this.noteId]);
|
|
}
|
|
|
|
async beforeSaving() {
|
|
super.beforeSaving();
|
|
|
|
if (!this.value) {
|
|
// null value isn't allowed
|
|
this.value = "";
|
|
}
|
|
|
|
if (this.position === undefined) {
|
|
this.position = 1 + await sql.getValue(`SELECT COALESCE(MAX(position), 0) FROM labels WHERE noteId = ?`, [this.noteId]);
|
|
}
|
|
|
|
if (!this.isDeleted) {
|
|
this.isDeleted = false;
|
|
}
|
|
|
|
if (!this.dateCreated) {
|
|
this.dateCreated = utils.nowDate();
|
|
}
|
|
|
|
this.dateModified = utils.nowDate();
|
|
}
|
|
}
|
|
|
|
module.exports = Label; |