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
da64959b
Commit
da64959b
authored
Jul 29, 2016
by
Phil Hughes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Started new dropdown
parent
c30a9013
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
33 additions
and
5 deletions
+33
-5
app/assets/javascripts/boards/stores/boards_store.js.es6
app/assets/javascripts/boards/stores/boards_store.js.es6
+5
-2
app/assets/stylesheets/pages/boards.scss
app/assets/stylesheets/pages/boards.scss
+13
-0
app/views/shared/issuable/_filter.html.haml
app/views/shared/issuable/_filter.html.haml
+12
-2
app/views/shared/issuable/_label_page_default.html.haml
app/views/shared/issuable/_label_page_default.html.haml
+3
-1
No files found.
app/assets/javascripts/boards/stores/boards_store.js.es6
View file @
da64959b
...
@@ -65,8 +65,11 @@
...
@@ -65,8 +65,11 @@
return label.title === boardFrom.title;
return label.title === boardFrom.title;
});
});
} else {
} else {
if (boardTo.label !== null) {
if (boardTo.label) {
if (boardFrom.id !== 'backlog') {
BoardsStore.removeIssueFromBoard(issue, boardFrom);
BoardsStore.removeIssueFromBoard(issue, boardFrom);
}
foundLabel = _.find(issue.labels, (label) => {
foundLabel = _.find(issue.labels, (label) => {
return label.title === boardTo.title;
return label.title === boardTo.title;
});
});
...
...
app/assets/stylesheets/pages/boards.scss
View file @
da64959b
...
@@ -2,6 +2,19 @@
...
@@ -2,6 +2,19 @@
display
:
none
;
display
:
none
;
}
}
.dropdown-menu-issues-board-new
{
width
:
320px
;
}
.issue-board-dropdown-content
{
padding
:
0px
8px
;
>
p
{
margin
:
0
;
color
:
#9c9c9c
;
}
}
.issue-boards-page
{
.issue-boards-page
{
.page-with-sidebar
{
.page-with-sidebar
{
display
:
flex
;
display
:
flex
;
...
...
app/views/shared/issuable/_filter.html.haml
View file @
da64959b
...
@@ -30,8 +30,18 @@
...
@@ -30,8 +30,18 @@
-
if
controller
.
controller_name
!=
'boards'
-
if
controller
.
controller_name
!=
'boards'
=
render
'shared/sort_dropdown'
=
render
'shared/sort_dropdown'
-
else
-
else
%button
.btn.btn-create
{
type:
"button"
}
.dropdown
%button
.btn.btn-create
{
type:
"button"
,
data:
{
toggle:
"dropdown"
}
}
Create new list
Create new list
.dropdown-menu.dropdown-menu-paging.dropdown-menu-align-right.dropdown-menu-issues-board-new
=
dropdown_title
(
"Create a new list"
)
.issue-board-dropdown-content
%p
Add a list to issue boards by selecting a label below. The list will automatically be populated with issues that have that label. To create a list for a label that doesn't exist yet, simply create the label below.
=
render
partial:
"shared/issuable/label_page_default"
,
locals:
{
show_title:
false
,
show_footer:
true
,
show_create:
true
}
-
if
can?
(
current_user
,
:admin_label
,
@project
)
=
render
partial:
"shared/issuable/label_page_create"
=
dropdown_loading
-
if
controller
.
controller_name
==
'issues'
-
if
controller
.
controller_name
==
'issues'
.issues_bulk_update.hide
.issues_bulk_update.hide
...
...
app/views/shared/issuable/_label_page_default.html.haml
View file @
da64959b
-
title
=
local_assigns
.
fetch
(
:title
,
'Assign labels'
)
-
title
=
local_assigns
.
fetch
(
:title
,
'Assign labels'
)
-
show_create
=
local_assigns
.
fetch
(
:show_create
,
true
)
-
show_create
=
local_assigns
.
fetch
(
:show_create
,
true
)
-
show_footer
=
local_assigns
.
fetch
(
:show_footer
,
true
)
-
show_footer
=
local_assigns
.
fetch
(
:show_footer
,
true
)
-
show_title
=
local_assigns
.
fetch
(
:show_title
,
true
)
-
filter_placeholder
=
local_assigns
.
fetch
(
:filter_placeholder
,
'Search labels'
)
-
filter_placeholder
=
local_assigns
.
fetch
(
:filter_placeholder
,
'Search labels'
)
.dropdown-page-one
.dropdown-page-one
-
if
show_title
=
dropdown_title
(
title
)
=
dropdown_title
(
title
)
=
dropdown_filter
(
filter_placeholder
)
=
dropdown_filter
(
filter_placeholder
)
=
dropdown_content
=
dropdown_content
...
...
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