mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
47 lines
1 KiB
CoffeeScript
47 lines
1 KiB
CoffeeScript
define [
|
|
], () ->
|
|
class LabelsManager
|
|
constructor: (@ide, @$scope) ->
|
|
@$scope.$root._labels = this
|
|
|
|
@state =
|
|
documents: {}
|
|
|
|
@loadLabelsTimeout = null
|
|
|
|
setTimeout(
|
|
(self) ->
|
|
self.$scope.$on 'document:opened', (e, doc) ->
|
|
# console.log ">> [LabelsManager] document opened"
|
|
setTimeout(
|
|
(self) ->
|
|
self.loadLabelsFromOpenDoc()
|
|
, 1000
|
|
, self
|
|
)
|
|
, 0
|
|
this
|
|
)
|
|
|
|
loadLabelsFromOpenDoc: () ->
|
|
docId = @ide.editorManager.getCurrentDocId()
|
|
docText = @ide.editorManager.getCurrentDocValue()
|
|
labels = []
|
|
re = /\\label{(.*)}/g
|
|
while labelMatch = re.exec(docText)
|
|
if labelMatch[1]
|
|
labels.push(labelMatch[1])
|
|
@state.documents[docId] = labels
|
|
|
|
scheduleLoadLabelsFromOpenDoc: () ->
|
|
if @loadLabelsTimeout
|
|
clearTimeout(@loadLabelsTimeout)
|
|
@loadLabelsTimeout = setTimeout(
|
|
(self) ->
|
|
self.loadLabelsFromOpenDoc()
|
|
, 1000
|
|
, this
|
|
)
|
|
|
|
getAllLabels: () ->
|
|
_.flatten(labels for docId, labels of @state.documents)
|