-
- Downloads
Merge branch '18435-autocomplete-is-not-performant' into 'master'
Make autocomplete request performant ## What does this MR do? Restricts the `autocomplete_sources`action to returning the `json`of one specific `at` type at a time. Makes sure all commands start by immediately showing the `loading` dropdown. If the `loading` dropdown is active, we will request and load in the data for that specific `at` type. We manually trigger the filter again. This time, if `loading` dropdown is not active, initiate default filter behaviour and use the correct data template. Also fixes an issue where `setup` was called multiple times by only setting up and destroying atwho on a focused/blured input. ## Are there points in the code the reviewer needs to double check? ## Why was this MR needed? `autocomplete_sources` was requested on page load and is large. ## Screenshots (if relevant) 3 requests for 3 different first-time references.  ## Does this MR meet the acceptance criteria? - [x] [CHANGELOG](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/CHANGELOG) entry added - [ ] [Documentation created/updated](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/doc/development/doc_styleguide.md) - [ ] API support added - Tests - [x] Added for this feature/bug - [x] All builds are passing - [x] Conform by the [merge request performance guides](http://docs.gitlab.com/ce/development/merge_request_performance_guidelines.html) - [x] Conform by the [style guides](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/CONTRIBUTING.md#style-guides) - [x] Branch has no merge conflicts with `master` (if it does - rebase it please) - [x] [Squashed related commits together](https://git-scm.com/book/en/Git-Tools-Rewriting-History#Squashing-Commits) ## What are the relevant issue numbers? Closes #22802 Closes #18435 See merge request !6856
Showing
- app/assets/javascripts/gfm_auto_complete.js.es6 112 additions, 121 deletionsapp/assets/javascripts/gfm_auto_complete.js.es6
- app/assets/javascripts/gl_form.js 1 addition, 1 deletionapp/assets/javascripts/gl_form.js
- app/assets/javascripts/issuable_form.js 1 addition, 1 deletionapp/assets/javascripts/issuable_form.js
- app/controllers/projects/autocomplete_sources_controller.rb 48 additions, 0 deletionsapp/controllers/projects/autocomplete_sources_controller.rb
- app/controllers/projects_controller.rb 0 additions, 33 deletionsapp/controllers/projects_controller.rb
- app/views/layouts/_init_auto_complete.html.haml 11 additions, 3 deletionsapp/views/layouts/_init_auto_complete.html.haml
- changelogs/unreleased/18435-autocomplete-is-not-performant.yml 4 additions, 0 deletions...elogs/unreleased/18435-autocomplete-is-not-performant.yml
- config/routes/project.rb 12 additions, 1 deletionconfig/routes/project.rb
- spec/features/participants_autocomplete_spec.rb 4 additions, 3 deletionsspec/features/participants_autocomplete_spec.rb
- spec/features/projects/gfm_autocomplete_load_spec.rb 2 additions, 2 deletionsspec/features/projects/gfm_autocomplete_load_spec.rb
- spec/routing/project_routing_spec.rb 15 additions, 4 deletionsspec/routing/project_routing_spec.rb
Loading
Please register or sign in to comment