@eturnity/eturnity_reusable_components 8.7.4--EPDM-12729.3 → 8.7.4--EPDM-12729.4
Sign up to get free protection for your applications and to get access to all the features.
- package/package.json +1 -1
- package/src/assets/svgIcons/plus_button.svg +4 -0
- package/src/assets/svgIcons/star.svg +3 -0
- package/src/assets/svgIcons/switch_polarity.svg +5 -0
- package/src/assets/theme.js +1 -0
- package/src/components/infoText/constants.js +4 -0
- package/src/components/infoText/index.vue +26 -3
- package/src/components/infoText/infoText.spec.js +62 -0
- package/src/components/infoText/infoText.stories.js +48 -0
- package/src/components/inputs/select/index.vue +1 -1
- package/src/components/inputs/select/option/index.vue +2 -3
- package/src/components/sideMenu/index.vue +4 -2
- package/src/components/tableDropdown/index.vue +17 -1
package/package.json
CHANGED
@@ -0,0 +1,5 @@
|
|
1
|
+
<svg width="18" height="18" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<path d="M3.50008 1V3L5.50008 3V4L3.50008 4V6H2.50008V4L0.500075 4L0.500076 3L2.50008 3V1H3.50008Z" fill="#263238"/>
|
3
|
+
<path d="M8.50008 3L13.5001 3V4L8.50008 4V3Z" fill="#263238"/>
|
4
|
+
<path d="M3.70718 8.5L2.20718 10H11.793L10.293 8.5L11.0001 7.79289L13.7072 10.5L11.0001 13.2071L10.293 12.5L11.793 11H2.20718L3.70718 12.5L3.00008 13.2071L0.292969 10.5L3.00008 7.79289L3.70718 8.5Z" fill="#263238"/>
|
5
|
+
</svg>
|
package/src/assets/theme.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
<template>
|
2
|
-
<PageContainer ref="container">
|
2
|
+
<PageContainer ref="container" :type="type">
|
3
3
|
<div
|
4
4
|
ref="icon"
|
5
5
|
data-test-id="infoText_trigger"
|
@@ -7,7 +7,13 @@
|
|
7
7
|
@mouseenter="!isMobile && openTrigger === 'onHover' && showInfo()"
|
8
8
|
@mouseleave="!isMobile && openTrigger === 'onHover' && hideInfo()"
|
9
9
|
>
|
10
|
+
<Dot
|
11
|
+
v-if="type === 'dot'"
|
12
|
+
:color="dotColor"
|
13
|
+
data-test-id="infoText_dot"
|
14
|
+
/>
|
10
15
|
<IconComponent
|
16
|
+
v-else
|
11
17
|
:color="iconColor || computedIconColor"
|
12
18
|
:cursor="isDisabled ? 'not-allowed' : 'pointer'"
|
13
19
|
:disabled="isDisabled"
|
@@ -94,7 +100,7 @@
|
|
94
100
|
`
|
95
101
|
|
96
102
|
const PageContainer = styled('div')`
|
97
|
-
display: inline-block;
|
103
|
+
display: ${(props) => (props.type === 'dot' ? 'unset' : 'inline-block')};
|
98
104
|
position: relative;
|
99
105
|
`
|
100
106
|
|
@@ -108,12 +114,20 @@
|
|
108
114
|
height: auto;
|
109
115
|
`
|
110
116
|
|
117
|
+
const Dot = styled('div')`
|
118
|
+
width: 5px;
|
119
|
+
height: 5px;
|
120
|
+
background-color: ${(props) => props.color};
|
121
|
+
border-radius: 50%;
|
122
|
+
`
|
123
|
+
|
111
124
|
export default {
|
112
125
|
name: 'InfoText',
|
113
126
|
components: {
|
114
127
|
IconComponent,
|
115
128
|
TextOverlay,
|
116
129
|
Arrow,
|
130
|
+
Dot,
|
117
131
|
PageContainer,
|
118
132
|
TextWrapper,
|
119
133
|
OverlayImage,
|
@@ -165,6 +179,16 @@
|
|
165
179
|
default: false,
|
166
180
|
required: false,
|
167
181
|
},
|
182
|
+
dotColor: {
|
183
|
+
type: String,
|
184
|
+
required: false,
|
185
|
+
default: theme.colors.blue2,
|
186
|
+
},
|
187
|
+
type: {
|
188
|
+
type: String,
|
189
|
+
required: false,
|
190
|
+
default: 'info', // info, dot
|
191
|
+
},
|
168
192
|
},
|
169
193
|
setup(props) {
|
170
194
|
const isVisible = ref(false)
|
@@ -354,7 +378,6 @@
|
|
354
378
|
}
|
355
379
|
|
356
380
|
const updatePosition = async () => {
|
357
|
-
console.log('updatePosition')
|
358
381
|
if (!infoBox.value || !textContent.value) return
|
359
382
|
|
360
383
|
// First make the content visible but hidden to get accurate measurements
|
@@ -0,0 +1,62 @@
|
|
1
|
+
/* eslint-disable */
|
2
|
+
import { mount } from '@vue/test-utils'
|
3
|
+
import InfoText from '@/components/infoText'
|
4
|
+
import theme from '@/assets/theme'
|
5
|
+
|
6
|
+
jest.mock('@/components/icon/iconCache.mjs', () => ({
|
7
|
+
// need to mock this due to how jest handles import.meta
|
8
|
+
fetchIcon: jest.fn(() => Promise.resolve('close_for_modals,_tool_tips.svg')),
|
9
|
+
}))
|
10
|
+
|
11
|
+
describe('InfoText Component', () => {
|
12
|
+
let wrapper
|
13
|
+
|
14
|
+
beforeEach(() => {
|
15
|
+
wrapper = mount(InfoText, {
|
16
|
+
props: {
|
17
|
+
text: 'default text',
|
18
|
+
size: '14px',
|
19
|
+
infoPosition: 'bottom',
|
20
|
+
alignArrow: 'center',
|
21
|
+
openTrigger: 'onHover',
|
22
|
+
width: '165px',
|
23
|
+
maxWidth: '165px',
|
24
|
+
shouldUseTeleport: false,
|
25
|
+
dotColor: '#00009f',
|
26
|
+
type: 'info',
|
27
|
+
},
|
28
|
+
global: {
|
29
|
+
provide: {
|
30
|
+
theme,
|
31
|
+
},
|
32
|
+
},
|
33
|
+
})
|
34
|
+
})
|
35
|
+
|
36
|
+
test('renders InfoText component with default props', () => {
|
37
|
+
expect(wrapper.find('[data-test-id="infoText_info"]').exists()).toBe(true)
|
38
|
+
expect(wrapper.vm.text).toContain('default text')
|
39
|
+
expect(wrapper.vm.size).toContain('14px')
|
40
|
+
expect(wrapper.vm.infoPosition).toContain('bottom')
|
41
|
+
expect(wrapper.vm.alignArrow).toContain('center')
|
42
|
+
})
|
43
|
+
|
44
|
+
test('openTrigger prop is set to onClick', async () => {
|
45
|
+
await wrapper.setProps({ openTrigger: 'onClick' })
|
46
|
+
|
47
|
+
//should not see text upon hover
|
48
|
+
expect(wrapper.find('[data-test-id="info_text_wrapper"]').exists()).toBe(
|
49
|
+
false
|
50
|
+
)
|
51
|
+
//should see text upon click
|
52
|
+
await wrapper.find('[data-test-id="infoText_trigger"]').trigger('click')
|
53
|
+
expect(wrapper.find('[data-test-id="info_text_wrapper"]').exists()).toBe(
|
54
|
+
true
|
55
|
+
)
|
56
|
+
})
|
57
|
+
|
58
|
+
test('position type is dot', async () => {
|
59
|
+
await wrapper.setProps({ type: 'dot' })
|
60
|
+
expect(wrapper.find('[data-test-id="infoText_dot"]').exists()).toBe(true)
|
61
|
+
})
|
62
|
+
})
|
@@ -0,0 +1,48 @@
|
|
1
|
+
import InfoText from './index.vue'
|
2
|
+
|
3
|
+
export default {
|
4
|
+
title: 'infoText',
|
5
|
+
component: InfoText,
|
6
|
+
tags: ['autodocs'],
|
7
|
+
parameters: {
|
8
|
+
layout: 'centered',
|
9
|
+
},
|
10
|
+
}
|
11
|
+
|
12
|
+
// import InfoText from "@eturnity/eturnity_reusable_components/src/components/infoText"
|
13
|
+
//To use:
|
14
|
+
// <info-text
|
15
|
+
// text="Veritatis et quasi architecto beatae vitae"
|
16
|
+
// size="20px"
|
17
|
+
// alignArrow="right" // which side the arrow should be on
|
18
|
+
// />
|
19
|
+
|
20
|
+
export const Default = {
|
21
|
+
args: {
|
22
|
+
text: 'default text',
|
23
|
+
size: '14px',
|
24
|
+
infoPosition: 'bottom',
|
25
|
+
alignArrow: 'center',
|
26
|
+
openTrigger: 'onHover',
|
27
|
+
width: '165px',
|
28
|
+
maxWidth: '165px',
|
29
|
+
shouldUseTeleport: false,
|
30
|
+
dotColor: '#00009f',
|
31
|
+
type: 'info',
|
32
|
+
},
|
33
|
+
}
|
34
|
+
|
35
|
+
export const Dot = {
|
36
|
+
args: {
|
37
|
+
...Default.args,
|
38
|
+
type: 'dot',
|
39
|
+
},
|
40
|
+
}
|
41
|
+
|
42
|
+
//will only show the info text on click
|
43
|
+
export const OnClick = {
|
44
|
+
args: {
|
45
|
+
...Default.args,
|
46
|
+
openTrigger: 'onClick',
|
47
|
+
},
|
48
|
+
}
|
@@ -150,12 +150,11 @@
|
|
150
150
|
computed: {},
|
151
151
|
methods: {
|
152
152
|
clickHandler(e) {
|
153
|
-
if (this.isDisabled) {
|
153
|
+
if (this.isDisabled || !!this.$attrs?.onClick) {
|
154
154
|
// prevent emitter if the option is disabled
|
155
155
|
return
|
156
|
-
} else {
|
157
|
-
this.$parent.$emit('option-selected', this.value, e)
|
158
156
|
}
|
157
|
+
this.$parent.$emit('option-selected', this.value, e)
|
159
158
|
},
|
160
159
|
hoverHandler() {
|
161
160
|
this.$parent.$emit('option-hovered', this.value)
|
@@ -9,10 +9,12 @@
|
|
9
9
|
v-if="!item.children"
|
10
10
|
:key="idx"
|
11
11
|
:data-id="`sub_menu_settings_${item.key}`"
|
12
|
-
:is-active="activeTab === item.key"
|
12
|
+
:is-active="activeTab === item.key || activeParentTab === item.key"
|
13
13
|
@click="$emit('tab-click', { activeKey: item.key })"
|
14
14
|
>
|
15
|
-
<IconContainer
|
15
|
+
<IconContainer
|
16
|
+
:is-active="activeTab === item.key || activeParentTab === item.key"
|
17
|
+
>
|
16
18
|
<Icon color="#fff" cursor="pointer" :name="item.icon" size="18px" />
|
17
19
|
</IconContainer>
|
18
20
|
<ListText>{{ $gettext(item.label) }}</ListText>
|
@@ -59,8 +59,10 @@
|
|
59
59
|
</NoTemplate>
|
60
60
|
<InputContainer
|
61
61
|
v-if="item.type === 'input'"
|
62
|
+
:has-message="showInfoText"
|
62
63
|
@click.stop="onInputClick()"
|
63
64
|
>
|
65
|
+
<InfoText v-if="showInfoText" :text="infoTextMessage" type="dot" />
|
64
66
|
<TextContainer
|
65
67
|
v-if="customInputDisabled"
|
66
68
|
class="input-placeholder"
|
@@ -387,7 +389,13 @@
|
|
387
389
|
padding-left: 15px;
|
388
390
|
`
|
389
391
|
|
390
|
-
const
|
392
|
+
const inputContainerAttrs = { hasMessage: Boolean }
|
393
|
+
const InputContainer = styled('div', inputContainerAttrs)`
|
394
|
+
margin-left: ${(props) => (props.hasMessage ? '10px' : '0')};
|
395
|
+
display: flex;
|
396
|
+
align-items: center;
|
397
|
+
justify-content: flex-start;
|
398
|
+
|
391
399
|
.inputField input {
|
392
400
|
border-radius: 4px 0 0 4px;
|
393
401
|
}
|
@@ -523,6 +531,14 @@
|
|
523
531
|
required: false,
|
524
532
|
default: false,
|
525
533
|
},
|
534
|
+
showInfoText: {
|
535
|
+
required: false,
|
536
|
+
default: false,
|
537
|
+
},
|
538
|
+
infoTextMessage: {
|
539
|
+
required: false,
|
540
|
+
default: '',
|
541
|
+
},
|
526
542
|
},
|
527
543
|
data() {
|
528
544
|
return {
|