| 
									
										
										
										
											2017-09-09 12:06:15 -04:00
										 |  |  | // hot keys are active also inside inputs and content editables
 | 
					
						
							| 
									
										
										
										
											2017-08-21 22:04:08 -04:00
										 |  |  | jQuery.hotkeys.options.filterInputAcceptingElements = true; | 
					
						
							|  |  |  | jQuery.hotkeys.options.filterContentEditable = true; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-23 10:18:08 -04:00
										 |  |  | $(document).bind('keydown', 'alt+m', function() { | 
					
						
							|  |  |  |     const toggle = $(".hide-toggle"); | 
					
						
							|  |  |  |     const hidden = toggle.css('display') === 'none'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     toggle.css('display', hidden ? 'block' : 'none'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     $("#noteDetailWrapper").css("width", hidden ? "750px" : "100%"); | 
					
						
							|  |  |  | }); | 
					
						
							| 
									
										
										
										
											2017-08-22 22:40:54 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-28 23:10:04 -04:00
										 |  |  | $(document).bind('keydown', 'alt+s', function() { | 
					
						
							|  |  |  |     $("input[name=search]").focus(); | 
					
						
							| 
									
										
										
										
											2017-08-29 23:27:28 -04:00
										 |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-26 23:23:03 -04:00
										 |  |  | function formatTime(date) { | 
					
						
							|  |  |  |     return (date.getHours() <= 9 ? "0" : "") + date.getHours() + ":" + (date.getMinutes() <= 9 ? "0" : "") + date.getMinutes(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-21 22:20:10 -04:00
										 |  |  | function formatDate(date) { | 
					
						
							| 
									
										
										
										
											2017-09-26 23:23:03 -04:00
										 |  |  |     return date.getDate() + ". " + (date.getMonth() + 1) + ". " + date.getFullYear(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | function formatDateTime(date) { | 
					
						
							|  |  |  |     return formatDate(date) + " " + formatTime(date); | 
					
						
							| 
									
										
										
										
											2017-09-21 22:20:10 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-09 12:06:15 -04:00
										 |  |  | // hide (toggle) everything except for the note content for distraction free writing
 | 
					
						
							| 
									
										
										
										
											2017-08-29 23:27:28 -04:00
										 |  |  | $(document).bind('keydown', 'alt+t', function() { | 
					
						
							|  |  |  |     const date = new Date(); | 
					
						
							| 
									
										
										
										
											2017-09-26 23:23:03 -04:00
										 |  |  |     const dateString = formatDateTime(date); | 
					
						
							| 
									
										
										
										
											2017-08-29 23:27:28 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |     $('#noteDetail').summernote('insertText', dateString); | 
					
						
							| 
									
										
										
										
											2017-09-03 21:34:30 -04:00
										 |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-04 16:03:07 -04:00
										 |  |  | $(window).on('beforeunload', function(){ | 
					
						
							| 
									
										
										
										
											2017-09-09 12:06:15 -04:00
										 |  |  |     // this makes sure that when user e.g. reloads the page or navigates away from the page, the note's content is saved
 | 
					
						
							|  |  |  |     // this sends the request asynchronously and doesn't wait for result
 | 
					
						
							| 
									
										
										
										
											2017-09-04 16:03:07 -04:00
										 |  |  |     saveNoteIfChanged(); | 
					
						
							| 
									
										
										
										
											2017-09-10 11:50:17 -04:00
										 |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Overrides the default autocomplete filter function to search for matched on atleast 1 word in each of the input term's words
 | 
					
						
							|  |  |  | $.ui.autocomplete.filter = function (array, terms) { | 
					
						
							|  |  |  |     const options = { | 
					
						
							|  |  |  |         shouldSort: true, | 
					
						
							|  |  |  |         threshold: 0.6, | 
					
						
							|  |  |  |         location: 0, | 
					
						
							|  |  |  |         distance: 100, | 
					
						
							|  |  |  |         maxPatternLength: 32, | 
					
						
							|  |  |  |         minMatchCharLength: 1, | 
					
						
							|  |  |  |         keys: [ | 
					
						
							|  |  |  |             "value" | 
					
						
							|  |  |  |         ] | 
					
						
							|  |  |  |     }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-18 20:07:56 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |     const startDate = new Date(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-10 11:50:17 -04:00
										 |  |  |     const fuse = new Fuse(array, options); // "list" is the item array
 | 
					
						
							| 
									
										
										
										
											2017-09-18 20:07:56 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |     const results = fuse.search(terms); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     console.log("Search took " + (new Date().getTime() - startDate.getTime()) + "ms"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return results; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | $.ui.autocomplete.filter = function (array, terms) { | 
					
						
							|  |  |  |     if (!terms) { | 
					
						
							|  |  |  |         return []; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     const startDate = new Date(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     const results = []; | 
					
						
							|  |  |  |     const tokens = terms.toLowerCase().split(" "); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     for (const item of array) { | 
					
						
							|  |  |  |         let found = true; | 
					
						
							|  |  |  |         const lcValue = item.value.toLowerCase(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         for (const token of tokens) { | 
					
						
							|  |  |  |             if (lcValue.indexOf(token) === -1) { | 
					
						
							|  |  |  |                 found = false; | 
					
						
							|  |  |  |                 break; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (found) { | 
					
						
							|  |  |  |             results.push(item); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     console.log("Search took " + (new Date().getTime() - startDate.getTime()) + "ms"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return results; | 
					
						
							| 
									
										
										
										
											2017-09-10 11:50:17 -04:00
										 |  |  | }; |