Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
d5fe1e57
Commit
d5fe1e57
authored
Apr 28, 2015
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Draft improvements to search layout
Signed-off-by:
Dmitriy Zaporozhets
<
dmitriy.zaporozhets@gmail.com
>
parent
8140c682
Changes
11
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
109 additions
and
115 deletions
+109
-115
app/controllers/search_controller.rb
app/controllers/search_controller.rb
+6
-3
app/views/layouts/_search.html.haml
app/views/layouts/_search.html.haml
+1
-1
app/views/layouts/nav/_search.html.haml
app/views/layouts/nav/_search.html.haml
+30
-0
app/views/layouts/nav/search/_project.html.haml
app/views/layouts/nav/search/_project.html.haml
+35
-0
app/views/layouts/nav/search/_snippet.html.haml
app/views/layouts/nav/search/_snippet.html.haml
+14
-0
app/views/layouts/search.html.haml
app/views/layouts/search.html.haml
+1
-5
app/views/search/_global_filter.html.haml
app/views/search/_global_filter.html.haml
+0
-16
app/views/search/_project_filter.html.haml
app/views/search/_project_filter.html.haml
+0
-32
app/views/search/_results.html.haml
app/views/search/_results.html.haml
+6
-25
app/views/search/_snippet_filter.html.haml
app/views/search/_snippet_filter.html.haml
+0
-13
app/views/search/show.html.haml
app/views/search/show.html.haml
+16
-20
No files found.
app/controllers/search_controller.rb
View file @
d5fe1e57
...
...
@@ -4,20 +4,22 @@ class SearchController < ApplicationController
def
show
return
if
params
[
:search
].
nil?
||
params
[
:search
].
blank?
@search_term
=
params
[
:search
]
if
params
[
:project_id
].
present?
@project
=
Project
.
find_by
(
id:
params
[
:project_id
])
@project
=
nil
unless
can?
(
current_user
,
:download_code
,
@project
)
end
if
params
[
:group_id
].
present?
@group
=
Group
.
find_by
(
id:
params
[
:group_id
])
@group
=
Group
.
find_by
(
id:
params
[
:group_id
])
@group
=
nil
unless
can?
(
current_user
,
:read_group
,
@group
)
end
@scope
=
params
[
:scope
]
@show_snippets
=
params
[
:snippets
].
eql?
'true'
@search_results
=
@search_results
=
if
@project
unless
%w(blobs notes issues merge_requests wiki_blobs)
.
include?
(
@scope
)
...
...
@@ -37,6 +39,7 @@ class SearchController < ApplicationController
end
Search
::
GlobalService
.
new
(
current_user
,
params
).
execute
end
@objects
=
@search_results
.
objects
(
@scope
,
params
[
:page
])
end
...
...
app/views/layouts/_search.html.haml
View file @
d5fe1e57
.search
=
form_tag
search_path
,
method: :get
,
class:
'navbar-form pull-left'
do
|
f
|
=
search_field_tag
"search"
,
nil
,
placeholder:
search_placeholder
,
class:
"search-input"
=
search_field_tag
"search"
,
@search_term
,
placeholder:
search_placeholder
,
class:
"search-input"
=
hidden_field_tag
:group_id
,
@group
.
try
(
:id
)
-
if
@project
&&
@project
.
persisted?
=
hidden_field_tag
:project_id
,
@project
.
id
...
...
app/views/layouts/nav/_search.html.haml
0 → 100644
View file @
d5fe1e57
%ul
.nav.nav-sidebar.search-filter
-
if
@project
=
render
'layouts/nav/search/project'
-
elsif
@show_snippets
=
render
'layouts/nav/search/snippet'
-
else
%li
{
class:
(
"active"
if
@scope
==
'projects'
)}
=
link_to
search_filter_path
(
scope:
'projects'
)
do
=
icon
(
'bookmark fw'
)
%span
Projects
%span
.count
=
@search_results
.
projects_count
%li
{
class:
(
"active"
if
@scope
==
'issues'
)}
=
link_to
search_filter_path
(
scope:
'issues'
)
do
=
icon
(
'exclamation-circle fw'
)
%span
Issues
%span
.count
=
@search_results
.
issues_count
%li
{
class:
(
"active"
if
@scope
==
'merge_requests'
)}
=
link_to
search_filter_path
(
scope:
'merge_requests'
)
do
=
icon
(
'tasks fw'
)
%span
Merge requests
%span
.count
=
@search_results
.
merge_requests_count
app/views/layouts/nav/search/_project.html.haml
0 → 100644
View file @
d5fe1e57
%li
{
class:
(
"active"
if
@scope
==
'blobs'
)}
=
link_to
search_filter_path
(
scope:
'blobs'
)
do
=
icon
(
'code fw'
)
%span
Code
%span
.count
=
@search_results
.
blobs_count
%li
{
class:
(
"active"
if
@scope
==
'issues'
)}
=
link_to
search_filter_path
(
scope:
'issues'
)
do
=
icon
(
'exclamation-circle fw'
)
%span
Issues
%span
.count
=
@search_results
.
issues_count
%li
{
class:
(
"active"
if
@scope
==
'merge_requests'
)}
=
link_to
search_filter_path
(
scope:
'merge_requests'
)
do
=
icon
(
'tasks fw'
)
%span
Merge requests
%span
.count
=
@search_results
.
merge_requests_count
%li
{
class:
(
"active"
if
@scope
==
'notes'
)}
=
link_to
search_filter_path
(
scope:
'notes'
)
do
=
icon
(
'comments fw'
)
%span
Comments
%span
.count
=
@search_results
.
notes_count
%li
{
class:
(
"active"
if
@scope
==
'wiki_blobs'
)}
=
link_to
search_filter_path
(
scope:
'wiki_blobs'
)
do
=
icon
(
'book fw'
)
%span
Wiki
%span
.count
=
@search_results
.
wiki_blobs_count
app/views/layouts/nav/search/_snippet.html.haml
0 → 100644
View file @
d5fe1e57
%li
{
class:
(
"active"
if
@scope
==
'snippet_blobs'
)}
=
link_to
search_filter_path
(
scope:
'snippet_blobs'
,
snippets:
true
,
group_id:
nil
,
project_id:
nil
)
do
=
icon
(
'code fw'
)
%span
Snippet Contents
%span
.count
=
@search_results
.
snippet_blobs_count
%li
{
class:
(
"active"
if
@scope
==
'snippet_titles'
)}
=
link_to
search_filter_path
(
scope:
'snippet_titles'
,
snippets:
true
,
group_id:
nil
,
project_id:
nil
)
do
=
icon
(
'book fw'
)
%span
Titles and Filenames
%span
.count
=
@search_results
.
snippet_titles_count
app/views/layouts/search.html.haml
View file @
d5fe1e57
...
...
@@ -2,9 +2,5 @@
%html
{
lang:
"en"
}
=
render
"layouts/head"
,
title:
"Search"
%body
{
class:
"#{app_theme} application"
,
:'data-page'
=>
body_data_page
}
=
render
"layouts/broadcast"
=
render
"layouts/head_panel"
,
title:
link_to
(
"Search"
,
search_path
)
.container.navless-container
.content
=
render
"layouts/flash"
=
yield
=
render
'layouts/page'
,
sidebar:
'layouts/nav/search'
app/views/search/_global_filter.html.haml
deleted
100644 → 0
View file @
8140c682
%ul
.nav.nav-pills.nav-stacked.search-filter
%li
{
class:
(
"active"
if
@scope
==
'projects'
)}
=
link_to
search_filter_path
(
scope:
'projects'
)
do
Projects
.pull-right
=
@search_results
.
projects_count
%li
{
class:
(
"active"
if
@scope
==
'issues'
)}
=
link_to
search_filter_path
(
scope:
'issues'
)
do
Issues
.pull-right
=
@search_results
.
issues_count
%li
{
class:
(
"active"
if
@scope
==
'merge_requests'
)}
=
link_to
search_filter_path
(
scope:
'merge_requests'
)
do
Merge requests
.pull-right
=
@search_results
.
merge_requests_count
app/views/search/_project_filter.html.haml
deleted
100644 → 0
View file @
8140c682
%ul
.nav.nav-pills.nav-stacked.search-filter
%li
{
class:
(
"active"
if
@scope
==
'blobs'
)}
=
link_to
search_filter_path
(
scope:
'blobs'
)
do
%i
.fa.fa-code
Code
.pull-right
=
@search_results
.
blobs_count
%li
{
class:
(
"active"
if
@scope
==
'issues'
)}
=
link_to
search_filter_path
(
scope:
'issues'
)
do
%i
.fa.fa-exclamation-circle
Issues
.pull-right
=
@search_results
.
issues_count
%li
{
class:
(
"active"
if
@scope
==
'merge_requests'
)}
=
link_to
search_filter_path
(
scope:
'merge_requests'
)
do
%i
.fa.fa-code-fork
Merge requests
.pull-right
=
@search_results
.
merge_requests_count
%li
{
class:
(
"active"
if
@scope
==
'notes'
)}
=
link_to
search_filter_path
(
scope:
'notes'
)
do
%i
.fa.fa-comments
Comments
.pull-right
=
@search_results
.
notes_count
%li
{
class:
(
"active"
if
@scope
==
'wiki_blobs'
)}
=
link_to
search_filter_path
(
scope:
'wiki_blobs'
)
do
%i
.fa.fa-book
Wiki
.pull-right
=
@search_results
.
wiki_blobs_count
app/views/search/_results.html.haml
View file @
d5fe1e57
%h4
#{
@search_results
.
total_count
}
results found
-
unless
@show_snippets
-
if
@project
for
#{
link_to
@project
.
name_with_namespace
,
[
@project
.
namespace
.
becomes
(
Namespace
),
@project
]
}
-
elsif
@group
for
#{
link_to
@group
.
name
,
@group
}
%hr
.row
.col-sm-3
-
if
@project
=
render
"project_filter"
-
elsif
@show_snippets
=
render
'snippet_filter'
-
else
=
render
"global_filter"
.col-sm-9
.search-results
-
if
@search_results
.
empty?
=
render
partial:
"search/results/empty"
,
locals:
{
message:
"We couldn't find any matching results"
}
-
else
=
render
partial:
"search/results/
#{
@scope
.
singularize
}
"
,
collection:
@objects
=
paginate
@objects
,
theme:
'gitlab'
.search-results
-
if
@search_results
.
empty?
=
render
partial:
"search/results/empty"
,
locals:
{
message:
"We couldn't find any matching results"
}
-
else
=
render
partial:
"search/results/
#{
@scope
.
singularize
}
"
,
collection:
@objects
=
paginate
@objects
,
theme:
'gitlab'
:javascript
$
(
"
.search-results .term
"
).
highlight
(
"
#{
escape_javascript
(
params
[
:search
])
}
"
);
app/views/search/_snippet_filter.html.haml
deleted
100644 → 0
View file @
8140c682
%ul
.nav.nav-pills.nav-stacked.search-filter
%li
{
class:
(
"active"
if
@scope
==
'snippet_blobs'
)}
=
link_to
search_filter_path
(
scope:
'snippet_blobs'
,
snippets:
true
,
group_id:
nil
,
project_id:
nil
)
do
%i
.fa.fa-code
Snippet Contents
.pull-right
=
@search_results
.
snippet_blobs_count
%li
{
class:
(
"active"
if
@scope
==
'snippet_titles'
)}
=
link_to
search_filter_path
(
scope:
'snippet_titles'
,
snippets:
true
,
group_id:
nil
,
project_id:
nil
)
do
%i
.fa.fa-book
Titles and Filenames
.pull-right
=
@search_results
.
snippet_titles_count
app/views/search/show.html.haml
View file @
d5fe1e57
=
form_tag
search_path
,
method: :get
,
class:
'form-horizontal'
do
|
f
|
.search-holder.clearfix
.form-group
=
label_tag
:search
,
class:
'control-label'
do
%span
Looking for
.col-sm-6
=
search_field_tag
:search
,
params
[
:search
],
placeholder:
"issue 143"
,
class:
"form-control search-text-input"
,
id:
"dashboard_search"
.col-sm-4
=
button_tag
'Search'
,
class:
"btn btn-create"
.form-group
.col-sm-2
-
unless
params
[
:snippets
].
eql?
'true'
.col-sm-10
=
render
'filter'
,
f:
f
=
hidden_field_tag
:project_id
,
params
[
:project_id
]
=
hidden_field_tag
:group_id
,
params
[
:group_id
]
=
hidden_field_tag
:snippets
,
params
[
:snippets
]
=
hidden_field_tag
:scope
,
params
[
:scope
]
-
if
@search_term
.lead
Search for
%code
=
@search_term
-
unless
@show_snippets
-
if
@project
in project
#{
link_to
@project
.
name_with_namespace
,
[
@project
.
namespace
.
becomes
(
Namespace
),
@project
]
}
-
elsif
@group
in group
#{
link_to
@group
.
name
,
@group
}
.pull-right
=
render
'filter'
%hr
.results.prepend-top-10
-
if
params
[
:search
].
present?
=
render
'search/results'
=
render
'search/results'
-
else
wow
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment