diff options
author | Toon Claes <toon@gitlab.com> | 2017-06-15 16:01:12 +0200 |
---|---|---|
committer | Toon Claes <toon@gitlab.com> | 2017-06-20 14:19:45 +0200 |
commit | a8d4bf9724ce6dce69240d4953c7d38b7f05a7dd (patch) | |
tree | ebd501dede12ddc2faa40e0a9209c8d603de6250 /app | |
parent | fd50d9ab8ec977183240b28d749cf2eb25014f41 (diff) | |
download | gitlab-ce-a8d4bf9724ce6dce69240d4953c7d38b7f05a7dd.tar.gz |
Use helper method to set filtered search input attributes
The list of attributes for the filtered search input was getting long, so use a
helper method to fill that hash.
Also, for multiple issue assignees, a helper is more convenient because it would
allow EE to override the behavior if MIA is supported.
Diffstat (limited to 'app')
-rw-r--r-- | app/helpers/search_helper.rb | 12 | ||||
-rw-r--r-- | app/views/shared/issuable/_search_bar.html.haml | 2 |
2 files changed, 13 insertions, 1 deletions
diff --git a/app/helpers/search_helper.rb b/app/helpers/search_helper.rb index 9c46035057f..5ea2c72f819 100644 --- a/app/helpers/search_helper.rb +++ b/app/helpers/search_helper.rb @@ -126,6 +126,18 @@ module SearchHelper search_path(options) end + def search_filter_input_options(type) + { + id: "filtered-search-#{type}", + placeholder: 'Search or filter results...', + data: { + 'project-id' => @project.id, + 'username-params' => @users.to_json(only: [:id, :username]), + 'base-endpoint' => namespace_project_path(@project.namespace, @project) + } + } + end + # Sanitize a HTML field for search display. Most tags are stripped out and the # maximum length is set to 200 characters. def search_md_sanitize(object, field) diff --git a/app/views/shared/issuable/_search_bar.html.haml b/app/views/shared/issuable/_search_bar.html.haml index d3d290692a2..ae890567225 100644 --- a/app/views/shared/issuable/_search_bar.html.haml +++ b/app/views/shared/issuable/_search_bar.html.haml @@ -23,7 +23,7 @@ .scroll-container %ul.tokens-container.list-unstyled %li.input-token - %input.form-control.filtered-search{ id: "filtered-search-#{type.to_s}", placeholder: 'Search or filter results...', data: { 'project-id' => @project.id, 'username-params' => @users.to_json(only: [:id, :username]), 'base-endpoint' => namespace_project_path(@project.namespace, @project) } } + %input.form-control.filtered-search{ search_filter_input_options(type) } = icon('filter') #js-dropdown-hint.filtered-search-input-dropdown-menu.dropdown-menu.hint-dropdown %ul{ data: { dropdown: true } } |