mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
Set up and automatic refresh of labels
This commit is contained in:
parent
b871cdab4c
commit
efd01081f7
1 changed files with 19 additions and 3 deletions
|
@ -1,21 +1,37 @@
|
|||
define [
|
||||
], () ->
|
||||
|
||||
AUTOMATIC_REFRESH_PERIOD = 1000 * 60 * 10
|
||||
|
||||
class LabelsManager
|
||||
constructor: (@ide, @$scope) ->
|
||||
@$scope.$root._labels = this
|
||||
|
||||
@state =
|
||||
documents: {}
|
||||
documents: {} # map of DocId => List[Label]
|
||||
|
||||
@loadLabelsTimeout = null
|
||||
@periodicLoadInterval = null
|
||||
|
||||
setTimeout(
|
||||
(self) ->
|
||||
self.$scope.$on 'document:opened', (e, doc) ->
|
||||
# console.log ">> [LabelsManager] document opened"
|
||||
# set up a regular re-load
|
||||
setTimeout(
|
||||
(self) ->
|
||||
self.periodicLoadInterval = setInterval(
|
||||
(self) ->
|
||||
self.loadLabelsFromOpenDoc()
|
||||
, AUTOMATIC_REFRESH_PERIOD
|
||||
, self
|
||||
)
|
||||
, AUTOMATIC_REFRESH_PERIOD
|
||||
, self
|
||||
)
|
||||
# listen for document open
|
||||
self.$scope.$on 'document:opened', (e, doc) ->
|
||||
setTimeout(
|
||||
(self) ->
|
||||
self.scheduleLoadLabelsFromOpenDoc()
|
||||
, 1000
|
||||
, self
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue