WIP refactoring of data structures in note tree

This commit is contained in:
azivner
2018-03-24 20:41:27 -04:00
parent 7e524c0cd1
commit 511fb89af0
7 changed files with 817 additions and 109 deletions

View File

@@ -12,39 +12,56 @@ const sync_table = require('../../services/sync_table');
const wrap = require('express-promise-wrap').wrap;
router.get('/', auth.checkApiAuth, wrap(async (req, res, next) => {
const notes = await sql.getRows(`
const noteTree = await sql.getRows(`
SELECT
note_tree.*,
notes.title,
notes.isProtected,
notes.type
FROM
noteTreeId,
noteId,
parentNoteId,
notePosition,
prefix,
isExpanded
FROM
note_tree
JOIN
notes ON notes.noteId = note_tree.noteId
WHERE
notes.isDeleted = 0
AND note_tree.isDeleted = 0
isDeleted = 0
ORDER BY
notePosition`);
let notes = [{
noteId: 'root',
title: 'root',
isProtected: false,
type: 'none',
mime: 'none'
}];
notes = notes.concat(await sql.getRows(`
SELECT
notes.noteId,
notes.title,
notes.isProtected,
notes.type,
notes.mime,
hideInAutocomplete.attributeId AS 'hideInAutocomplete'
FROM
notes
LEFT JOIN attributes AS hideInAutocomplete ON hideInAutocomplete.noteId = notes.noteId
AND hideInAutocomplete.name = 'hide_in_autocomplete'
AND hideInAutocomplete.isDeleted = 0
WHERE
notes.isDeleted = 0`));
protected_session.decryptNotes(req, notes);
const hiddenInAutocomplete = await sql.getColumn(`
SELECT
DISTINCT noteId
FROM
attributes
JOIN notes USING(noteId)
WHERE
attributes.name = 'hide_in_autocomplete'
AND attributes.isDeleted = 0
AND notes.isDeleted = 0`);
notes.forEach(note => {
note.hideInAutocomplete = !!note.hideInAutocomplete;
note.isProtected = !!note.isProtected;
});
res.send({
instanceName: config.General ? config.General.instanceName : null,
noteTree: noteTree,
notes: notes,
hiddenInAutocomplete: hiddenInAutocomplete,
start_note_path: await options.getOption('start_note_path')
});
}));