mirror of
				https://github.com/zadam/trilium.git
				synced 2025-10-31 02:16:05 +01:00 
			
		
		
		
	
		
			
	
	
		
			56 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
		
		
			
		
	
	
			56 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
|  | $(document).bind('keydown', 'alt+r', function() { | ||
|  |     $("#recentChangesDialog").dialog({ | ||
|  |         modal: true, | ||
|  |         width: 400, | ||
|  |         height: 700 | ||
|  |     }); | ||
|  | 
 | ||
|  |     $.ajax({ | ||
|  |         url: baseUrl + 'recent-changes/', | ||
|  |         type: 'GET', | ||
|  |         success: function (result) { | ||
|  |             const groupedByDate = {}; | ||
|  | 
 | ||
|  |             for (const row of result) { | ||
|  |                 const dateModified = new Date(row.date_modified * 1000); | ||
|  |                 const formattedDate = formatDate(dateModified); | ||
|  | 
 | ||
|  |                 if (!groupedByDate[formattedDate]) { | ||
|  |                     groupedByDate[formattedDate] = []; | ||
|  |                 } | ||
|  | 
 | ||
|  |                 groupedByDate[formattedDate].push(row); | ||
|  |             } | ||
|  | 
 | ||
|  |             const sortedDates = Object.keys(groupedByDate); | ||
|  |             sortedDates.sort(); | ||
|  |             sortedDates.reverse(); | ||
|  | 
 | ||
|  |             for (const formattedDay of sortedDates) { | ||
|  |                 const changesListEl = $('<ul>'); | ||
|  | 
 | ||
|  |                 const dayEl = $('<div>').append($('<b>').html(formattedDay)).append(changesListEl); | ||
|  | 
 | ||
|  |                 for (const dayChanges of groupedByDate[formattedDay]) { | ||
|  |                     const formattedTime = formatTime(new Date(dayChanges.date_modified * 1000)); | ||
|  | 
 | ||
|  |                     const noteLink = $("<a>", { | ||
|  |                        href: 'app#' + dayChanges.note_id, | ||
|  |                        text: dayChanges.note_title | ||
|  |                     }); | ||
|  | 
 | ||
|  |                     changesListEl.append($('<li>').append(formattedTime + ' - ').append(noteLink)); | ||
|  |                 } | ||
|  | 
 | ||
|  |                 $("#recentChangesDialog").append(dayEl); | ||
|  |             } | ||
|  |         }, | ||
|  |         error: () => alert("Error getting recent changes.") | ||
|  |     }); | ||
|  | }); | ||
|  | 
 | ||
|  | $(document).on('click', '#recentChangesDialog a', function(e) { | ||
|  |     goToInternalNote(e, () => { | ||
|  |         $("#recentChangesDialog").dialog('close'); | ||
|  |     }); | ||
|  | }); |