| 
									
										
										
										
											2017-11-04 19:38:50 -04:00
										 |  |  | "use strict"; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-04 14:43:20 -04:00
										 |  |  | const addLink = (function() { | 
					
						
							| 
									
										
										
										
											2017-12-21 21:54:25 -05:00
										 |  |  |     const dialogEl = $("#add-link-dialog"); | 
					
						
							|  |  |  |     const formEl = $("#add-link-form"); | 
					
						
							| 
									
										
										
										
											2017-11-04 14:43:20 -04:00
										 |  |  |     const autoCompleteEl = $("#note-autocomplete"); | 
					
						
							|  |  |  |     const linkTitleEl = $("#link-title"); | 
					
						
							| 
									
										
										
										
											2017-12-21 21:54:25 -05:00
										 |  |  |     const clonePrefixEl = $("#clone-prefix"); | 
					
						
							|  |  |  |     const linkTitleFormGroup = $("#add-link-title-form-group"); | 
					
						
							|  |  |  |     const prefixFormGroup = $("#add-link-prefix-form-group"); | 
					
						
							| 
									
										
										
										
											2018-01-23 20:14:10 -05:00
										 |  |  |     const linkTypeEls = $("input[name='add-link-type']"); | 
					
						
							|  |  |  |     const linkTypeHtmlEl = linkTypeEls.filter('input[value="html"]'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     function setLinkType(linkType) { | 
					
						
							|  |  |  |         linkTypeEls.each(function () { | 
					
						
							|  |  |  |             $(this).prop('checked', $(this).val() === linkType); | 
					
						
							|  |  |  |         }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         linkTypeChanged(); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2017-11-04 14:43:20 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |     function showDialog() { | 
					
						
							| 
									
										
										
										
											2017-11-04 17:03:15 -04:00
										 |  |  |         glob.activeDialog = dialogEl; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-23 20:14:10 -05:00
										 |  |  |         if (noteEditor.getCurrentNoteType() === 'text') { | 
					
						
							|  |  |  |             linkTypeHtmlEl.prop('disabled', false); | 
					
						
							| 
									
										
										
										
											2017-12-21 21:54:25 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-23 20:14:10 -05:00
										 |  |  |             setLinkType('html'); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         else { | 
					
						
							|  |  |  |             linkTypeHtmlEl.prop('disabled', true); | 
					
						
							| 
									
										
										
										
											2017-12-21 21:54:25 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-23 20:14:10 -05:00
										 |  |  |             setLinkType('selected-to-current'); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2017-12-21 21:54:25 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-04 14:43:20 -04:00
										 |  |  |         dialogEl.dialog({ | 
					
						
							|  |  |  |             modal: true, | 
					
						
							| 
									
										
										
										
											2017-12-21 21:54:25 -05:00
										 |  |  |             width: 700 | 
					
						
							| 
									
										
										
										
											2017-11-04 14:43:20 -04:00
										 |  |  |         }); | 
					
						
							| 
									
										
										
										
											2017-09-09 12:06:15 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-04 14:43:20 -04:00
										 |  |  |         autoCompleteEl.val('').focus(); | 
					
						
							| 
									
										
										
										
											2018-01-23 20:14:10 -05:00
										 |  |  |         clonePrefixEl.val(''); | 
					
						
							| 
									
										
										
										
											2017-11-04 14:43:20 -04:00
										 |  |  |         linkTitleEl.val(''); | 
					
						
							| 
									
										
										
										
											2017-09-09 12:06:15 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-04 14:43:20 -04:00
										 |  |  |         function setDefaultLinkTitle(noteId) { | 
					
						
							| 
									
										
										
										
											2017-12-02 13:54:16 -05:00
										 |  |  |             const noteTitle = noteTree.getNoteTitle(noteId); | 
					
						
							| 
									
										
										
										
											2017-09-09 12:06:15 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-04 14:43:20 -04:00
										 |  |  |             linkTitleEl.val(noteTitle); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2017-09-09 12:06:15 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-04 14:43:20 -04:00
										 |  |  |         autoCompleteEl.autocomplete({ | 
					
						
							| 
									
										
										
										
											2017-11-19 19:39:39 -05:00
										 |  |  |             source: noteTree.getAutocompleteItems(), | 
					
						
							| 
									
										
										
										
											2017-11-04 14:43:20 -04:00
										 |  |  |             minLength: 0, | 
					
						
							|  |  |  |             change: () => { | 
					
						
							|  |  |  |                 const val = autoCompleteEl.val(); | 
					
						
							| 
									
										
										
										
											2017-12-02 13:54:16 -05:00
										 |  |  |                 const notePath = link.getNodePathFromLabel(val); | 
					
						
							| 
									
										
										
										
											2018-01-23 20:14:10 -05:00
										 |  |  |                 if (!notePath) { | 
					
						
							|  |  |  |                     return; | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-02 13:54:16 -05:00
										 |  |  |                 const noteId = treeUtils.getNoteIdFromNotePath(notePath); | 
					
						
							| 
									
										
										
										
											2017-11-04 14:43:20 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |                 if (noteId) { | 
					
						
							|  |  |  |                     setDefaultLinkTitle(noteId); | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |             }, | 
					
						
							|  |  |  |             // this is called when user goes through autocomplete list with keyboard
 | 
					
						
							| 
									
										
										
										
											2017-11-20 23:51:28 -05:00
										 |  |  |             // at this point the item isn't selected yet so we use supplied ui.item to see WHERE the cursor is
 | 
					
						
							| 
									
										
										
										
											2017-11-04 14:43:20 -04:00
										 |  |  |             focus: (event, ui) => { | 
					
						
							| 
									
										
										
										
											2017-12-02 13:54:16 -05:00
										 |  |  |                 const notePath = link.getNodePathFromLabel(ui.item.value); | 
					
						
							|  |  |  |                 const noteId = treeUtils.getNoteIdFromNotePath(notePath); | 
					
						
							| 
									
										
										
										
											2017-09-09 12:06:15 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-11 21:20:05 -04:00
										 |  |  |                 setDefaultLinkTitle(noteId); | 
					
						
							| 
									
										
										
										
											2017-09-09 12:06:15 -04:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2017-11-04 14:43:20 -04:00
										 |  |  |         }); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2017-09-09 12:06:15 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-04 14:43:20 -04:00
										 |  |  |     formEl.submit(() => { | 
					
						
							| 
									
										
										
										
											2017-11-19 22:31:30 -05:00
										 |  |  |         const value = autoCompleteEl.val(); | 
					
						
							| 
									
										
										
										
											2017-09-09 12:06:15 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-19 22:31:30 -05:00
										 |  |  |         const notePath = link.getNodePathFromLabel(value); | 
					
						
							| 
									
										
										
										
											2017-12-21 21:54:25 -05:00
										 |  |  |         const noteId = treeUtils.getNoteIdFromNotePath(notePath); | 
					
						
							| 
									
										
										
										
											2017-09-09 12:06:15 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-19 22:31:30 -05:00
										 |  |  |         if (notePath) { | 
					
						
							| 
									
										
										
										
											2017-12-21 21:54:25 -05:00
										 |  |  |             const linkType = $("input[name='add-link-type']:checked").val(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             if (linkType === 'html') { | 
					
						
							|  |  |  |                 const linkTitle = linkTitleEl.val(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 dialogEl.dialog("close"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 link.addLinkToEditor(linkTitle, '#' + notePath); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             else if (linkType === 'selected-to-current') { | 
					
						
							|  |  |  |                 const prefix = clonePrefixEl.val(); | 
					
						
							| 
									
										
										
										
											2017-09-09 12:06:15 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-13 18:02:41 -05:00
										 |  |  |                 cloning.cloneNoteTo(noteId, noteEditor.getCurrentNoteId(), prefix); | 
					
						
							| 
									
										
										
										
											2017-09-09 12:06:15 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-21 21:54:25 -05:00
										 |  |  |                 dialogEl.dialog("close"); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             else if (linkType === 'current-to-selected') { | 
					
						
							|  |  |  |                 const prefix = clonePrefixEl.val(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-13 18:02:41 -05:00
										 |  |  |                 cloning.cloneNoteTo(noteEditor.getCurrentNoteId(), noteId, prefix); | 
					
						
							| 
									
										
										
										
											2017-12-21 21:54:25 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  |                 dialogEl.dialog("close"); | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2017-11-04 14:43:20 -04:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2017-09-09 12:06:15 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-04 14:43:20 -04:00
										 |  |  |         return false; | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2017-09-09 12:06:15 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-23 20:14:10 -05:00
										 |  |  |     function linkTypeChanged() { | 
					
						
							|  |  |  |         const value = linkTypeEls.filter(":checked").val(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (value === 'html') { | 
					
						
							| 
									
										
										
										
											2017-12-21 21:54:25 -05:00
										 |  |  |             linkTitleFormGroup.show(); | 
					
						
							|  |  |  |             prefixFormGroup.hide(); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         else { | 
					
						
							|  |  |  |             linkTitleFormGroup.hide(); | 
					
						
							|  |  |  |             prefixFormGroup.show(); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2018-01-23 20:14:10 -05:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     linkTypeEls.change(linkTypeChanged); | 
					
						
							| 
									
										
										
										
											2017-12-21 21:54:25 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-18 23:41:13 -05:00
										 |  |  |     $(document).bind('keydown', 'ctrl+l', e => { | 
					
						
							|  |  |  |         showDialog(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         e.preventDefault(); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2017-11-04 14:43:20 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |     return { | 
					
						
							|  |  |  |         showDialog | 
					
						
							|  |  |  |     }; | 
					
						
							|  |  |  | })(); |