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
3b325e92
Commit
3b325e92
authored
Nov 02, 2021
by
Jonas Wälter
Committed by
Peter Hegman
Nov 02, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add 'show' page for topic
Changelog: added
parent
77ff4521
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
125 additions
and
7 deletions
+125
-7
app/controllers/explore/projects_controller.rb
app/controllers/explore/projects_controller.rb
+13
-0
app/views/explore/projects/topic.html.haml
app/views/explore/projects/topic.html.haml
+31
-0
app/views/shared/projects/_topics.html.haml
app/views/shared/projects/_topics.html.haml
+2
-2
config/routes/explore.rb
config/routes/explore.rb
+1
-0
locale/gitlab.pot
locale/gitlab.pot
+3
-0
spec/controllers/explore/projects_controller_spec.rb
spec/controllers/explore/projects_controller_spec.rb
+22
-0
spec/features/dashboard/projects_spec.rb
spec/features/dashboard/projects_spec.rb
+1
-1
spec/features/projects_spec.rb
spec/features/projects_spec.rb
+4
-4
spec/features/topic_show_spec.rb
spec/features/topic_show_spec.rb
+48
-0
No files found.
app/controllers/explore/projects_controller.rb
View file @
3b325e92
...
...
@@ -68,6 +68,15 @@ class Explore::ProjectsController < Explore::ApplicationController
end
# rubocop: enable CodeReuse/ActiveRecord
def
topic
load_topic
return
render_404
unless
@topic
params
[
:topic
]
=
@topic
.
name
@projects
=
load_projects
end
private
def
load_project_counts
...
...
@@ -86,6 +95,10 @@ class Explore::ProjectsController < Explore::ApplicationController
prepare_projects_for_rendering
(
projects
)
end
def
load_topic
@topic
=
Projects
::
Topic
.
find_by_name
(
params
[
:topic_name
])
end
# rubocop: disable CodeReuse/ActiveRecord
def
preload_associations
(
projects
)
projects
.
includes
(
:route
,
:creator
,
:group
,
:project_feature
,
:topics
,
namespace:
[
:route
,
:owner
])
...
...
app/views/explore/projects/topic.html.haml
0 → 100644
View file @
3b325e92
-
@hide_top_links
=
false
-
@no_container
=
true
-
page_title
@topic
.
name
,
_
(
"Topics"
)
-
max_topic_name_length
=
50
=
render_dashboard_ultimate_trial
(
current_user
)
.gl-text-center.gl-bg-gray-10.gl-pb-2.gl-pt-6
.gl-pb-5.gl-align-items-center.gl-justify-content-center.gl-display-flex
.avatar-container.s60.gl-flex-shrink-0
=
topic_icon
(
@topic
,
alt:
_
(
'Topic avatar'
),
class:
'avatar topic-avatar s60'
)
-
if
@topic
.
name
.
length
>
max_topic_name_length
%h1
.gl-mt-3.str-truncated.has-tooltip
{
title:
@topic
.
name
}
=
truncate
(
@topic
.
name
,
length:
max_topic_name_length
)
-
else
%h1
.gl-mt-3
=
@topic
.
name
-
if
@topic
.
description
.
present?
.topic-description.gl-ml-4.gl-mr-4
=
markdown
(
@topic
.
description
)
%div
{
class:
container_class
}
.gl-py-5.gl-border-gray-100.gl-border-b-solid.gl-border-b-1
%h3
.gl-m-0
=
_
(
'Projects with this topic'
)
.top-area.gl-pt-2.gl-pb-2
.nav-controls
=
render
'shared/projects/search_form'
=
render
'shared/projects/dropdown'
=
render
'filter'
=
render
'projects'
,
projects:
@projects
app/views/shared/projects/_topics.html.haml
View file @
3b325e92
...
...
@@ -8,7 +8,7 @@
=
sprite_icon
(
'tag'
,
css_class:
'icon gl-relative gl-mr-2'
)
-
project
.
topics_to_show
.
each
do
|
topic
|
-
explore_project_topic_path
=
explore_projects_path
(
topic
:
topic
)
-
explore_project_topic_path
=
topic_explore_projects_path
(
topic_name
:
topic
)
-
if
topic
.
length
>
max_project_topic_length
%a
{
class:
"#{ project_topics_classes } str-truncated-30 has-tooltip"
,
data:
{
container:
"body"
},
title:
topic
,
href:
explore_project_topic_path
,
itemprop:
'keywords'
}
=
truncate
(
topic
,
length:
max_project_topic_length
)
...
...
@@ -21,7 +21,7 @@
-
content
=
capture
do
%span
.gl-display-inline-flex.gl-flex-wrap
-
project
.
topics_not_shown
.
each
do
|
topic
|
-
explore_project_topic_path
=
explore_projects_path
(
topic
:
topic
)
-
explore_project_topic_path
=
topic_explore_projects_path
(
topic_name
:
topic
)
-
if
topic
.
length
>
max_project_topic_length
%a
{
class:
"#{ project_topics_classes } gl-mb-3 str-truncated has-tooltip"
,
data:
{
container:
"body"
},
title:
topic
,
href:
explore_project_topic_path
,
itemprop:
'keywords'
}
=
truncate
(
topic
,
length:
max_project_topic_length
)
...
...
config/routes/explore.rb
View file @
3b325e92
...
...
@@ -5,6 +5,7 @@ namespace :explore do
collection
do
get
:trending
get
:starred
get
'topics/:topic_name'
,
action: :topic
,
as: :topic
,
constraints:
{
topic_name:
/.+/
}
end
end
...
...
locale/gitlab.pot
View file @
3b325e92
...
...
@@ -27391,6 +27391,9 @@ msgstr ""
msgid "Projects with no vulnerabilities and security scanning enabled"
msgstr ""
msgid "Projects with this topic"
msgstr ""
msgid "Projects with write access"
msgstr ""
...
...
spec/controllers/explore/projects_controller_spec.rb
View file @
3b325e92
...
...
@@ -74,6 +74,28 @@ RSpec.describe Explore::ProjectsController do
end
end
end
describe
'GET #topic'
do
context
'when topic does not exist'
do
it
'renders a 404 error'
do
get
:topic
,
params:
{
topic_name:
'topic1'
}
expect
(
response
).
to
have_gitlab_http_status
(
:not_found
)
end
end
context
'when topic exists'
do
before
do
create
(
:topic
,
name:
'topic1'
)
end
it
'renders the template'
do
get
:topic
,
params:
{
topic_name:
'topic1'
}
expect
(
response
).
to
have_gitlab_http_status
(
:ok
)
expect
(
response
).
to
render_template
(
'topic'
)
end
end
end
end
shared_examples
"blocks high page numbers"
do
...
...
spec/features/dashboard/projects_spec.rb
View file @
3b325e92
...
...
@@ -204,7 +204,7 @@ RSpec.describe 'Dashboard Projects' do
visit
dashboard_projects_path
expect
(
page
).
to
have_selector
(
'[data-testid="project_topic_list"]'
)
expect
(
page
).
to
have_link
(
'topic1'
,
href:
explore_projects_path
(
topic
:
'topic1'
))
expect
(
page
).
to
have_link
(
'topic1'
,
href:
topic_explore_projects_path
(
topic_name
:
'topic1'
))
end
end
...
...
spec/features/projects_spec.rb
View file @
3b325e92
...
...
@@ -133,7 +133,7 @@ RSpec.describe 'Project' do
visit
path
expect
(
page
).
to
have_selector
(
'[data-testid="project_topic_list"]'
)
expect
(
page
).
to
have_link
(
'topic1'
,
href:
explore_projects_path
(
topic
:
'topic1'
))
expect
(
page
).
to
have_link
(
'topic1'
,
href:
topic_explore_projects_path
(
topic_name
:
'topic1'
))
end
it
'shows up to 3 project topics'
do
...
...
@@ -142,9 +142,9 @@ RSpec.describe 'Project' do
visit
path
expect
(
page
).
to
have_selector
(
'[data-testid="project_topic_list"]'
)
expect
(
page
).
to
have_link
(
'topic1'
,
href:
explore_projects_path
(
topic
:
'topic1'
))
expect
(
page
).
to
have_link
(
'topic2'
,
href:
explore_projects_path
(
topic
:
'topic2'
))
expect
(
page
).
to
have_link
(
'topic3'
,
href:
explore_projects_path
(
topic
:
'topic3'
))
expect
(
page
).
to
have_link
(
'topic1'
,
href:
topic_explore_projects_path
(
topic_name
:
'topic1'
))
expect
(
page
).
to
have_link
(
'topic2'
,
href:
topic_explore_projects_path
(
topic_name
:
'topic2'
))
expect
(
page
).
to
have_link
(
'topic3'
,
href:
topic_explore_projects_path
(
topic_name
:
'topic3'
))
expect
(
page
).
to
have_content
(
'+ 1 more'
)
end
end
...
...
spec/features/topic_show_spec.rb
0 → 100644
View file @
3b325e92
# frozen_string_literal: true
require
'spec_helper'
RSpec
.
describe
'Topic show page'
do
let_it_be
(
:topic
)
{
create
(
:topic
,
name:
'my-topic'
,
description:
'This is **my** topic https://google.com/ :poop: ```\ncode\n```'
,
avatar:
fixture_file_upload
(
"spec/fixtures/dk.png"
,
"image/png"
))
}
context
'when topic does not exist'
do
let
(
:path
)
{
topic_explore_projects_path
(
topic_name:
'non-existing'
)
}
it
'renders 404'
do
visit
path
expect
(
status_code
).
to
eq
(
404
)
end
end
context
'when topic exists'
do
before
do
visit
topic_explore_projects_path
(
topic_name:
topic
.
name
)
end
it
'shows name, avatar and description as markdown'
do
expect
(
page
).
to
have_content
(
topic
.
name
)
expect
(
page
).
to
have_selector
(
'.avatar-container > img.topic-avatar'
)
expect
(
find
(
'.topic-description'
)).
to
have_selector
(
'p > strong'
)
expect
(
find
(
'.topic-description'
)).
to
have_selector
(
'p > a[rel]'
)
expect
(
find
(
'.topic-description'
)).
to
have_selector
(
'p > gl-emoji'
)
expect
(
find
(
'.topic-description'
)).
to
have_selector
(
'p > code'
)
end
context
'with associated projects'
do
let!
(
:project
)
{
create
(
:project
,
:public
,
topic_list:
topic
.
name
)
}
it
'shows project list'
do
visit
topic_explore_projects_path
(
topic_name:
topic
.
name
)
expect
(
find
(
'.projects-list .project-name'
)).
to
have_content
(
project
.
name
)
end
end
context
'without associated projects'
do
it
'shows correct empty state message'
do
expect
(
page
).
to
have_content
(
'Explore public groups to find projects to contribute to.'
)
end
end
end
end
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