Skip to content
Snippets Groups Projects
Commit cc154fc4 authored by Phil Hughes's avatar Phil Hughes
Browse files

Cache autocomplete results

parent ab81ea1e
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -4,7 +4,7 @@ window.GitLab ?= {}
GitLab.GfmAutoComplete =
dataLoading: false
dataLoaded: false
cachedData: {}
dataSource: ''
 
# Emoji
Loading
Loading
@@ -55,7 +55,7 @@ GitLab.GfmAutoComplete =
@setupAtWho()
 
if @dataSource
if !@dataLoading
if not @dataLoading and not @cachedData
@dataLoading = true
 
# We should wait until initializations are done
Loading
Loading
@@ -70,6 +70,8 @@ GitLab.GfmAutoComplete =
@loadData(data)
, 1000)
 
if @cachedData?
@loadData(@cachedData)
 
setupAtWho: ->
# Emoji
Loading
Loading
@@ -205,6 +207,7 @@ GitLab.GfmAutoComplete =
$.getJSON(dataSource)
 
loadData: (data) ->
@cachedData = data
@dataLoaded = true
 
# load members
Loading
Loading
Loading
Loading
@@ -3,4 +3,5 @@
- if @noteable
:javascript
GitLab.GfmAutoComplete.dataSource = "#{autocomplete_sources_namespace_project_path(project.namespace, project, type: @noteable.class, type_id: params[:id])}"
GitLab.GfmAutoComplete.cachedData = undefined;
GitLab.GfmAutoComplete.setup();
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment