trilium/src/entities/entity_constructor.js

45 lines
1.2 KiB
JavaScript
Raw Normal View History

const Note = require('../entities/note');
const NoteRevision = require('../entities/note_revision');
2018-04-01 23:42:12 +08:00
const Image = require('../entities/image');
2018-04-01 10:15:06 +08:00
const NoteImage = require('../entities/note_image');
const Branch = require('../entities/branch');
const Label = require('../entities/label');
2018-04-02 00:03:21 +08:00
const RecentNote = require('../entities/recent_note');
const repository = require('../services/repository');
function createEntityFromRow(row) {
let entity;
if (row.labelId) {
entity = new Label(row);
}
else if (row.noteRevisionId) {
entity = new NoteRevision(row);
}
2018-04-01 10:15:06 +08:00
else if (row.noteImageId) {
entity = new NoteImage(row);
}
2018-04-01 23:42:12 +08:00
else if (row.imageId) {
entity = new Image(row);
}
2018-04-02 00:03:21 +08:00
else if (row.branchId && row.notePath) {
entity = new RecentNote(row);
}
else if (row.branchId) {
entity = new Branch(row);
}
else if (row.noteId) {
entity = new Note(row);
}
else {
throw new Error('Unknown entity type for row: ' + JSON.stringify(row));
}
return entity;
}
repository.setEntityConstructor(createEntityFromRow);
module.exports = {
createEntityFromRow
};