| 
									
										
										
										
											2018-03-25 13:41:29 -04:00
										 |  |  | import contextMenuService from './context_menu.js'; | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  | import dragAndDropSetup from './drag_and_drop.js'; | 
					
						
							| 
									
										
										
										
											2018-03-25 13:41:29 -04:00
										 |  |  | import linkService from './link.js'; | 
					
						
							|  |  |  | import messagingService from './messaging.js'; | 
					
						
							|  |  |  | import noteDetailService from './note_detail.js'; | 
					
						
							| 
									
										
										
										
											2018-03-25 21:16:57 -04:00
										 |  |  | import protectedSessionHolder from './protected_session_holder.js'; | 
					
						
							| 
									
										
										
										
											2018-04-01 20:33:10 -04:00
										 |  |  | import treeChangesService from './branches.js'; | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  | import treeUtils from './tree_utils.js'; | 
					
						
							|  |  |  | import utils from './utils.js'; | 
					
						
							|  |  |  | import server from './server.js'; | 
					
						
							| 
									
										
										
										
											2018-03-25 13:41:29 -04:00
										 |  |  | import recentNotesDialog from '../dialogs/recent_notes.js'; | 
					
						
							| 
									
										
										
										
											2018-03-25 12:29:00 -04:00
										 |  |  | import treeCache from './tree_cache.js'; | 
					
						
							| 
									
										
										
										
											2018-03-25 21:29:35 -04:00
										 |  |  | import infoService from "./info.js"; | 
					
						
							| 
									
										
										
										
											2018-03-26 23:18:50 -04:00
										 |  |  | import treeBuilder from "./tree_builder.js"; | 
					
						
							| 
									
										
										
										
											2018-03-26 23:25:54 -04:00
										 |  |  | import treeKeyBindings from "./tree_keybindings.js"; | 
					
						
							| 
									
										
										
										
											2018-03-25 23:25:17 -04:00
										 |  |  | import Branch from '../entities/branch.js'; | 
					
						
							| 
									
										
										
										
											2018-03-31 22:23:40 -04:00
										 |  |  | import NoteShort from '../entities/note_short.js'; | 
					
						
							| 
									
										
										
										
											2017-11-21 20:04:06 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  | const $tree = $("#tree"); | 
					
						
							|  |  |  | const $parentList = $("#parent-list"); | 
					
						
							|  |  |  | const $parentListList = $("#parent-list-inner"); | 
					
						
							|  |  |  | const $createTopLevelNoteButton = $("#create-top-level-note-button"); | 
					
						
							|  |  |  | const $collapseTreeButton = $("#collapse-tree-button"); | 
					
						
							|  |  |  | const $scrollToCurrentNoteButton = $("#scroll-to-current-note-button"); | 
					
						
							| 
									
										
										
										
											2018-02-24 21:23:04 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  | let startNotePath = null; | 
					
						
							| 
									
										
										
										
											2018-03-12 20:00:19 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  | // note that if you want to access data like noteId or isProtected, you need to go into "data" property
 | 
					
						
							|  |  |  | function getCurrentNode() { | 
					
						
							|  |  |  |     return $tree.fancytree("getActiveNode"); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2017-11-23 20:12:39 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  | function getCurrentNotePath() { | 
					
						
							|  |  |  |     const node = getCurrentNode(); | 
					
						
							| 
									
										
										
										
											2017-12-23 11:02:38 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  |     return treeUtils.getNotePath(node); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2017-11-28 10:17:30 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 14:49:20 -04:00
										 |  |  | async function getNodesByBranchId(branchId) { | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  |     utils.assertArguments(branchId); | 
					
						
							| 
									
										
										
										
											2017-11-28 10:17:30 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 14:49:20 -04:00
										 |  |  |     const branch = await treeCache.getBranch(branchId); | 
					
						
							| 
									
										
										
										
											2017-12-23 11:02:38 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  |     return getNodesByNoteId(branch.noteId).filter(node => node.data.branchId === branchId); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2017-11-23 20:12:39 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  | function getNodesByNoteId(noteId) { | 
					
						
							|  |  |  |     utils.assertArguments(noteId); | 
					
						
							| 
									
										
										
										
											2017-12-23 11:02:38 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  |     const list = getTree().getNodesByRef(noteId); | 
					
						
							|  |  |  |     return list ? list : []; // if no nodes with this refKey are found, fancy tree returns null
 | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2017-11-28 10:17:30 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 14:49:20 -04:00
										 |  |  | async function setPrefix(branchId, prefix) { | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  |     utils.assertArguments(branchId); | 
					
						
							| 
									
										
										
										
											2017-11-28 10:17:30 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 14:49:20 -04:00
										 |  |  |     const branch = await treeCache.getBranch(branchId); | 
					
						
							| 
									
										
										
										
											2018-03-12 23:14:09 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 14:49:20 -04:00
										 |  |  |     branch.prefix = prefix; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     for (const node of await getNodesByBranchId(branchId)) { | 
					
						
							|  |  |  |         await setNodeTitleWithPrefix(node); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2018-03-12 23:14:09 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 14:49:20 -04:00
										 |  |  | async function setNodeTitleWithPrefix(node) { | 
					
						
							| 
									
										
										
										
											2018-03-26 21:50:47 -04:00
										 |  |  |     const noteTitle = await treeUtils.getNoteTitle(node.data.noteId); | 
					
						
							| 
									
										
										
										
											2018-03-25 14:49:20 -04:00
										 |  |  |     const branch = await treeCache.getBranch(node.data.branchId); | 
					
						
							| 
									
										
										
										
											2018-03-12 23:14:09 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  |     const prefix = branch.prefix; | 
					
						
							| 
									
										
										
										
											2017-11-28 10:17:30 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  |     const title = (prefix ? (prefix + " - ") : "") + noteTitle; | 
					
						
							| 
									
										
										
										
											2017-12-23 11:02:38 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  |     node.setTitle(utils.escapeHtml(title)); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2018-03-25 10:06:14 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  | async function expandToNote(notePath, expandOpts) { | 
					
						
							|  |  |  |     utils.assertArguments(notePath); | 
					
						
							| 
									
										
										
										
											2017-12-23 12:19:15 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  |     const runPath = await getRunPath(notePath); | 
					
						
							| 
									
										
										
										
											2017-12-03 17:46:56 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  |     const noteId = treeUtils.getNoteIdFromNotePath(notePath); | 
					
						
							| 
									
										
										
										
											2017-12-03 17:46:56 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-05-26 16:16:34 -04:00
										 |  |  |     let parentNoteId = 'none'; | 
					
						
							| 
									
										
										
										
											2017-12-03 17:46:56 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  |     for (const childNoteId of runPath) { | 
					
						
							|  |  |  |         const node = getNodesByNoteId(childNoteId).find(node => node.data.parentNoteId === parentNoteId); | 
					
						
							| 
									
										
										
										
											2017-12-03 17:46:56 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  |         if (childNoteId === noteId) { | 
					
						
							|  |  |  |             return node; | 
					
						
							| 
									
										
										
										
											2017-12-03 17:46:56 -05:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  |         else { | 
					
						
							|  |  |  |             await node.setExpanded(true, expandOpts); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         parentNoteId = childNoteId; | 
					
						
							| 
									
										
										
										
											2018-01-15 20:54:22 -05:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2018-01-15 20:54:22 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  | async function activateNode(notePath) { | 
					
						
							|  |  |  |     utils.assertArguments(notePath); | 
					
						
							| 
									
										
										
										
											2018-01-15 20:54:22 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  |     const node = await expandToNote(notePath); | 
					
						
							| 
									
										
										
										
											2018-01-15 20:54:22 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  |     await node.setActive(); | 
					
						
							| 
									
										
										
										
											2018-01-01 18:53:52 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  |     clearSelectedNodes(); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2017-12-03 17:46:56 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  | /** | 
					
						
							|  |  |  |  * Accepts notePath and tries to resolve it. Part of the path might not be valid because of note moving (which causes | 
					
						
							|  |  |  |  * path change) or other corruption, in that case this will try to get some other valid path to the correct note. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | async function getRunPath(notePath) { | 
					
						
							|  |  |  |     utils.assertArguments(notePath); | 
					
						
							| 
									
										
										
										
											2017-12-23 11:02:38 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  |     const path = notePath.split("/").reverse(); | 
					
						
							| 
									
										
										
										
											2018-05-26 16:16:34 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (!path.includes("root")) { | 
					
						
							|  |  |  |         path.push('root'); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2017-11-19 08:47:22 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  |     const effectivePath = []; | 
					
						
							|  |  |  |     let childNoteId = null; | 
					
						
							|  |  |  |     let i = 0; | 
					
						
							| 
									
										
										
										
											2017-11-19 18:16:50 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  |     while (true) { | 
					
						
							|  |  |  |         if (i >= path.length) { | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2017-11-30 00:02:32 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  |         const parentNoteId = path[i++]; | 
					
						
							| 
									
										
										
										
											2017-11-19 11:28:46 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  |         if (childNoteId !== null) { | 
					
						
							| 
									
										
										
										
											2018-03-25 14:49:20 -04:00
										 |  |  |             const child = await treeCache.getNote(childNoteId); | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  |             const parents = await child.getParentNotes(); | 
					
						
							| 
									
										
										
										
											2017-11-19 11:28:46 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  |             if (!parents) { | 
					
						
							| 
									
										
										
										
											2018-03-25 13:41:29 -04:00
										 |  |  |                 messagingService.logError("No parents found for " + childNoteId); | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  |                 return; | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2017-11-26 21:00:42 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  |             if (!parents.some(p => p.noteId === parentNoteId)) { | 
					
						
							|  |  |  |                 console.log(utils.now(), "Did not find parent " + parentNoteId + " for child " + childNoteId); | 
					
						
							| 
									
										
										
										
											2017-11-19 11:28:46 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  |                 if (parents.length > 0) { | 
					
						
							|  |  |  |                     console.log(utils.now(), "Available parents:", parents); | 
					
						
							| 
									
										
										
										
											2017-12-23 11:02:38 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  |                     const someNotePath = await getSomeNotePath(parents[0]); | 
					
						
							| 
									
										
										
										
											2017-12-23 12:19:15 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  |                     if (someNotePath) { // in case it's root the path may be empty
 | 
					
						
							|  |  |  |                         const pathToRoot = someNotePath.split("/").reverse(); | 
					
						
							| 
									
										
										
										
											2017-11-19 18:16:50 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  |                         for (const noteId of pathToRoot) { | 
					
						
							|  |  |  |                             effectivePath.push(noteId); | 
					
						
							| 
									
										
										
										
											2017-11-30 00:02:32 -05:00
										 |  |  |                         } | 
					
						
							| 
									
										
										
										
											2017-11-19 11:28:46 -05:00
										 |  |  |                     } | 
					
						
							| 
									
										
										
										
											2017-11-19 08:47:22 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  |                     break; | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |                 else { | 
					
						
							| 
									
										
										
										
											2018-03-25 13:41:29 -04:00
										 |  |  |                     messagingService.logError("No parents, can't activate node."); | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  |                     return; | 
					
						
							|  |  |  |                 } | 
					
						
							| 
									
										
										
										
											2017-11-19 08:47:22 -05:00
										 |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2017-12-03 17:46:56 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-05-26 16:16:34 -04:00
										 |  |  |         if (parentNoteId === 'none') { | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  |             break; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         else { | 
					
						
							|  |  |  |             effectivePath.push(parentNoteId); | 
					
						
							|  |  |  |             childNoteId = parentNoteId; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2017-11-19 08:47:22 -05:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  |     return effectivePath.reverse(); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2017-12-23 11:02:38 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  | async function showParentList(noteId, node) { | 
					
						
							|  |  |  |     utils.assertArguments(noteId, node); | 
					
						
							| 
									
										
										
										
											2017-11-21 20:04:06 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 14:49:20 -04:00
										 |  |  |     const note = await treeCache.getNote(noteId); | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  |     const parents = await note.getParentNotes(); | 
					
						
							| 
									
										
										
										
											2017-11-22 23:16:54 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  |     if (parents.length <= 1) { | 
					
						
							|  |  |  |         $parentList.hide(); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     else { | 
					
						
							|  |  |  |         $parentList.show(); | 
					
						
							|  |  |  |         $parentListList.empty(); | 
					
						
							| 
									
										
										
										
											2017-11-21 20:04:06 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  |         for (const parentNote of parents) { | 
					
						
							|  |  |  |             const parentNotePath = await getSomeNotePath(parentNote); | 
					
						
							|  |  |  |             // this is to avoid having root notes leading '/'
 | 
					
						
							|  |  |  |             const notePath = parentNotePath ? (parentNotePath + '/' + noteId) : noteId; | 
					
						
							| 
									
										
										
										
											2018-03-26 21:50:47 -04:00
										 |  |  |             const title = await treeUtils.getNotePathTitle(notePath); | 
					
						
							| 
									
										
										
										
											2017-11-21 20:04:06 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  |             let item; | 
					
						
							| 
									
										
										
										
											2017-11-21 20:04:06 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  |             if (node.getParent().data.noteId === parentNote.noteId) { | 
					
						
							|  |  |  |                 item = $("<span/>").attr("title", "Current note").append(title); | 
					
						
							| 
									
										
										
										
											2017-11-21 20:04:06 -05:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  |             else { | 
					
						
							| 
									
										
										
										
											2018-04-19 20:59:44 -04:00
										 |  |  |                 item = await linkService.createNoteLink(notePath, title); | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  |             } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             $parentListList.append($("<li/>").append(item)); | 
					
						
							| 
									
										
										
										
											2017-11-21 20:04:06 -05:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2017-11-21 20:04:06 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  | async function getSomeNotePath(note) { | 
					
						
							|  |  |  |     utils.assertArguments(note); | 
					
						
							| 
									
										
										
										
											2017-11-21 20:04:06 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  |     const path = []; | 
					
						
							| 
									
										
										
										
											2017-11-21 20:04:06 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  |     let cur = note; | 
					
						
							| 
									
										
										
										
											2017-11-21 20:04:06 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  |     while (cur.noteId !== 'root') { | 
					
						
							|  |  |  |         path.push(cur.noteId); | 
					
						
							| 
									
										
										
										
											2018-03-24 23:00:12 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  |         const parents = await cur.getParentNotes(); | 
					
						
							| 
									
										
										
										
											2017-12-19 21:40:48 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  |         if (!parents.length) { | 
					
						
							| 
									
										
										
										
											2018-03-25 21:29:35 -04:00
										 |  |  |             infoService.throwError("Can't find parents for " + cur); | 
					
						
							| 
									
										
										
										
											2017-11-21 20:04:06 -05:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  |         cur = parents[0]; | 
					
						
							| 
									
										
										
										
											2017-11-21 20:04:06 -05:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  |     return path.reverse().join('/'); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2017-11-04 19:28:49 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  | async function setExpandedToServer(branchId, isExpanded) { | 
					
						
							|  |  |  |     utils.assertArguments(branchId); | 
					
						
							| 
									
										
										
										
											2017-11-04 19:28:49 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  |     const expandedNum = isExpanded ? 1 : 0; | 
					
						
							| 
									
										
										
										
											2017-12-23 11:02:38 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-01 20:33:10 -04:00
										 |  |  |     await server.put('branches/' + branchId + '/expanded/' + expandedNum); | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2017-11-19 18:16:50 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  | function setCurrentNotePathToHash(node) { | 
					
						
							|  |  |  |     utils.assertArguments(node); | 
					
						
							| 
									
										
										
										
											2017-11-19 18:16:50 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  |     const currentNotePath = treeUtils.getNotePath(node); | 
					
						
							|  |  |  |     const currentBranchId = node.data.branchId; | 
					
						
							| 
									
										
										
										
											2017-11-19 18:16:50 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  |     document.location.hash = currentNotePath; | 
					
						
							| 
									
										
										
										
											2018-01-01 17:59:59 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 13:41:29 -04:00
										 |  |  |     recentNotesDialog.addRecentNote(currentBranchId, currentNotePath); | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2018-01-01 17:59:59 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  | function getSelectedNodes(stopOnParents = false) { | 
					
						
							|  |  |  |     return getTree().getSelectedNodes(stopOnParents); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2018-01-01 18:53:52 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  | function clearSelectedNodes() { | 
					
						
							|  |  |  |     for (const selectedNode of getSelectedNodes()) { | 
					
						
							|  |  |  |         selectedNode.setSelected(false); | 
					
						
							| 
									
										
										
										
											2018-01-01 17:59:59 -05:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  |     const currentNode = getCurrentNode(); | 
					
						
							| 
									
										
										
										
											2017-12-23 11:02:38 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  |     if (currentNode) { | 
					
						
							|  |  |  |         currentNode.setSelected(true); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2017-11-04 19:28:49 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 14:49:20 -04:00
										 |  |  | async function treeInitialized() { | 
					
						
							|  |  |  |     const noteId = treeUtils.getNoteIdFromNotePath(startNotePath); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 22:37:02 -04:00
										 |  |  |     if (!await treeCache.getNote(noteId)) { | 
					
						
							| 
									
										
										
										
											2018-03-25 14:49:20 -04:00
										 |  |  |         // note doesn't exist so don't try to activate it
 | 
					
						
							|  |  |  |         startNotePath = null; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (startNotePath) { | 
					
						
							| 
									
										
										
										
											2018-03-26 23:48:45 -04:00
										 |  |  |         await activateNode(startNotePath); | 
					
						
							| 
									
										
										
										
											2018-03-25 14:49:20 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |         // looks like this this doesn't work when triggered immediatelly after activating node
 | 
					
						
							|  |  |  |         // so waiting a second helps
 | 
					
						
							|  |  |  |         setTimeout(scrollToCurrentNote, 1000); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-16 20:40:18 -04:00
										 |  |  | function initFancyTree(tree) { | 
					
						
							|  |  |  |     utils.assertArguments(tree); | 
					
						
							| 
									
										
										
										
											2018-01-01 18:29:06 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  |     $tree.fancytree({ | 
					
						
							|  |  |  |         autoScroll: true, | 
					
						
							|  |  |  |         keyboard: false, // we takover keyboard handling in the hotkeys plugin
 | 
					
						
							|  |  |  |         extensions: ["hotkeys", "filter", "dnd", "clones"], | 
					
						
							| 
									
										
										
										
											2018-04-16 20:40:18 -04:00
										 |  |  |         source: tree, | 
					
						
							| 
									
										
										
										
											2018-04-08 09:25:35 -04:00
										 |  |  |         scrollParent: $tree, | 
					
						
							| 
									
										
										
										
											2018-05-26 16:16:34 -04:00
										 |  |  |         minExpandLevel: 2, // root can't be collapsed
 | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  |         click: (event, data) => { | 
					
						
							|  |  |  |             const targetType = data.targetType; | 
					
						
							|  |  |  |             const node = data.node; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             if (targetType === 'title' || targetType === 'icon') { | 
					
						
							|  |  |  |                 if (!event.ctrlKey) { | 
					
						
							|  |  |  |                     node.setActive(); | 
					
						
							|  |  |  |                     node.setSelected(true); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                     clearSelectedNodes(); | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |                 else { | 
					
						
							|  |  |  |                     node.setSelected(!node.isSelected()); | 
					
						
							| 
									
										
										
										
											2018-01-03 22:49:53 -05:00
										 |  |  |                 } | 
					
						
							| 
									
										
										
										
											2017-12-25 21:47:32 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  |                 return false; | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  |             } | 
					
						
							|  |  |  |         }, | 
					
						
							|  |  |  |         activate: (event, data) => { | 
					
						
							|  |  |  |             const node = data.node.data; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             setCurrentNotePathToHash(data.node); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 13:41:29 -04:00
										 |  |  |             noteDetailService.switchToNote(node.noteId); | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |             showParentList(node.noteId, data.node); | 
					
						
							|  |  |  |         }, | 
					
						
							| 
									
										
										
										
											2018-03-26 23:25:54 -04:00
										 |  |  |         expand: (event, data) => setExpandedToServer(data.node.data.branchId, true), | 
					
						
							|  |  |  |         collapse: (event, data) => setExpandedToServer(data.node.data.branchId, false), | 
					
						
							| 
									
										
										
										
											2018-03-26 23:48:45 -04:00
										 |  |  |         init: (event, data) => treeInitialized(), // don't collapse to short form
 | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  |         hotkeys: { | 
					
						
							| 
									
										
										
										
											2018-03-26 23:25:54 -04:00
										 |  |  |             keydown: treeKeyBindings | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  |         }, | 
					
						
							|  |  |  |         filter: { | 
					
						
							|  |  |  |             autoApply: true,   // Re-apply last filter if lazy data is loaded
 | 
					
						
							|  |  |  |             autoExpand: true, // Expand all branches that contain matches while filtered
 | 
					
						
							|  |  |  |             counter: false,     // Show a badge with number of matching child nodes near parent icons
 | 
					
						
							|  |  |  |             fuzzy: false,      // Match single characters in order, e.g. 'fb' will match 'FooBar'
 | 
					
						
							|  |  |  |             hideExpandedCounter: true,  // Hide counter badge if parent is expanded
 | 
					
						
							|  |  |  |             hideExpanders: false,       // Hide expanders if all child nodes are hidden by filter
 | 
					
						
							|  |  |  |             highlight: true,   // Highlight matches by wrapping inside <mark> tags
 | 
					
						
							|  |  |  |             leavesOnly: false, // Match end nodes only
 | 
					
						
							|  |  |  |             nodata: true,      // Display a 'no data' status node if result is empty
 | 
					
						
							|  |  |  |             mode: "hide"       // Grayout unmatched nodes (pass "hide" to remove unmatched node instead)
 | 
					
						
							|  |  |  |         }, | 
					
						
							|  |  |  |         dnd: dragAndDropSetup, | 
					
						
							| 
									
										
										
										
											2018-03-25 19:49:33 -04:00
										 |  |  |         lazyLoad: function(event, data) { | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  |             const noteId = data.node.data.noteId; | 
					
						
							| 
									
										
										
										
											2018-03-26 23:18:50 -04:00
										 |  |  |             data.result = treeCache.getNote(noteId).then(note => treeBuilder.prepareBranch(note)); | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  |         }, | 
					
						
							|  |  |  |         clones: { | 
					
						
							|  |  |  |             highlightActiveClones: true | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2017-11-04 19:28:49 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-01 17:41:28 -04:00
										 |  |  |     $tree.contextmenu(contextMenuService.contextMenuOptions); | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2018-01-01 17:59:59 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  | function getTree() { | 
					
						
							|  |  |  |     return $tree.fancytree('getTree'); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2018-03-12 23:14:09 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  | async function reload() { | 
					
						
							|  |  |  |     const notes = await loadTree(); | 
					
						
							| 
									
										
										
										
											2018-03-12 23:14:09 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  |     // this will also reload the note content
 | 
					
						
							|  |  |  |     await getTree().reload(notes); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2018-03-12 23:27:21 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  | function getNotePathFromAddress() { | 
					
						
							|  |  |  |     return document.location.hash.substr(1); // strip initial #
 | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2018-03-12 23:27:21 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  | async function loadTree() { | 
					
						
							|  |  |  |     const resp = await server.get('tree'); | 
					
						
							| 
									
										
										
										
											2018-04-02 21:47:46 -04:00
										 |  |  |     startNotePath = resp.startNotePath; | 
					
						
							| 
									
										
										
										
											2018-03-12 23:14:09 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  |     if (document.location.hash) { | 
					
						
							|  |  |  |         startNotePath = getNotePathFromAddress(); | 
					
						
							| 
									
										
										
										
											2017-11-22 19:58:56 -05:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-16 23:13:33 -04:00
										 |  |  |     return await treeBuilder.prepareTree(resp.notes, resp.branches, resp.relations); | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2017-11-05 09:52:28 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  | function collapseTree(node = null) { | 
					
						
							|  |  |  |     if (!node) { | 
					
						
							|  |  |  |         node = $tree.fancytree("getRootNode"); | 
					
						
							| 
									
										
										
										
											2017-12-19 19:31:02 -05:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  |     node.setExpanded(false); | 
					
						
							| 
									
										
										
										
											2017-11-04 19:28:49 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  |     node.visit(node => node.setExpanded(false)); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2017-11-04 19:28:49 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  | function scrollToCurrentNote() { | 
					
						
							|  |  |  |     const node = getCurrentNode(); | 
					
						
							| 
									
										
										
										
											2017-12-26 10:00:08 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  |     if (node) { | 
					
						
							|  |  |  |         node.makeVisible({scrollIntoView: true}); | 
					
						
							| 
									
										
										
										
											2017-12-26 10:00:08 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  |         node.setFocus(); | 
					
						
							| 
									
										
										
										
											2017-11-04 19:28:49 -04:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2017-11-04 19:28:49 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  | function setBranchBackgroundBasedOnProtectedStatus(noteId) { | 
					
						
							|  |  |  |     getNodesByNoteId(noteId).map(node => node.toggleClass("protected", !!node.data.isProtected)); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2017-11-04 19:28:49 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  | function setProtected(noteId, isProtected) { | 
					
						
							|  |  |  |     getNodesByNoteId(noteId).map(node => node.data.isProtected = isProtected); | 
					
						
							| 
									
										
										
										
											2017-11-04 19:28:49 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  |     setBranchBackgroundBasedOnProtectedStatus(noteId); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2017-11-04 19:28:49 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 14:49:20 -04:00
										 |  |  | async function setNoteTitle(noteId, title) { | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  |     utils.assertArguments(noteId); | 
					
						
							| 
									
										
										
										
											2017-11-22 19:58:56 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 22:37:02 -04:00
										 |  |  |     const note = await treeCache.getNote(noteId); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     note.title = title; | 
					
						
							| 
									
										
										
										
											2017-11-22 23:16:54 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 14:49:20 -04:00
										 |  |  |     for (const clone of getNodesByNoteId(noteId)) { | 
					
						
							|  |  |  |         await setNodeTitleWithPrefix(clone); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2017-11-22 23:16:54 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  | async function createNewTopLevelNote() { | 
					
						
							|  |  |  |     const rootNode = $tree.fancytree("getRootNode"); | 
					
						
							| 
									
										
										
										
											2017-12-23 11:02:38 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  |     await createNote(rootNode, "root", "into"); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2017-11-22 23:16:54 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  | async function createNote(node, parentNoteId, target, isProtected) { | 
					
						
							|  |  |  |     utils.assertArguments(node, parentNoteId, target); | 
					
						
							| 
									
										
										
										
											2017-11-22 23:16:54 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  |     // if isProtected isn't available (user didn't enter password yet), then note is created as unencrypted
 | 
					
						
							|  |  |  |     // but this is quite weird since user doesn't see WHERE the note is being created so it shouldn't occur often
 | 
					
						
							| 
									
										
										
										
											2018-03-25 21:16:57 -04:00
										 |  |  |     if (!isProtected || !protectedSessionHolder.isProtectedSessionAvailable()) { | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  |         isProtected = false; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2017-11-22 23:16:54 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  |     const newNoteName = "new note"; | 
					
						
							| 
									
										
										
										
											2018-03-25 00:20:55 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-01 11:42:12 -04:00
										 |  |  |     const {note, branch} = await server.post('notes/' + parentNoteId + '/children', { | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  |         title: newNoteName, | 
					
						
							|  |  |  |         target: target, | 
					
						
							|  |  |  |         target_branchId: node.data.branchId, | 
					
						
							|  |  |  |         isProtected: isProtected | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2018-03-25 00:20:55 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-01 11:42:12 -04:00
										 |  |  |     const noteEntity = new NoteShort(treeCache, note); | 
					
						
							|  |  |  |     const branchEntity = new Branch(treeCache, branch); | 
					
						
							| 
									
										
										
										
											2018-01-28 10:37:43 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-01 11:42:12 -04:00
										 |  |  |     treeCache.add(noteEntity, branchEntity); | 
					
						
							| 
									
										
										
										
											2017-11-22 23:16:54 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 13:41:29 -04:00
										 |  |  |     noteDetailService.newNoteCreated(); | 
					
						
							| 
									
										
										
										
											2018-01-16 23:22:13 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  |     const newNode = { | 
					
						
							|  |  |  |         title: newNoteName, | 
					
						
							| 
									
										
										
										
											2018-04-01 11:42:12 -04:00
										 |  |  |         noteId: branchEntity.noteId, | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  |         parentNoteId: parentNoteId, | 
					
						
							| 
									
										
										
										
											2018-04-01 11:42:12 -04:00
										 |  |  |         refKey: branchEntity.noteId, | 
					
						
							|  |  |  |         branchId: branchEntity.branchId, | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  |         isProtected: isProtected, | 
					
						
							| 
									
										
										
										
											2018-04-01 11:42:12 -04:00
										 |  |  |         extraClasses: await treeBuilder.getExtraClasses(noteEntity) | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  |     }; | 
					
						
							| 
									
										
										
										
											2017-11-22 23:16:54 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  |     if (target === 'after') { | 
					
						
							|  |  |  |         await node.appendSibling(newNode).setActive(true); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     else if (target === 'into') { | 
					
						
							|  |  |  |         if (!node.getChildren() && node.isFolder()) { | 
					
						
							|  |  |  |             await node.setExpanded(); | 
					
						
							| 
									
										
										
										
											2017-11-22 23:16:54 -05:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2018-01-16 23:22:13 -05:00
										 |  |  |         else { | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  |             node.addChildren(newNode); | 
					
						
							| 
									
										
										
										
											2018-01-16 23:22:13 -05:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2017-11-22 23:16:54 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  |         await node.getLastChild().setActive(true); | 
					
						
							| 
									
										
										
										
											2018-02-13 23:25:28 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  |         node.folder = true; | 
					
						
							|  |  |  |         node.renderTitle(); | 
					
						
							| 
									
										
										
										
											2017-11-22 23:16:54 -05:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  |     else { | 
					
						
							| 
									
										
										
										
											2018-03-25 21:29:35 -04:00
										 |  |  |         infoService.throwError("Unrecognized target: " + target); | 
					
						
							| 
									
										
										
										
											2018-01-13 17:00:40 -05:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  |     clearSelectedNodes(); // to unmark previously active node
 | 
					
						
							| 
									
										
										
										
											2018-02-12 23:53:00 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 21:29:35 -04:00
										 |  |  |     infoService.showMessage("Created!"); | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2018-02-24 21:23:04 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  | async function sortAlphabetically(noteId) { | 
					
						
							|  |  |  |     await server.put('notes/' + noteId + '/sort'); | 
					
						
							| 
									
										
										
										
											2018-03-13 19:31:07 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  |     await reload(); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2017-12-18 23:41:13 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-26 22:29:14 -04:00
										 |  |  | async function showTree() { | 
					
						
							|  |  |  |     const tree = await loadTree(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     initFancyTree(tree); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 21:16:57 -04:00
										 |  |  | messagingService.subscribeToMessages(syncData => { | 
					
						
							|  |  |  |     if (syncData.some(sync => sync.entityName === 'branches') | 
					
						
							|  |  |  |         || syncData.some(sync => sync.entityName === 'notes')) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         console.log(utils.now(), "Reloading tree because of background changes"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         reload(); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 22:37:02 -04:00
										 |  |  | utils.bindShortcut('ctrl+o', () => { | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  |     const node = getCurrentNode(); | 
					
						
							|  |  |  |     const parentNoteId = node.data.parentNoteId; | 
					
						
							|  |  |  |     const isProtected = treeUtils.getParentProtectedStatus(node); | 
					
						
							| 
									
										
										
										
											2017-12-18 23:41:13 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  |     createNote(node, parentNoteId, 'after', isProtected); | 
					
						
							|  |  |  | }); | 
					
						
							| 
									
										
										
										
											2017-12-18 23:41:13 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 22:37:02 -04:00
										 |  |  | utils.bindShortcut('ctrl+p', () => { | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  |     const node = getCurrentNode(); | 
					
						
							| 
									
										
										
										
											2017-12-18 23:41:13 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  |     createNote(node, node.data.noteId, 'into', node.data.isProtected); | 
					
						
							|  |  |  | }); | 
					
						
							| 
									
										
										
										
											2017-12-17 16:56:30 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 22:37:02 -04:00
										 |  |  | utils.bindShortcut('ctrl+del', () => { | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  |     const node = getCurrentNode(); | 
					
						
							| 
									
										
										
										
											2017-12-19 19:31:02 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 13:41:29 -04:00
										 |  |  |     treeChangesService.deleteNodes([node]); | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  | }); | 
					
						
							| 
									
										
										
										
											2017-12-19 19:31:02 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 22:37:02 -04:00
										 |  |  | utils.bindShortcut('ctrl+.', scrollToCurrentNote); | 
					
						
							| 
									
										
										
										
											2017-12-19 19:54:55 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  | $(window).bind('hashchange', function() { | 
					
						
							|  |  |  |     const notePath = getNotePathFromAddress(); | 
					
						
							| 
									
										
										
										
											2017-12-19 19:54:55 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  |     if (getCurrentNotePath() !== notePath) { | 
					
						
							|  |  |  |         console.log("Switching to " + notePath + " because of hash change"); | 
					
						
							| 
									
										
										
										
											2017-12-19 19:54:55 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  |         activateNode(notePath); | 
					
						
							| 
									
										
										
										
											2017-12-19 19:54:55 -05:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  | }); | 
					
						
							| 
									
										
										
										
											2017-12-19 19:54:55 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-26 22:11:45 -04:00
										 |  |  | utils.bindShortcut('alt+c', () => collapseTree()); // don't use shortened form since collapseTree() accepts argument
 | 
					
						
							| 
									
										
										
										
											2018-04-13 19:22:12 -04:00
										 |  |  | $collapseTreeButton.click(() => collapseTree()); | 
					
						
							| 
									
										
										
										
											2018-03-26 22:11:45 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  | $createTopLevelNoteButton.click(createNewTopLevelNote); | 
					
						
							|  |  |  | $scrollToCurrentNoteButton.click(scrollToCurrentNote); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | export default { | 
					
						
							|  |  |  |     reload, | 
					
						
							|  |  |  |     collapseTree, | 
					
						
							|  |  |  |     scrollToCurrentNote, | 
					
						
							|  |  |  |     setBranchBackgroundBasedOnProtectedStatus, | 
					
						
							|  |  |  |     setProtected, | 
					
						
							|  |  |  |     expandToNote, | 
					
						
							|  |  |  |     activateNode, | 
					
						
							| 
									
										
										
										
											2018-03-26 21:50:47 -04:00
										 |  |  |     getCurrentNode, | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  |     getCurrentNotePath, | 
					
						
							|  |  |  |     setCurrentNotePathToHash, | 
					
						
							|  |  |  |     setNoteTitle, | 
					
						
							| 
									
										
										
										
											2018-03-26 21:50:47 -04:00
										 |  |  |     setPrefix, | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  |     createNewTopLevelNote, | 
					
						
							|  |  |  |     createNote, | 
					
						
							|  |  |  |     getSelectedNodes, | 
					
						
							| 
									
										
										
										
											2018-03-26 23:25:54 -04:00
										 |  |  |     clearSelectedNodes, | 
					
						
							| 
									
										
										
										
											2018-03-26 22:29:14 -04:00
										 |  |  |     sortAlphabetically, | 
					
						
							|  |  |  |     showTree | 
					
						
							| 
									
										
										
										
											2018-03-25 11:09:17 -04:00
										 |  |  | }; |