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
Boxiang Sun
gitlab-ce
Commits
edc096b7
Commit
edc096b7
authored
Apr 18, 2019
by
Roman Rodionov
Committed by
Phil Hughes
Apr 18, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Replace ee-specific code for boards/issue_card_inner
parent
ae534a17
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
23 additions
and
8 deletions
+23
-8
app/assets/javascripts/boards/components/issue_card_inner.vue
...assets/javascripts/boards/components/issue_card_inner.vue
+7
-8
app/assets/javascripts/boards/mixins/issue_card_inner.js
app/assets/javascripts/boards/mixins/issue_card_inner.js
+5
-0
changelogs/unreleased/10012-move-ee-diff-for-boards-issue-card-inner.yml
...leased/10012-move-ee-diff-for-boards-issue-card-inner.yml
+5
-0
spec/javascripts/boards/issue_card_spec.js
spec/javascripts/boards/issue_card_spec.js
+6
-0
No files found.
app/assets/javascripts/boards/components/issue_card_inner.vue
View file @
edc096b7
...
...
@@ -4,6 +4,7 @@ import { GlTooltipDirective } from '@gitlab/ui';
import
{
sprintf
,
__
}
from
'
~/locale
'
;
import
Icon
from
'
~/vue_shared/components/icon.vue
'
;
import
TooltipOnTruncate
from
'
~/vue_shared/components/tooltip_on_truncate.vue
'
;
import
issueCardInner
from
'
ee_else_ce/boards/mixins/issue_card_inner
'
;
import
UserAvatarLink
from
'
../../vue_shared/components/user_avatar/user_avatar_link.vue
'
;
import
eventHub
from
'
../eventhub
'
;
import
IssueDueDate
from
'
./issue_due_date.vue
'
;
...
...
@@ -19,11 +20,13 @@ export default {
TooltipOnTruncate
,
IssueDueDate
,
IssueTimeEstimate
,
IssueCardWeight
:
()
=>
import
(
'
ee_component/boards/components/issue_card_weight.vue
'
),
IssueCardInnerScopedLabel
,
},
directives
:
{
GlTooltip
:
GlTooltipDirective
,
},
mixins
:
[
issueCardInner
],
props
:
{
issue
:
{
type
:
Object
,
...
...
@@ -135,14 +138,6 @@ export default {
this
.
applyFilter
(
filter
);
},
filterByWeight
(
weight
)
{
if
(
!
this
.
updateFilters
)
return
;
const
issueWeight
=
encodeURIComponent
(
weight
);
const
filter
=
`weight=
${
issueWeight
}
`
;
this
.
applyFilter
(
filter
);
},
applyFilter
(
filter
)
{
const
filterPath
=
boardsStore
.
filter
.
path
.
split
(
'
&
'
);
const
filterIndex
=
filterPath
.
indexOf
(
filter
);
...
...
@@ -232,6 +227,10 @@ export default {
<issue-due-date
v-if=
"issue.dueDate"
:date=
"issue.dueDate"
/><issue-time-estimate
v-if=
"issue.timeEstimate"
:estimate=
"issue.timeEstimate"
/><issue-card-weight
v-if=
"issue.weight"
:weight=
"issue.weight"
@
click=
"filterByWeight(issue.weight)"
/>
</span>
</div>
...
...
app/assets/javascripts/boards/mixins/issue_card_inner.js
0 → 100644
View file @
edc096b7
export
default
{
methods
:
{
filterByWeight
()
{},
},
};
changelogs/unreleased/10012-move-ee-diff-for-boards-issue-card-inner.yml
0 → 100644
View file @
edc096b7
---
title
:
Move ee-specific code from boards/components/issue_card_inner.vue
merge_request
:
27394
author
:
Roman Rodionov
type
:
other
spec/javascripts/boards/issue_card_spec.js
View file @
edc096b7
...
...
@@ -285,4 +285,10 @@ describe('Issue card component', () => {
.
catch
(
done
.
fail
);
});
});
describe
(
'
weights
'
,
()
=>
{
it
(
'
not shows weight component
'
,
()
=>
{
expect
(
component
.
$el
.
querySelector
(
'
.board-card-weight
'
)).
toBeNull
();
});
});
});
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