overleaf/services/web/public/coffee/ide/references-search/ReferencesSearchManager.coffee

58 lines
1.5 KiB
CoffeeScript
Raw Normal View History

define [
], () ->
class ReferencesSearchManager
constructor: (@ide, @$scope) ->
2015-12-29 06:02:59 -05:00
@$scope.$root._references = @state = keys: []
2015-12-18 11:20:58 -05:00
@$scope.$on 'document:closed', (e, doc) =>
if doc.doc_id
entity = @ide.fileTreeManager.findEntityById doc.doc_id
if entity?.name?.match /.*\.bib$/
@indexReferences([doc.doc_id], true)
# When we join the project:
# index all references files
# and don't broadcast to all clients
2015-12-29 08:30:57 -05:00
@$scope.$on 'project:joined', (e) =>
@indexAllReferences(false)
setTimeout(
(self) ->
self.ide.socket.on 'references:keys:updated', (keys) ->
# console.log '>> got keys from socket'
self._storeReferencesKeys(keys)
, 1000
, this
)
_storeReferencesKeys: (newKeys) ->
# console.log '>> storing references keys'
oldKeys = @$scope.$root._references.keys
@$scope.$root._references.keys = _.union(oldKeys, newKeys)
indexReferences: (docIds, shouldBroadcast) ->
opts =
docIds: docIds
shouldBroadcast: shouldBroadcast
_csrf: window.csrfToken
$.post(
"/project/#{@$scope.project_id}/references/index",
opts,
(data) =>
# console.log ">> got keys ", data
@_storeReferencesKeys(data.keys)
)
indexAllReferences: (shouldBroadcast) ->
opts =
shouldBroadcast: shouldBroadcast
_csrf: window.csrfToken
$.post(
"/project/#{@$scope.project_id}/references/indexAll",
opts,
(data) =>
# console.log ">> got keys ", data
@_storeReferencesKeys(data.keys)
)