Skip to content
代码片段 群组 项目
提交 a8b85ebe 编辑于 作者: David Pisek's avatar David Pisek
浏览文件

Merge branch '383296-support-disabled-state' into 'master'

Add support of disabled state to shared filter item component

See merge request https://gitlab.com/gitlab-org/gitlab/-/merge_requests/105125



Merged-by: default avatarDavid Pisek <dpisek@gitlab.com>
Approved-by: default avatarDaniel Tian <dtian@gitlab.com>
Approved-by: default avatarDavid Pisek <dpisek@gitlab.com>
Co-authored-by: default avatarSamantha Ming <sming@gitlab.com>
No related branches found
No related tags found
无相关合并请求
......@@ -13,6 +13,11 @@ export default {
required: false,
default: '',
},
disabled: {
type: Boolean,
required: false,
default: false,
},
},
computed: {
qaSelector() {
......@@ -23,12 +28,20 @@ export default {
</script>
<template>
<!--
// Once GlDropdownItem support a disabled state, the custom classes can be removed
// See https://gitlab.com/gitlab-org/gitlab-ui/-/issues/2092
-->
<gl-dropdown-item
is-check-item
:is-checked="isChecked"
:data-qa-selector="qaSelector"
:disabled="disabled"
:class="{ 'gl-pointer-events-none': disabled }"
@click.native.capture.stop="$emit('click')"
>
<slot>{{ text }}</slot>
<slot>
<span :class="{ 'gl-text-gray-600': disabled }">{{ text }}</span>
</slot>
</gl-dropdown-item>
</template>
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`Filter Item component disabled state renders the disabled dropdown item correctly 1`] = `
<gl-dropdown-item-stub
avatarurl=""
class="gl-pointer-events-none"
data-qa-selector="filter_filter_dropdown"
disabled="true"
iconcolor=""
iconname=""
iconrightarialabel=""
iconrightname=""
ischeckitem="true"
secondarytext=""
>
<span
class="gl-text-gray-600"
>
filter
</span>
</gl-dropdown-item-stub>
`;
......@@ -37,6 +37,16 @@ describe('Filter Item component', () => {
});
});
describe('disabled state', () => {
beforeEach(() => {
createWrapper({ disabled: true });
});
it('renders the disabled dropdown item correctly', () => {
expect(wrapper.element).toMatchSnapshot();
});
});
it.each([true, false])('shows the expected checkmark when isSelected is %s', (isChecked) => {
createWrapper({ isChecked });
expect(dropdownItem().props('isChecked')).toBe(isChecked);
......
0% 加载中 .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册