overleaf/services/web/public/coffee/ide/editor/controllers/SavingNotificationController.coffee

46 lines
1.3 KiB
CoffeeScript
Raw Normal View History

2014-07-08 07:02:26 -04:00
define [
"base"
"ide/editor/Document"
], (App, Document) ->
App.controller "SavingNotificationController", ["$scope", "$interval", "ide", ($scope, $interval, ide) ->
setInterval () ->
2014-07-08 07:02:26 -04:00
pollSavedStatus()
, 1000
$(window).bind 'beforeunload', () =>
warnAboutUnsavedChanges()
$scope.docSavingStatus = {}
pollSavedStatus = () ->
oldStatus = $scope.docSavingStatus
oldUnsavedCount = $scope.docSavingStatusCount
newStatus = {}
newUnsavedCount = 0
2014-07-08 07:02:26 -04:00
for doc_id, doc of Document.openDocs
saving = doc.pollSavedStatus()
if !saving
newUnsavedCount++
2014-07-08 07:02:26 -04:00
if oldStatus[doc_id]?
newStatus[doc_id] = oldStatus[doc_id]
newStatus[doc_id].unsavedSeconds += 1
2014-07-08 07:02:26 -04:00
else
newStatus[doc_id] = {
2014-07-08 07:02:26 -04:00
unsavedSeconds: 0
doc: ide.fileTreeManager.findEntityById(doc_id)
}
# for performance, only update the display if the old or new
# counts of unsaved files are nonzeror. If both old and new
# unsaved counts are zero then we know we are in a good state
# and don't need to do anything to the UI.
if newUnsavedCount or oldUnsavedCount
$scope.docSavingStatus = newStatus
$scope.docSavingStatusCount = newUnsavedCount
$scope.$apply()
2014-07-08 07:02:26 -04:00
warnAboutUnsavedChanges = () ->
if Document.hasUnsavedChanges()
return "You have unsaved changes. If you leave now they will not be saved."
]