| 
									
										
										
										
											2017-11-03 21:20:06 -04:00
										 |  |  | async function checkStatus() { | 
					
						
							|  |  |  |     const resp = await $.ajax({ | 
					
						
							| 
									
										
										
										
											2017-11-01 22:36:26 -04:00
										 |  |  |         url: baseApiUrl + 'status', | 
					
						
							|  |  |  |         type: 'POST', | 
					
						
							|  |  |  |         contentType: "application/json", | 
					
						
							|  |  |  |         data: JSON.stringify({ | 
					
						
							| 
									
										
										
										
											2017-11-04 00:05:08 -04:00
										 |  |  |             treeLoadTime: glob.treeLoadTime, | 
					
						
							|  |  |  |             currentNoteId: glob.currentNote ? glob.currentNote.detail.note_id : null, | 
					
						
							|  |  |  |             currentNoteDateModified: glob.currentNoteLoadTime | 
					
						
							| 
									
										
										
										
											2017-11-01 22:36:26 -04:00
										 |  |  |         }), | 
					
						
							| 
									
										
										
										
											2017-11-01 20:31:44 -04:00
										 |  |  |         statusCode: { | 
					
						
							|  |  |  |             401: () => { | 
					
						
							|  |  |  |                 // if the user got logged out then we should display the page
 | 
					
						
							|  |  |  |                 // here we do that by reloading which will force the redirect if the user is really logged out
 | 
					
						
							|  |  |  |                 window.location.reload(true); | 
					
						
							|  |  |  |             }, | 
					
						
							|  |  |  |             409: () => { | 
					
						
							|  |  |  |                 // 409 means we need to migrate database, reload will take care of it
 | 
					
						
							|  |  |  |                 window.location.reload(true); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2017-11-03 21:20:06 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (resp.changedTree) { | 
					
						
							|  |  |  |         const treeResp = await loadTree(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         console.log("Reloading tree because of background changes"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         // this will also reload the note content
 | 
					
						
							| 
									
										
										
										
											2017-11-04 00:05:08 -04:00
										 |  |  |         await glob.tree.fancytree('getTree').reload(treeResp.notes); | 
					
						
							| 
									
										
										
										
											2017-11-03 21:20:06 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |         decryptTreeItems(); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     $("#changesToPushCount").html(resp.changesToPushCount); | 
					
						
							| 
									
										
										
										
											2017-11-01 20:31:44 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-01 22:36:26 -04:00
										 |  |  | setInterval(checkStatus, 5 * 1000); |