mirror of
				https://github.com/TriliumNext/Notes.git
				synced 2025-10-31 04:51:31 +08:00 
			
		
		
		
	recent notes are reloaded if synced
This commit is contained in:
		
							parent
							
								
									28bc443914
								
							
						
					
					
						commit
						34f1eb930c
					
				| @ -11,9 +11,11 @@ const recentNotes = (function() { | ||||
|     // list of recent note paths
 | ||||
|     let list = []; | ||||
| 
 | ||||
|     server.get('recent-notes').then(result => { | ||||
|     async function reload() { | ||||
|         const result = await server.get('recent-notes'); | ||||
| 
 | ||||
|         list = result.map(r => r.note_path); | ||||
|     }); | ||||
|     } | ||||
| 
 | ||||
|     function addRecentNote(noteTreeId, notePath) { | ||||
|         setTimeout(async () => { | ||||
| @ -127,6 +129,8 @@ const recentNotes = (function() { | ||||
|         e.preventDefault(); | ||||
|     }); | ||||
| 
 | ||||
|     reload(); | ||||
| 
 | ||||
|     $(document).bind('keydown', 'alt+q', showDialog); | ||||
| 
 | ||||
|     selectBoxEl.dblclick(e => { | ||||
| @ -140,6 +144,7 @@ const recentNotes = (function() { | ||||
| 
 | ||||
|     return { | ||||
|         showDialog, | ||||
|         addRecentNote | ||||
|         addRecentNote, | ||||
|         reload | ||||
|     }; | ||||
| })(); | ||||
| @ -33,6 +33,12 @@ const messaging = (function() { | ||||
|                 noteEditor.reload(); | ||||
|             } | ||||
| 
 | ||||
|             if (data.recent_notes) { | ||||
|                 console.log("Reloading recent notes because of background changes"); | ||||
| 
 | ||||
|                 recentNotes.reload(); | ||||
|             } | ||||
| 
 | ||||
|             const changesToPushCountEl = $("#changesToPushCount"); | ||||
|             changesToPushCountEl.html(message.changesToPushCount); | ||||
|         } | ||||
|  | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user
	 azivner
						azivner