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
0
Merge Requests
0
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
Jérome Perrin
gitlab-ce
Commits
197dad2e
Commit
197dad2e
authored
Apr 06, 2017
by
Jacob Schatz
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'update-issue-board-cards-design' into 'master'
Update issue board cards design See merge request !10353
parents
69bf7bfa
923a2adc
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
84 additions
and
42 deletions
+84
-42
app/assets/javascripts/boards/components/issue_card_inner.js
app/assets/javascripts/boards/components/issue_card_inner.js
+47
-20
app/assets/stylesheets/pages/boards.scss
app/assets/stylesheets/pages/boards.scss
+24
-13
changelogs/unreleased/update-issue-board-cards-design.yml
changelogs/unreleased/update-issue-board-cards-design.yml
+4
-0
spec/features/boards/add_issues_modal_spec.rb
spec/features/boards/add_issues_modal_spec.rb
+9
-9
No files found.
app/assets/javascripts/boards/components/issue_card_inner.js
View file @
197dad2e
...
@@ -20,6 +20,7 @@ import eventHub from '../eventhub';
...
@@ -20,6 +20,7 @@ import eventHub from '../eventhub';
list
:
{
list
:
{
type
:
Object
,
type
:
Object
,
required
:
false
,
required
:
false
,
default
:
()
=>
({}),
},
},
rootPath
:
{
rootPath
:
{
type
:
String
,
type
:
String
,
...
@@ -31,6 +32,26 @@ import eventHub from '../eventhub';
...
@@ -31,6 +32,26 @@ import eventHub from '../eventhub';
default
:
false
,
default
:
false
,
},
},
},
},
computed
:
{
cardUrl
()
{
return
`
${
this
.
issueLinkBase
}
/
${
this
.
issue
.
id
}
`
;
},
assigneeUrl
()
{
return
`
${
this
.
rootPath
}${
this
.
issue
.
assignee
.
username
}
`
;
},
assigneeUrlTitle
()
{
return
`Assigned to
${
this
.
issue
.
assignee
.
name
}
`
;
},
avatarUrlTitle
()
{
return
`Avatar for
${
this
.
issue
.
assignee
.
name
}
`
;
},
issueId
()
{
return
`#
${
this
.
issue
.
id
}
`
;
},
showLabelFooter
()
{
return
this
.
issue
.
labels
.
find
(
l
=>
this
.
showLabel
(
l
))
!==
undefined
;
},
},
methods
:
{
methods
:
{
showLabel
(
label
)
{
showLabel
(
label
)
{
if
(
!
this
.
list
)
return
true
;
if
(
!
this
.
list
)
return
true
;
...
@@ -67,35 +88,41 @@ import eventHub from '../eventhub';
...
@@ -67,35 +88,41 @@ import eventHub from '../eventhub';
},
},
template
:
`
template
:
`
<div>
<div>
<div class="card-header">
<h4 class="card-title">
<h4 class="card-title">
<i
<i
class="fa fa-eye-slash confidential-icon"
class="fa fa-eye-slash confidential-icon"
v-if="issue.confidential"></i>
v-if="issue.confidential"
aria-hidden="true"
/>
<a
<a
:href="issueLinkBase + '/' + issue.id"
class="js-no-trigger"
:title="issue.title">
:href="cardUrl"
{{ issue.title }}
:title="issue.title">{{ issue.title }}</a>
</a>
</h4>
<div class="card-footer">
<span
<span
class="card-number"
class="card-number"
v-if="issue.id">
v-if="issue.id"
#{{ issue.id }}
>
{{ issueId }}
</span>
</span>
</h4>
<a
<a
class="card-assignee has-tooltip js-no-trigger"
class="card-assignee has-tooltip js-no-trigger"
:href="
rootPath + issue.assignee.username
"
:href="
assigneeUrl
"
:title="
'Assigned to ' + issue.assignee.nam
e"
:title="
assigneeUrlTitl
e"
v-if="issue.assignee"
v-if="issue.assignee"
data-container="body">
data-container="body"
>
<img
<img
class="avatar avatar-inline s20 js-no-trigger"
class="avatar avatar-inline s20 js-no-trigger"
:src="issue.assignee.avatar"
:src="issue.assignee.avatar"
width="20"
width="20"
height="20"
height="20"
:alt="'Avatar for ' + issue.assignee.name" />
:alt="avatarUrlTitle"
/>
</a>
</a>
</div>
<div class="card-footer" v-if="showLabelFooter">
<button
<button
class="label color-label has-tooltip js-no-trigger"
class="label color-label has-tooltip js-no-trigger"
v-for="label in issue.labels"
v-for="label in issue.labels"
...
...
app/assets/stylesheets/pages/boards.scss
View file @
197dad2e
...
@@ -197,7 +197,7 @@
...
@@ -197,7 +197,7 @@
.card
{
.card
{
position
:
relative
;
position
:
relative
;
padding
:
1
0
px
$gl-padding
;
padding
:
1
1px
10px
11
px
$gl-padding
;
background
:
$white-light
;
background
:
$white-light
;
border-radius
:
$border-radius-default
;
border-radius
:
$border-radius-default
;
box-shadow
:
0
1px
2px
$issue-boards-card-shadow
;
box-shadow
:
0
1px
2px
$issue-boards-card-shadow
;
...
@@ -217,6 +217,8 @@
...
@@ -217,6 +217,8 @@
}
}
.confidential-icon
{
.confidential-icon
{
position
:
relative
;
top
:
1px
;
margin-right
:
5px
;
margin-right
:
5px
;
}
}
}
}
...
@@ -224,34 +226,43 @@
...
@@ -224,34 +226,43 @@
.card-title
{
.card-title
{
margin
:
0
;
margin
:
0
;
font-size
:
1em
;
font-size
:
1em
;
line-height
:
inherit
;
a
{
a
{
color
:
inherit
;
color
:
$gl-text-color
;
word-wrap
:
break-word
;
word-wrap
:
break-word
;
margin-right
:
2px
;
}
}
}
}
.card-footer
{
.card-header
{
margin-top
:
5px
;
display
:
flex
;
line-height
:
25px
;
min-height
:
20px
;
.label
{
margin-right
:
5px
;
font-size
:
(
14px
/
$issue-boards-font-size
)
*
1em
;
}
.card-assignee
{
.card-assignee
{
margin-left
:
auto
;
margin-right
:
5px
;
margin-right
:
5px
;
padding-left
:
10px
;
height
:
20px
;
}
}
.avatar
{
.avatar
{
margin-left
:
0
;
margin
:
0
;
margin-right
:
0
;
}
}
.card-footer
{
margin
:
0
0
5px
;
.label
{
margin-top
:
5px
;
margin-right
:
6px
;
}
}
}
}
.card-number
{
.card-number
{
margin-right
:
5px
;
font-size
:
12px
;
color
:
$gl-text-color-secondary
;
}
}
.issue-boards-search
{
.issue-boards-search
{
...
...
changelogs/unreleased/update-issue-board-cards-design.yml
0 → 100644
View file @
197dad2e
---
title
:
Update issue board cards design
merge_request
:
10353
author
:
spec/features/boards/add_issues_modal_spec.rb
View file @
197dad2e
...
@@ -145,7 +145,7 @@ describe 'Issue Boards add issue modal', :feature, :js do
...
@@ -145,7 +145,7 @@ describe 'Issue Boards add issue modal', :feature, :js do
context
'selecing issues'
do
context
'selecing issues'
do
it
'selects single issue'
do
it
'selects single issue'
do
page
.
within
(
'.add-issues-modal'
)
do
page
.
within
(
'.add-issues-modal'
)
do
first
(
'.card'
).
click
first
(
'.card
.card-number
'
).
click
page
.
within
(
'.nav-links'
)
do
page
.
within
(
'.nav-links'
)
do
expect
(
page
).
to
have_content
(
'Selected issues 1'
)
expect
(
page
).
to
have_content
(
'Selected issues 1'
)
...
@@ -155,7 +155,7 @@ describe 'Issue Boards add issue modal', :feature, :js do
...
@@ -155,7 +155,7 @@ describe 'Issue Boards add issue modal', :feature, :js do
it
'changes button text'
do
it
'changes button text'
do
page
.
within
(
'.add-issues-modal'
)
do
page
.
within
(
'.add-issues-modal'
)
do
first
(
'.card'
).
click
first
(
'.card
.card-number
'
).
click
expect
(
first
(
'.add-issues-footer .btn'
)).
to
have_content
(
'Add 1 issue'
)
expect
(
first
(
'.add-issues-footer .btn'
)).
to
have_content
(
'Add 1 issue'
)
end
end
...
@@ -163,7 +163,7 @@ describe 'Issue Boards add issue modal', :feature, :js do
...
@@ -163,7 +163,7 @@ describe 'Issue Boards add issue modal', :feature, :js do
it
'changes button text with plural'
do
it
'changes button text with plural'
do
page
.
within
(
'.add-issues-modal'
)
do
page
.
within
(
'.add-issues-modal'
)
do
all
(
'.card'
).
each
do
|
el
|
all
(
'.card
.card-number
'
).
each
do
|
el
|
el
.
click
el
.
click
end
end
...
@@ -173,7 +173,7 @@ describe 'Issue Boards add issue modal', :feature, :js do
...
@@ -173,7 +173,7 @@ describe 'Issue Boards add issue modal', :feature, :js do
it
'shows only selected issues on selected tab'
do
it
'shows only selected issues on selected tab'
do
page
.
within
(
'.add-issues-modal'
)
do
page
.
within
(
'.add-issues-modal'
)
do
first
(
'.card'
).
click
first
(
'.card
.card-number
'
).
click
click_link
'Selected issues'
click_link
'Selected issues'
...
@@ -203,7 +203,7 @@ describe 'Issue Boards add issue modal', :feature, :js do
...
@@ -203,7 +203,7 @@ describe 'Issue Boards add issue modal', :feature, :js do
it
'selects all that arent already selected'
do
it
'selects all that arent already selected'
do
page
.
within
(
'.add-issues-modal'
)
do
page
.
within
(
'.add-issues-modal'
)
do
first
(
'.card'
).
click
first
(
'.card
.card-number
'
).
click
expect
(
page
).
to
have_selector
(
'.is-active'
,
count:
1
)
expect
(
page
).
to
have_selector
(
'.is-active'
,
count:
1
)
...
@@ -215,11 +215,11 @@ describe 'Issue Boards add issue modal', :feature, :js do
...
@@ -215,11 +215,11 @@ describe 'Issue Boards add issue modal', :feature, :js do
it
'unselects from selected tab'
do
it
'unselects from selected tab'
do
page
.
within
(
'.add-issues-modal'
)
do
page
.
within
(
'.add-issues-modal'
)
do
first
(
'.card'
).
click
first
(
'.card
.card-number
'
).
click
click_link
'Selected issues'
click_link
'Selected issues'
first
(
'.card'
).
click
first
(
'.card
.card-number
'
).
click
expect
(
page
).
not_to
have_selector
(
'.is-active'
)
expect
(
page
).
not_to
have_selector
(
'.is-active'
)
end
end
...
@@ -229,7 +229,7 @@ describe 'Issue Boards add issue modal', :feature, :js do
...
@@ -229,7 +229,7 @@ describe 'Issue Boards add issue modal', :feature, :js do
context
'adding issues'
do
context
'adding issues'
do
it
'adds to board'
do
it
'adds to board'
do
page
.
within
(
'.add-issues-modal'
)
do
page
.
within
(
'.add-issues-modal'
)
do
first
(
'.card'
).
click
first
(
'.card
.card-number
'
).
click
click_button
'Add 1 issue'
click_button
'Add 1 issue'
end
end
...
@@ -241,7 +241,7 @@ describe 'Issue Boards add issue modal', :feature, :js do
...
@@ -241,7 +241,7 @@ describe 'Issue Boards add issue modal', :feature, :js do
it
'adds to second list'
do
it
'adds to second list'
do
page
.
within
(
'.add-issues-modal'
)
do
page
.
within
(
'.add-issues-modal'
)
do
first
(
'.card'
).
click
first
(
'.card
.card-number
'
).
click
click_button
planning
.
title
click_button
planning
.
title
...
...
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