| 
									
										
										
										
											2017-11-04 19:38:50 -04:00
										 |  |  | "use strict"; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-04 13:55:46 -04:00
										 |  |  | const noteHistory = (function() { | 
					
						
							|  |  |  |     const dialogEl = $("#note-history-dialog"); | 
					
						
							|  |  |  |     const listEl = $("#note-history-list"); | 
					
						
							|  |  |  |     const contentEl = $("#note-history-content"); | 
					
						
							|  |  |  |     const titleEl = $("#note-history-title"); | 
					
						
							| 
									
										
										
										
											2017-09-23 10:18:08 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-04 13:55:46 -04:00
										 |  |  |     let historyItems = []; | 
					
						
							| 
									
										
										
										
											2017-10-09 11:28:56 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-04 13:55:46 -04:00
										 |  |  |     async function showCurrentNoteHistory() { | 
					
						
							| 
									
										
										
										
											2017-11-04 17:54:27 -04:00
										 |  |  |         await showNoteHistoryDialog(noteEditor.getCurrentNoteId()); | 
					
						
							| 
									
										
										
										
											2017-11-04 13:55:46 -04:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     async function showNoteHistoryDialog(noteId, noteHistoryId) { | 
					
						
							| 
									
										
										
										
											2017-11-04 17:03:15 -04:00
										 |  |  |         glob.activeDialog = dialogEl; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-04 13:55:46 -04:00
										 |  |  |         dialogEl.dialog({ | 
					
						
							|  |  |  |             modal: true, | 
					
						
							|  |  |  |             width: 800, | 
					
						
							|  |  |  |             height: 700 | 
					
						
							|  |  |  |         }); | 
					
						
							| 
									
										
										
										
											2017-09-21 22:20:10 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-04 13:55:46 -04:00
										 |  |  |         listEl.empty(); | 
					
						
							|  |  |  |         contentEl.empty(); | 
					
						
							| 
									
										
										
										
											2017-09-23 10:18:08 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-04 13:55:46 -04:00
										 |  |  |         historyItems = await $.ajax({ | 
					
						
							|  |  |  |             url: baseApiUrl + 'notes-history/' + noteId, | 
					
						
							|  |  |  |             type: 'GET', | 
					
						
							|  |  |  |             error: () => error("Error getting note history.") | 
					
						
							|  |  |  |         }); | 
					
						
							| 
									
										
										
										
											2017-09-23 10:18:08 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-04 13:55:46 -04:00
										 |  |  |         for (const item of historyItems) { | 
					
						
							|  |  |  |             const dateModified = getDateFromTS(item.date_modified_to); | 
					
						
							| 
									
										
										
										
											2017-09-21 22:20:10 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-04 13:55:46 -04:00
										 |  |  |             $("#note-history-list").append($('<option>', { | 
					
						
							|  |  |  |                 value: item.note_history_id, | 
					
						
							|  |  |  |                 text: formatDateTime(dateModified) | 
					
						
							|  |  |  |             })); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2017-09-21 22:20:10 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-04 13:55:46 -04:00
										 |  |  |         if (historyItems.length > 0) { | 
					
						
							|  |  |  |             if (!noteHistoryId) { | 
					
						
							|  |  |  |                 noteHistoryId = listEl.find("option:first").val(); | 
					
						
							| 
									
										
										
										
											2017-09-21 22:20:10 -04:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2017-10-02 23:38:05 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-04 13:55:46 -04:00
										 |  |  |             listEl.val(noteHistoryId).trigger('change'); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2017-09-23 10:18:08 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-04 13:55:46 -04:00
										 |  |  |     $(document).bind('keydown', 'alt+h', showCurrentNoteHistory); | 
					
						
							| 
									
										
										
										
											2017-10-24 20:00:54 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-04 13:55:46 -04:00
										 |  |  |     listEl.on('change', () => { | 
					
						
							|  |  |  |         const optVal = listEl.find(":selected").val(); | 
					
						
							| 
									
										
										
										
											2017-09-23 10:18:08 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-04 13:55:46 -04:00
										 |  |  |         const historyItem = historyItems.find(r => r.note_history_id === optVal); | 
					
						
							| 
									
										
										
										
											2017-11-02 23:36:58 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-04 13:55:46 -04:00
										 |  |  |         let noteTitle = historyItem.note_title; | 
					
						
							|  |  |  |         let noteText = historyItem.note_text; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (historyItem.encryption > 0) { | 
					
						
							| 
									
										
										
										
											2017-11-04 18:18:55 -04:00
										 |  |  |             noteTitle = encryption.decryptString(noteTitle); | 
					
						
							|  |  |  |             noteText = encryption.decryptString(noteText); | 
					
						
							| 
									
										
										
										
											2017-11-04 13:55:46 -04:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         titleEl.html(noteTitle); | 
					
						
							|  |  |  |         contentEl.html(noteText); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2017-11-02 23:36:58 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-04 17:03:15 -04:00
										 |  |  |     $(document).on('click', "a[action='note-history']", event => { | 
					
						
							|  |  |  |         const linkEl = $(event.target); | 
					
						
							|  |  |  |         const noteId = linkEl.attr('note-id'); | 
					
						
							|  |  |  |         const noteHistoryId = linkEl.attr('note-history-id'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         showNoteHistoryDialog(noteId, noteHistoryId); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return false; | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-04 13:55:46 -04:00
										 |  |  |     return { | 
					
						
							| 
									
										
										
										
											2017-11-04 17:03:15 -04:00
										 |  |  |         showCurrentNoteHistory | 
					
						
							| 
									
										
										
										
											2017-11-04 13:55:46 -04:00
										 |  |  |     }; | 
					
						
							|  |  |  | })(); |