BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
c1ed7f3f
Commit
c1ed7f3f
authored
Mar 05, 2018
by
Kushal Pandya
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
LabelsSelect DropdownValue Component
parent
8b44ad6e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
157 additions
and
0 deletions
+157
-0
dropdown_value.vue
...hared/components/sidebar/labels_select/dropdown_value.vue
+63
-0
dropdown_value_spec.js
...d/components/sidebar/labels_select/dropdown_value_spec.js
+94
-0
No files found.
app/assets/javascripts/vue_shared/components/sidebar/labels_select/dropdown_value.vue
0 → 100644
View file @
c1ed7f3f
<
script
>
import
tooltip
from
'~/vue_shared/directives/tooltip'
;
export
default
{
directives
:
{
tooltip
,
},
props
:
{
labels
:
{
type
:
Array
,
required
:
true
,
},
labelFilterBasePath
:
{
type
:
String
,
required
:
true
,
},
},
computed
:
{
isEmpty
()
{
return
this
.
labels
.
length
===
0
;
},
},
methods
:
{
labelFilterUrl
(
label
)
{
return
`
${
this
.
labelFilterBasePath
}
?label_name[]=
${
encodeURIComponent
(
label
.
title
)}
`
;
},
labelStyle
(
label
)
{
return
{
color
:
label
.
textColor
,
backgroundColor
:
label
.
color
,
};
},
},
};
</
script
>
<
template
>
<div
class=
"hide-collapsed value issuable-show-labels"
>
<span
v-if=
"isEmpty"
class=
"text-secondary"
>
<slot>
{{
__
(
'None'
)
}}
</slot>
</span>
<a
v-else
v-for=
"label in labels"
:key=
"label.id"
:href=
"labelFilterUrl(label)"
>
<span
v-tooltip
class=
"label color-label"
data-placement=
"bottom"
data-container=
"body"
:style=
"labelStyle(label)"
:title=
"label.description"
>
{{
label
.
title
}}
</span>
</a>
</div>
</
template
>
spec/javascripts/vue_shared/components/sidebar/labels_select/dropdown_value_spec.js
0 → 100644
View file @
c1ed7f3f
import
Vue
from
'vue'
;
import
dropdownValueComponent
from
'~/vue_shared/components/sidebar/labels_select/dropdown_value.vue'
;
import
{
mockConfig
,
mockLabels
}
from
'./mock_data'
;
import
mountComponent
from
'../../../../helpers/vue_mount_component_helper'
;
const
createComponent
=
(
labels
=
mockLabels
,
labelFilterBasePath
=
mockConfig
.
labelFilterBasePath
,
)
=>
{
const
Component
=
Vue
.
extend
(
dropdownValueComponent
);
return
mountComponent
(
Component
,
{
labels
,
labelFilterBasePath
,
});
};
describe
(
'DropdownValueComponent'
,
()
=>
{
let
vm
;
beforeEach
(()
=>
{
vm
=
createComponent
();
});
afterEach
(()
=>
{
vm
.
$destroy
();
});
describe
(
'computed'
,
()
=>
{
describe
(
'isEmpty'
,
()
=>
{
it
(
'returns true if `labels` prop is empty'
,
()
=>
{
const
vmEmptyLabels
=
createComponent
([]);
expect
(
vmEmptyLabels
.
isEmpty
).
toBe
(
true
);
vmEmptyLabels
.
$destroy
();
});
it
(
'returns false if `labels` prop is empty'
,
()
=>
{
expect
(
vm
.
isEmpty
).
toBe
(
false
);
});
});
});
describe
(
'methods'
,
()
=>
{
describe
(
'labelFilterUrl'
,
()
=>
{
it
(
'returns URL string starting with labelFilterBasePath and encoded label.title'
,
()
=>
{
expect
(
vm
.
labelFilterUrl
({
title
:
'Foo bar'
,
})).
toBe
(
'/gitlab-org/my-project/issues?label_name[]=Foo%20bar'
);
});
});
describe
(
'labelStyle'
,
()
=>
{
it
(
'returns object with `color` & `backgroundColor` properties from label.textColor & label.color'
,
()
=>
{
const
label
=
{
textColor
:
'#FFFFFF'
,
color
:
'#BADA55'
,
};
const
styleObj
=
vm
.
labelStyle
(
label
);
expect
(
styleObj
.
color
).
toBe
(
label
.
textColor
);
expect
(
styleObj
.
backgroundColor
).
toBe
(
label
.
color
);
});
});
});
describe
(
'template'
,
()
=>
{
it
(
'renders component container element with classes `hide-collapsed value issuable-show-labels`'
,
()
=>
{
expect
(
vm
.
$el
.
classList
.
contains
(
'hide-collapsed'
,
'value'
,
'issuable-show-labels'
)).
toBe
(
true
);
});
it
(
'render slot content inside component when `labels` prop is empty'
,
()
=>
{
const
vmEmptyLabels
=
createComponent
([]);
expect
(
vmEmptyLabels
.
$el
.
querySelector
(
'.text-secondary'
).
innerText
.
trim
()).
toBe
(
mockConfig
.
emptyValueText
);
vmEmptyLabels
.
$destroy
();
});
it
(
'renders label element with filter URL'
,
()
=>
{
expect
(
vm
.
$el
.
querySelector
(
'a'
).
getAttribute
(
'href'
)).
toBe
(
'/gitlab-org/my-project/issues?label_name[]=Foo%20Label'
);
});
it
(
'renders label element with tooltip and styles based on label details'
,
()
=>
{
const
labelEl
=
vm
.
$el
.
querySelector
(
'a span.label.color-label'
);
expect
(
labelEl
).
not
.
toBeNull
();
expect
(
labelEl
.
dataset
.
placement
).
toBe
(
'bottom'
);
expect
(
labelEl
.
dataset
.
container
).
toBe
(
'body'
);
expect
(
labelEl
.
dataset
.
originalTitle
).
toBe
(
mockLabels
[
0
].
description
);
expect
(
labelEl
.
getAttribute
(
'style'
)).
toBe
(
'background-color: rgb(186, 218, 85);'
);
expect
(
labelEl
.
innerText
.
trim
()).
toBe
(
mockLabels
[
0
].
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