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
1d3e3060
Commit
1d3e3060
authored
Nov 12, 2020
by
Peter Hegman
Committed by
Olena Horal-Koretska
Nov 12, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Break "New project" and "New subgroup" buttons out of dropdown
Better UX and allows us to get rid of some legacy JS
parent
25de286a
Changes
16
Show whitespace changes
Inline
Side-by-side
Showing
16 changed files
with
60 additions
and
171 deletions
+60
-171
app/assets/javascripts/groups/new_group_child.js
app/assets/javascripts/groups/new_group_child.js
+0
-65
app/assets/javascripts/pages/groups/shared/group_details.js
app/assets/javascripts/pages/groups/shared/group_details.js
+0
-5
app/views/groups/_home_panel.html.haml
app/views/groups/_home_panel.html.haml
+9
-30
app/views/projects/_home_panel.html.haml
app/views/projects/_home_panel.html.haml
+1
-1
app/views/shared/notifications/_new_button.html.haml
app/views/shared/notifications/_new_button.html.haml
+3
-2
changelogs/unreleased/267113-separate-new-group-project-creation-button.yml
...sed/267113-separate-new-group-project-creation-button.yml
+5
-0
doc/user/group/img/create_new_project_from_group_v13_6.png
doc/user/group/img/create_new_project_from_group_v13_6.png
+0
-0
doc/user/group/index.md
doc/user/group/index.md
+1
-1
doc/user/group/subgroups/img/create_subgroup_button.png
doc/user/group/subgroups/img/create_subgroup_button.png
+0
-0
doc/user/group/subgroups/img/create_subgroup_button_v13_6.png
...user/group/subgroups/img/create_subgroup_button_v13_6.png
+0
-0
doc/user/group/subgroups/index.md
doc/user/group/subgroups/index.md
+2
-3
locale/gitlab.pot
locale/gitlab.pot
+0
-6
qa/qa/page/group/show.rb
qa/qa/page/group/show.rb
+7
-30
qa/qa/resource/group.rb
qa/qa/resource/group.rb
+1
-1
spec/features/groups/show_spec.rb
spec/features/groups/show_spec.rb
+3
-7
spec/features/groups_spec.rb
spec/features/groups_spec.rb
+28
-20
No files found.
app/assets/javascripts/groups/new_group_child.js
deleted
100644 → 0
View file @
25de286a
import
{
visitUrl
}
from
'
../lib/utils/url_utility
'
;
import
DropLab
from
'
../droplab/drop_lab
'
;
import
ISetter
from
'
../droplab/plugins/input_setter
'
;
const
InputSetter
=
{
...
ISetter
};
const
NEW_PROJECT
=
'
new-project
'
;
const
NEW_SUBGROUP
=
'
new-subgroup
'
;
export
default
class
NewGroupChild
{
constructor
(
buttonWrapper
)
{
this
.
buttonWrapper
=
buttonWrapper
;
this
.
newGroupChildButton
=
this
.
buttonWrapper
.
querySelector
(
'
.js-new-group-child
'
);
this
.
dropdownToggle
=
this
.
buttonWrapper
.
querySelector
(
'
.js-dropdown-toggle
'
);
this
.
dropdownList
=
this
.
buttonWrapper
.
querySelector
(
'
.dropdown-menu
'
);
this
.
newGroupPath
=
this
.
buttonWrapper
.
dataset
.
projectPath
;
this
.
subgroupPath
=
this
.
buttonWrapper
.
dataset
.
subgroupPath
;
this
.
init
();
}
init
()
{
this
.
initDroplab
();
this
.
bindEvents
();
}
initDroplab
()
{
this
.
droplab
=
new
DropLab
();
this
.
droplab
.
init
(
this
.
dropdownToggle
,
this
.
dropdownList
,
[
InputSetter
],
this
.
getDroplabConfig
(),
);
}
getDroplabConfig
()
{
return
{
InputSetter
:
[
{
input
:
this
.
newGroupChildButton
,
valueAttribute
:
'
data-value
'
,
inputAttribute
:
'
data-action
'
,
},
{
input
:
this
.
newGroupChildButton
,
valueAttribute
:
'
data-text
'
,
},
],
};
}
bindEvents
()
{
this
.
newGroupChildButton
.
addEventListener
(
'
click
'
,
this
.
onClickNewGroupChildButton
.
bind
(
this
));
}
onClickNewGroupChildButton
(
e
)
{
if
(
e
.
target
.
dataset
.
action
===
NEW_PROJECT
)
{
visitUrl
(
this
.
newGroupPath
);
}
else
if
(
e
.
target
.
dataset
.
action
===
NEW_SUBGROUP
)
{
visitUrl
(
this
.
subgroupPath
);
}
}
}
app/assets/javascripts/pages/groups/shared/group_details.js
View file @
1d3e3060
...
...
@@ -2,7 +2,6 @@
import
{
getPagePath
,
getDashPath
}
from
'
~/lib/utils/common_utils
'
;
import
{
ACTIVE_TAB_SHARED
,
ACTIVE_TAB_ARCHIVED
}
from
'
~/groups/constants
'
;
import
NewGroupChild
from
'
~/groups/new_group_child
'
;
import
notificationsDropdown
from
'
~/notifications_dropdown
'
;
import
NotificationsForm
from
'
~/notifications_form
'
;
import
ProjectsList
from
'
~/projects_list
'
;
...
...
@@ -11,7 +10,6 @@ import GroupTabs from './group_tabs';
import
initInviteMembersBanner
from
'
~/groups/init_invite_members_banner
'
;
export
default
function
initGroupDetails
(
actionName
=
'
show
'
)
{
const
newGroupChildWrapper
=
document
.
querySelector
(
'
.js-new-project-subgroup
'
);
const
loadableActions
=
[
ACTIVE_TAB_SHARED
,
ACTIVE_TAB_ARCHIVED
];
const
dashPath
=
getDashPath
();
let
action
=
loadableActions
.
includes
(
dashPath
)
?
dashPath
:
getPagePath
(
1
);
...
...
@@ -25,8 +23,5 @@ export default function initGroupDetails(actionName = 'show') {
notificationsDropdown
();
new
ProjectsList
();
if
(
newGroupChildWrapper
)
{
new
NewGroupChild
(
newGroupChildWrapper
);
}
initInviteMembersBanner
();
}
app/views/groups/_home_panel.html.haml
View file @
1d3e3060
...
...
@@ -20,37 +20,16 @@
%span
.access-request-links.gl-ml-3
=
render
'shared/members/access_request_links'
,
source:
@group
.home-panel-buttons.col-md-12.col-lg-6
.d-inline-flex.flex-wrap.justify-content-lg-end
.home-panel-buttons.col-md-12.col-lg-6
-
if
current_user
.group-buttons
=
render
'shared/notifications/new_button'
,
notification_setting:
@notification_setting
,
btn_class:
'btn'
,
emails_disabled:
emails_disabled
-
new_project_label
=
_
(
"New project"
)
-
new_subgroup_label
=
_
(
"New subgroup"
)
-
if
can_create_projects
and
can_create_subgroups
.btn-group.new-project-subgroup.droplab-dropdown.home-panel-action-button.gl-mt-3.js-new-project-subgroup.qa-new-project-or-subgroup-dropdown
{
data:
{
project_path:
new_project_path
(
namespace_id:
@group
.
id
),
subgroup_path:
new_group_path
(
parent_id:
@group
.
id
)
}
}
%input
.btn.btn-success.dropdown-primary.js-new-group-child.qa-new-in-group-button
{
type:
"button"
,
value:
new_project_label
,
data:
{
action:
"new-project"
}
}
%button
.btn.btn-success.dropdown-toggle.js-dropdown-toggle.qa-new-project-or-subgroup-dropdown-toggle
{
type:
"button"
,
data:
{
"dropdown-trigger"
=>
"#new-project-or-subgroup-dropdown"
,
'display'
=>
'static'
}
}
=
sprite_icon
(
"chevron-down"
,
css_class:
"icon dropdown-btn-icon"
)
%ul
#new-project-or-subgroup-dropdown
.dropdown-menu.dropdown-menu-right
{
data:
{
dropdown:
true
}
}
%li
.droplab-item-selected.qa-new-project-option
{
role:
"button"
,
data:
{
value:
"new-project"
,
text:
new_project_label
}
}
.menu-item
.icon-container
=
sprite_icon
(
"check"
,
css_class:
"list-item-checkmark"
)
.description
%strong
=
new_project_label
%span
=
s_
(
"GroupsTree|Create a project in this group."
)
%li
.divider.droplap-item-ignore
%li
.qa-new-subgroup-option
{
role:
"button"
,
data:
{
value:
"new-subgroup"
,
text:
new_subgroup_label
}
}
.menu-item
.icon-container
=
sprite_icon
(
"check"
,
css_class:
"list-item-checkmark"
)
.description
%strong
=
new_subgroup_label
%span
=
s_
(
"GroupsTree|Create a subgroup in this group."
)
-
elsif
can_create_projects
=
link_to
new_project_label
,
new_project_path
(
namespace_id:
@group
.
id
),
class:
"btn btn-success gl-mt-3"
-
elsif
can_create_subgroups
=
link_to
new_subgroup_label
,
new_group_path
(
parent_id:
@group
.
id
),
class:
"btn btn-success gl-mt-3"
.gl-display-flex.gl-flex-wrap.gl-lg-justify-content-end.gl-mx-n2
{
data:
{
testid:
'group-buttons'
}
}
=
render
'shared/notifications/new_button'
,
notification_setting:
@notification_setting
,
btn_class:
'btn gl-button gl-sm-w-auto gl-w-full'
,
dropdown_container_class:
'gl-mr-0 gl-px-2 gl-sm-w-auto gl-w-full'
,
emails_disabled:
emails_disabled
-
if
can_create_subgroups
.gl-px-2.gl-sm-w-auto.gl-w-full
=
link_to
_
(
"New subgroup"
),
new_group_path
(
parent_id:
@group
.
id
),
class:
"btn btn-success btn-md gl-button btn-success-secondary gl-mt-3 gl-sm-w-auto gl-w-full"
,
data:
{
qa_selector:
'new_subgroup_button'
}
-
if
can_create_projects
.gl-px-2.gl-sm-w-auto.gl-w-full
=
link_to
_
(
"New project"
),
new_project_path
(
namespace_id:
@group
.
id
),
class:
"btn btn-success btn-md gl-button gl-mt-3 gl-sm-w-auto gl-w-full"
,
data:
{
qa_selector:
'new_project_button'
}
-
if
@group
.
description
.
present?
.group-home-desc.mt-1
...
...
app/views/projects/_home_panel.html.haml
View file @
1d3e3060
...
...
@@ -44,7 +44,7 @@
.project-repo-buttons.col-md-12.col-lg-6.d-inline-flex.flex-wrap.justify-content-lg-end
-
if
current_user
.d-inline-flex
=
render
'shared/notifications/new_button'
,
notification_setting:
@notification_setting
,
btn_class:
'btn-xs'
,
emails_disabled:
emails_disabled
=
render
'shared/notifications/new_button'
,
notification_setting:
@notification_setting
,
btn_class:
'btn-xs'
,
dropdown_container_class:
'gl-mr-3'
,
emails_disabled:
emails_disabled
.count-buttons.d-inline-flex
=
render
'projects/buttons/star'
...
...
app/views/shared/notifications/_new_button.html.haml
View file @
1d3e3060
-
btn_class
=
local_assigns
.
fetch
(
:btn_class
,
''
)
-
dropdown_container_class
=
local_assigns
.
fetch
(
:dropdown_container_class
,
''
)
-
emails_disabled
=
local_assigns
.
fetch
(
:emails_disabled
,
false
)
-
if
notification_setting
...
...
@@ -8,8 +9,8 @@
-
else
-
button_title
=
_
(
"Notification setting - %{notification_title}"
)
%
{
notification_title:
notification_title
(
notification_setting
.
level
)
}
.js-notification-dropdown.notification-dropdown.home-panel-action-button.gl-mt-3.
gl-mr-3.dropdown.inline
=
form_for
notification_setting
,
remote:
true
,
html:
{
class:
"
inline
notification-form no-label"
}
do
|
f
|
.js-notification-dropdown.notification-dropdown.home-panel-action-button.gl-mt-3.
dropdown.inline
{
class:
dropdown_container_class
}
=
form_for
notification_setting
,
remote:
true
,
html:
{
class:
"notification-form no-label"
}
do
|
f
|
=
hidden_setting_source_input
(
notification_setting
)
=
hidden_field_tag
"hide_label"
,
true
=
f
.
hidden_field
:level
,
class:
"notification_setting_level"
...
...
changelogs/unreleased/267113-separate-new-group-project-creation-button.yml
0 → 100644
View file @
1d3e3060
---
title
:
Move "New subgroup" and "New project" out of the dropdown into individual buttons
merge_request
:
46907
author
:
type
:
changed
doc/user/group/img/create_new_project_from_group_v13_6.png
0 → 100644
View file @
1d3e3060
39.1 KB
doc/user/group/index.md
View file @
1d3e3060
...
...
@@ -235,7 +235,7 @@ There are two different ways to add a new project to a group:
-
Select a group, and then click
**New project**
. You can then continue
[
creating your project
](
../../gitlab-basics/create-project.md
)
.
!
[
New project
](
img/create_new_project_from_group.png
)
!
[
New project
](
img/create_new_project_from_group
_v13_6
.png
)
-
While you are creating a project, select a group namespace
you've already created from the dropdown menu.
...
...
doc/user/group/subgroups/img/create_subgroup_button.png
deleted
100644 → 0
View file @
25de286a
10.9 KB
doc/user/group/subgroups/img/create_subgroup_button_v13_6.png
0 → 100644
View file @
1d3e3060
16.6 KB
doc/user/group/subgroups/index.md
View file @
1d3e3060
...
...
@@ -99,10 +99,9 @@ creation is disabled by an administrator in their settings.
To create a subgroup:
1.
In the group's dashboard expand the
**New project**
split button, select
**New subgroup**
and click the
**New subgroup**
button.
1.
In the group's dashboard click the
**New subgroup**
button.
!
[
Subgroups page
](
img/create_subgroup_button.png
)
!
[
Subgroups page
](
img/create_subgroup_button
_v13_6
.png
)
1.
Create a new group like you would normally do. Notice that the immediate parent group
namespace is fixed under
**Group path**
. The visibility level can differ from
...
...
locale/gitlab.pot
View file @
1d3e3060
...
...
@@ -13560,12 +13560,6 @@ msgstr ""
msgid "GroupsTree|Are you sure you want to leave the \"%{fullName}\" group?"
msgstr ""
msgid "GroupsTree|Create a project in this group."
msgstr ""
msgid "GroupsTree|Create a subgroup in this group."
msgstr ""
msgid "GroupsTree|Edit group"
msgstr ""
...
...
qa/qa/page/group/show.rb
View file @
1d3e3060
...
...
@@ -7,11 +7,8 @@ module QA
include
Page
::
Component
::
GroupsFilter
view
'app/views/groups/_home_panel.html.haml'
do
element
:new_project_or_subgroup_dropdown
element
:new_project_or_subgroup_dropdown_toggle
element
:new_project_option
element
:new_subgroup_option
element
:new_in_group_button
element
:new_project_button
element
:new_subgroup_button
end
view
'app/assets/javascripts/groups/constants.js'
do
...
...
@@ -26,8 +23,9 @@ module QA
click_link
name
end
def
has_new_project_or_subgroup_dropdown?
has_element?
(
:new_project_or_subgroup_dropdown
)
def
has_new_project_and_new_subgroup_buttons?
has_element?
(
:new_project_button
)
has_element?
(
:new_subgroup_button
)
end
def
has_subgroup?
(
name
)
...
...
@@ -35,15 +33,11 @@ module QA
end
def
go_to_new_subgroup
select_kind
:new_subgroup_option
click_element
:new_in_group_button
click_element
:new_subgroup_button
end
def
go_to_new_project
select_kind
:new_project_option
click_element
:new_in_group_button
click_element
:new_project_button
end
def
leave_group
...
...
@@ -51,23 +45,6 @@ module QA
click_element
:leave_group_link
end
end
private
def
select_kind
(
kind
)
QA
::
Support
::
Retrier
.
retry_on_exception
(
sleep_interval:
1.0
)
do
within_element
(
:new_project_or_subgroup_dropdown
)
do
# May need to click again because it is possible to click the button quicker than the JS is bound
wait_until
(
reload:
false
)
do
click_element
:new_project_or_subgroup_dropdown_toggle
has_element?
(
kind
)
end
click_element
kind
end
end
end
end
end
end
...
...
qa/qa/resource/group.rb
View file @
1d3e3060
...
...
@@ -44,7 +44,7 @@ module QA
# Ensure that the group was actually created
group_show
.
wait_until
(
sleep_interval:
1
)
do
group_show
.
has_text?
(
path
)
&&
group_show
.
has_new_project_
or_subgroup_dropdown
?
group_show
.
has_new_project_
and_new_subgroup_buttons
?
end
end
end
...
...
spec/features/groups/show_spec.rb
View file @
1d3e3060
...
...
@@ -81,8 +81,7 @@ RSpec.describe 'Group show page' do
it
'allows creating subgroups'
do
visit
path
expect
(
page
)
.
to
have_css
(
"li[data-text='New subgroup']"
,
visible:
false
)
expect
(
page
).
to
have_link
(
'New subgroup'
)
end
end
end
...
...
@@ -102,8 +101,7 @@ RSpec.describe 'Group show page' do
path
=
group_path
(
relaxed_group
)
visit
path
expect
(
page
)
.
to
have_css
(
"li[data-text='New subgroup']"
,
visible:
false
)
expect
(
page
).
to
have_link
(
'New subgroup'
)
end
end
...
...
@@ -116,9 +114,7 @@ RSpec.describe 'Group show page' do
path
=
group_path
(
restricted_group
)
visit
path
expect
(
page
)
.
not_to
have_selector
(
"li[data-text='New subgroup']"
,
visible:
false
)
expect
(
page
).
not_to
have_link
(
'New subgroup'
)
end
end
end
...
...
spec/features/groups_spec.rb
View file @
1d3e3060
...
...
@@ -294,25 +294,19 @@ RSpec.describe 'Group' do
describe
'new subgroup / project button'
do
let
(
:group
)
{
create
(
:group
,
project_creation_level:
Gitlab
::
Access
::
NO_ONE_PROJECT_ACCESS
,
subgroup_creation_level:
Gitlab
::
Access
::
OWNER_SUBGROUP_ACCESS
)
}
it
'new subgroup button is displayed without project creation permission'
do
context
'when user has subgroup creation permissions but not project creation permissions'
do
it
'only displays "New subgroup" button'
do
visit
group_path
(
group
)
page
.
within
'.group-buttons
'
do
page
.
within
'[data-testid="group-buttons"]
'
do
expect
(
page
).
to
have_link
(
'New subgroup'
)
expect
(
page
).
not_to
have_link
(
'New project'
)
end
end
it
'new subgroup button is displayed together with new project button when having project creation permission'
do
group
.
update!
(
project_creation_level:
Gitlab
::
Access
::
MAINTAINER_PROJECT_ACCESS
)
visit
group_path
(
group
)
page
.
within
'.group-buttons'
do
expect
(
page
).
to
have_css
(
"li[data-text='New subgroup']"
,
visible:
false
)
expect
(
page
).
to
have_css
(
"li[data-text='New project']"
,
visible:
false
)
end
end
it
'new project button is displayed without subgroup creation permission'
do
context
'when user has project creation permissions but not subgroup creation permissions'
do
it
'only displays "New project" button'
do
group
.
update!
(
project_creation_level:
Gitlab
::
Access
::
MAINTAINER_PROJECT_ACCESS
)
user
=
create
(
:user
)
...
...
@@ -321,8 +315,22 @@ RSpec.describe 'Group' do
sign_in
(
user
)
visit
group_path
(
group
)
page
.
within
'.group-buttons
'
do
page
.
within
'[data-testid="group-buttons"]
'
do
expect
(
page
).
to
have_link
(
'New project'
)
expect
(
page
).
not_to
have_link
(
'New subgroup'
)
end
end
end
context
'when user has project and subgroup creation permissions'
do
it
'displays "New subgroup" and "New project" buttons'
do
group
.
update!
(
project_creation_level:
Gitlab
::
Access
::
MAINTAINER_PROJECT_ACCESS
)
visit
group_path
(
group
)
page
.
within
'[data-testid="group-buttons"]'
do
expect
(
page
).
to
have_link
(
'New subgroup'
)
expect
(
page
).
to
have_link
(
'New project'
)
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