refactorings in relation map related to noteId handling and storage

This commit is contained in:
azivner 2018-11-14 14:52:05 +01:00
parent 040bb13800
commit a334f08782
3 changed files with 45 additions and 23 deletions

View File

@ -8,6 +8,7 @@ const $content = $("#note-revision-content");
const $title = $("#note-revision-title"); const $title = $("#note-revision-title");
let revisionItems = []; let revisionItems = [];
let note;
async function showCurrentNoteRevisions() { async function showCurrentNoteRevisions() {
await showNoteRevisionsDialog(noteDetailService.getCurrentNoteId()); await showNoteRevisionsDialog(noteDetailService.getCurrentNoteId());
@ -21,6 +22,7 @@ async function showNoteRevisionsDialog(noteId, noteRevisionId) {
$list.empty(); $list.empty();
$content.empty(); $content.empty();
note = noteDetailService.getCurrentNote();
revisionItems = await server.get('notes/' + noteId + '/revisions'); revisionItems = await server.get('notes/' + noteId + '/revisions');
for (const item of revisionItems) { for (const item of revisionItems) {
@ -51,12 +53,15 @@ $list.on('change', () => {
$title.html(revisionItem.title); $title.html(revisionItem.title);
if (revisionItem.type === 'text') { if (note.type === 'text') {
$content.html(revisionItem.content); $content.html(revisionItem.content);
} }
else if (revisionItem.type === 'code') { else if (note.type === 'code') {
$content.html($("<pre>").text(revisionItem.content)); $content.html($("<pre>").text(revisionItem.content));
} }
else {
$content.text("Preview isn't available for this note type.");
}
}); });
$(document).on('click', "a[data-action='note-revision']", event => { $(document).on('click', "a[data-action='note-revision']", event => {

View File

@ -91,6 +91,14 @@ function loadMapData() {
} }
} }
function noteIdToId(noteId) {
return "note-" + noteId;
}
function idToNoteId(id) {
return id.substr(5);
}
async function show() { async function show() {
$component.show(); $component.show();
@ -109,7 +117,7 @@ async function show() {
} }
async function loadNotesAndRelations() { async function loadNotesAndRelations() {
const noteIds = mapData.notes.map(note => note.id); const noteIds = mapData.notes.map(note => note.noteId);console.log(noteIds);
const data = await server.post("notes/relation-map", {noteIds}); const data = await server.post("notes/relation-map", {noteIds});
relations = []; relations = [];
@ -131,7 +139,7 @@ async function loadNotesAndRelations() {
relations.push(relation); relations.push(relation);
} }
mapData.notes = mapData.notes.filter(note => note.id in data.noteTitles); mapData.notes = mapData.notes.filter(note => note.noteId in data.noteTitles);
// delete all endpoints and connections // delete all endpoints and connections
// this is done at this point (after async operations) to reduce flicker to the minimum // this is done at this point (after async operations) to reduce flicker to the minimum
@ -139,9 +147,9 @@ async function loadNotesAndRelations() {
jsPlumbInstance.batch(async function () { jsPlumbInstance.batch(async function () {
for (const note of mapData.notes) { for (const note of mapData.notes) {
const title = data.noteTitles[note.id]; const title = data.noteTitles[note.noteId];
await createNoteBox(note.id, title, note.x, note.y); await createNoteBox(note.noteId, title, note.x, note.y);
} }
for (const relation of relations) { for (const relation of relations) {
@ -150,8 +158,8 @@ async function loadNotesAndRelations() {
} }
const connection = jsPlumbInstance.connect({ const connection = jsPlumbInstance.connect({
source: relation.sourceNoteId, source: noteIdToId(relation.sourceNoteId),
target: relation.targetNoteId, target: noteIdToId(relation.targetNoteId),
type: relation.type type: relation.type
}); });
@ -170,8 +178,8 @@ async function loadNotesAndRelations() {
for (const link of data.links) { for (const link of data.links) {
jsPlumbInstance.connect({ jsPlumbInstance.connect({
source: link.sourceNoteId, source: noteIdToId(link.sourceNoteId),
target: link.targetNoteId, target: noteIdToId(link.targetNoteId),
type: 'link' type: 'link'
}); });
} }
@ -195,9 +203,9 @@ function initPanZoom() {
x -= 80; x -= 80;
y -= 15; y -= 15;
createNoteBox(clipboard.id, clipboard.title, x, y); createNoteBox(clipboard.noteId, clipboard.title, x, y);
mapData.notes.push({ id: clipboard.id, x, y }); mapData.notes.push({ noteId: clipboard.noteId, x, y });
clipboard = null; clipboard = null;
} }
@ -337,8 +345,8 @@ async function connectionCreatedHandler(info, originalEvent) {
return; return;
} }
const targetNoteId = connection.target.id; const targetNoteId = idToNoteId(connection.target.id);
const sourceNoteId = connection.source.id; const sourceNoteId = idToNoteId(connection.source.id);
const relationExists = relations.some(rel => const relationExists = relations.some(rel =>
rel.targetNoteId === targetNoteId rel.targetNoteId === targetNoteId
@ -382,7 +390,7 @@ async function noteContextMenuHandler(event, cmd) {
jsPlumbInstance.remove(noteId); jsPlumbInstance.remove(noteId);
mapData.notes = mapData.notes.filter(note => note.id !== noteId); mapData.notes = mapData.notes.filter(note => note.noteId !== noteId);
relations = relations.filter(relation => relation.sourceNoteId !== noteId && relation.targetNoteId !== noteId); relations = relations.filter(relation => relation.sourceNoteId !== noteId && relation.targetNoteId !== noteId);
@ -408,11 +416,11 @@ function saveData() {
noteDetailService.noteChanged(); noteDetailService.noteChanged();
} }
async function createNoteBox(id, title, x, y) { async function createNoteBox(noteId, title, x, y) {
const $noteBox = $("<div>") const $noteBox = $("<div>")
.addClass("note-box") .addClass("note-box")
.prop("id", id) .prop("id", noteIdToId(noteId))
.append($("<span>").addClass("title").html(await linkService.createNoteLink(id, title))) .append($("<span>").addClass("title").html(await linkService.createNoteLink(noteId, title)).append(`[${Math.floor(x)}, ${Math.floor(y)}]`))
.append($("<div>").addClass("endpoint").attr("title", "Start dragging relations from here and drop them on another note.")) .append($("<div>").addClass("endpoint").attr("title", "Start dragging relations from here and drop them on another note."))
.css("left", x + "px") .css("left", x + "px")
.css("top", y + "px"); .css("top", y + "px");
@ -423,10 +431,12 @@ async function createNoteBox(id, title, x, y) {
start: params => {}, start: params => {},
drag: params => {}, drag: params => {},
stop: params => { stop: params => {
const note = mapData.notes.find(note => note.id === params.el.id); const noteId = idToNoteId(params.el.id);
const note = mapData.notes.find(note => note.noteId === noteId);
if (!note) { if (!note) {
console.error(`Note ${params.el.id} not found!`); console.error(`Note ${noteId} not found!`);
return; return;
} }
@ -477,7 +487,7 @@ $createChildNote.click(async () => {
// no need to wait for it to finish // no need to wait for it to finish
treeService.reload(); treeService.reload();
clipboard = { id: note.noteId, title }; clipboard = { noteId: note.noteId, title };
}); });
function getZoom() { function getZoom() {
@ -557,7 +567,11 @@ $centerButton.click(() => {
let averageX = totalX / mapData.notes.length; let averageX = totalX / mapData.notes.length;
let averageY = totalY / mapData.notes.length; let averageY = totalY / mapData.notes.length;
pzInstance.moveTo(averageX, averageY); const $noteBox = $("#C1I7GPA8ORO4");
console.log($noteBox);
pzInstance.centerOn($noteBox[0], $relationMapContainer[0]);
}); });
$component.on("drop", dropNoteOntoRelationMapHandler); $component.on("drop", dropNoteOntoRelationMapHandler);

View File

@ -49,9 +49,12 @@ function setupTooltip() {
} }
}); });
$(document).on("mouseleave", "a", async function() { $(document).on("mouseleave", "a", function() {
$(this).tooltip('hide'); $(this).tooltip('hide');
}); });
// close any tooltip after click, this fixes the problem that sometimes tooltips remained on the screen
$(document).on("click", () => $('[rel=tooltip]').tooltip("hide"));
} }
async function renderTooltip(note, attributes) { async function renderTooltip(note, attributes) {