Skip to content

Commit 4ff56c4

Browse files
committed
test(modal): add cypress tests for modal
1 parent b05cde3 commit 4ff56c4

38 files changed

+489
-205
lines changed

.DS_Store

0 Bytes
Binary file not shown.

.eslintignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,5 @@ dist
44
# At the time of writing this, I could not find any helpful
55
# documentation for adding ESLint for Vue 3 projects running on Vite.
66
# For this reason, we ignore the playground directory.
7-
playground
7+
playground
8+
snapshots.js

package.json

+7-5
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@
88
"workspaces": [
99
"packages/*",
1010
"tooling/*",
11-
"website",
12-
"tests"
11+
"website"
1312
],
1413
"scripts": {
1514
"pkg": "manypkg run",
@@ -71,10 +70,10 @@
7170
"@vue/eslint-config-typescript": "^5.1.0",
7271
"@vuedx/typecheck": "^0.4.1",
7372
"@vuedx/typescript-plugin-vue": "^0.4.1",
73+
"@vueuse/core": "4.9.1",
7474
"@vueuse/integrations": "^4.8.1",
7575
"@vueuse/motion": "^1.5.4",
7676
"aria-hidden": "^1.1.2",
77-
"@vueuse/core": "4.9.1",
7877
"axe-core": "^4.1.2",
7978
"babel-jest": "^26.6.3",
8079
"body-scroll-lock": "^3.1.5",
@@ -133,8 +132,11 @@
133132
"@babel/plugin-transform-runtime": "^7.13.15",
134133
"@cypress/snapshot": "^2.1.7",
135134
"@cypress/vite-dev-server": "^1.2.6",
136-
"@cypress/vue": "^3.0.1",
135+
"@cypress/vue": "^3",
137136
"@vue/test-utils": "^2.0.0-rc.6",
138-
"cypress": "^7.2.0"
137+
"cypress": "^7.2.0",
138+
"cypress-commands": "^1.1.0",
139+
"cypress-plugin-tab": "^1.0.5",
140+
"local-cypress": "^1.2.1"
139141
}
140142
}

packages/c-alert/examples/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ export * as BaseAlert from './base-alert.vue'
22
export * as WithAccent from './with-accent.vue'
33
export * as WithIcon from './with-icon.vue'
44
export * as WithStatus from './with-status.vue'
5-
export * as WithTitle from './with-title.vue'
5+
export * as WithTitle from './with-title.vue'

packages/c-alert/tests/c-alert.cy.tsx

+9-12
Original file line numberDiff line numberDiff line change
@@ -5,27 +5,24 @@ import { CAlert, CAlertDescription, CAlertIcon, CAlertTitle } from '../src'
55
describe('Alert Examples', () => {
66
Object.entries(Examples).map(([name, example]) => {
77
it(`renders ${name} successfully`, () => {
8-
cy.mount(example.default)
9-
.then(() => {})
10-
.checkA11y()
8+
cy.mount(h(() => <example.default></example.default>)).checkA11y()
119
})
1210
})
1311
})
1412

1513
it('contains the correct role', () => {
16-
cy.mount(Examples.BaseAlert.default)
17-
.then(() => {})
18-
.get('[role=alert]')
19-
.should('exist')
14+
cy.mount(Examples.BaseAlert.default).get('[role=alert]').should('exist')
2015
})
2116

2217
it('renders its children', () => {
2318
cy.mount(
24-
<CAlert data-testid="alert" variant="left-accent" status="info" mb="3">
25-
<CAlertIcon mr="2" />
26-
<CAlertTitle> Info alert </CAlertTitle>
27-
<CAlertDescription> Something just happened </CAlertDescription>
28-
</CAlert>
19+
h(() => (
20+
<CAlert data-testid="alert" variant="left-accent" status="info" mb="3">
21+
<CAlertIcon mr="2" />
22+
<CAlertTitle> Info alert </CAlertTitle>
23+
<CAlertDescription> Something just happened </CAlertDescription>
24+
</CAlert>
25+
))
2926
)
3027
.get('[data-testid=alert]')
3128
.should('contain', 'Info alert')
+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export * as WithButtonGroup from './with-button-group.vue'
1+
export * as WithButtonGroup from './with-button-group.vue'

packages/c-button/examples/button.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ export * as WithAttachedButtons from './with-attached-buttons.vue'
44
export * as WithButtonSize from '../examples/with-button-size.vue'
55
export * as WithButtonIcon from '../examples/with-button-icon.vue'
66
export * as WithButtonVariants from '../examples/with-button-variants.vue'
7-
export * as WithLoadingStatus from '../examples/with-loading-status.vue'
7+
export * as WithLoadingStatus from '../examples/with-loading-status.vue'

packages/c-button/examples/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
export * as Button from './button'
2-
export * as ButtonGroup from './button-group'
2+
export * as ButtonGroup from './button-group'

packages/c-button/src/button-group.ts

+14-11
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,11 @@ const props = {
3434
...vueThemingProps,
3535
}
3636

37-
type ButtonGroupContext = ComputedRef<ThemingProps & {
38-
isDisabled?: boolean
39-
}>
37+
type ButtonGroupContext = ComputedRef<
38+
ThemingProps & {
39+
isDisabled?: boolean
40+
}
41+
>
4042

4143
const [ButtonGroupProvider, useButtonGroup] = createContext<ButtonGroupContext>(
4244
{
@@ -49,12 +51,14 @@ const CButtonGroup = defineComponent({
4951
name: 'CButtonGroup',
5052
props,
5153
setup(props, { attrs, slots }) {
52-
ButtonGroupProvider(computed(() => ({
53-
size: props.size,
54-
colorScheme: props.colorScheme,
55-
variant: props.variant,
56-
isDisabled: props.isDisabled,
57-
})))
54+
ButtonGroupProvider(
55+
computed(() => ({
56+
size: props.size,
57+
colorScheme: props.colorScheme,
58+
variant: props.variant,
59+
isDisabled: props.isDisabled,
60+
}))
61+
)
5862

5963
const styles = computed(() => {
6064
let groupStyles: SystemStyleObject = {
@@ -77,9 +81,8 @@ const CButtonGroup = defineComponent({
7781

7882
return groupStyles
7983
})
80-
81-
return () => {
8284

85+
return () => {
8386
return h(
8487
chakra('div', { label: 'button__group' }),
8588
{

packages/c-button/src/button.ts

+8-7
Original file line numberDiff line numberDiff line change
@@ -91,13 +91,15 @@ const CButton = defineComponent({
9191

9292
const group = useButtonGroup()
9393
const styles = useStyleConfig('Button', {
94-
...group.value,
94+
...group?.value,
9595
...themingProps.value,
9696
})
97-
98-
const _focus = computed(() => mergeWith({}, styles.value?.['_focus'] ?? {}, {
99-
zIndex: 1,
100-
}))
97+
98+
const _focus = computed(() =>
99+
mergeWith({}, styles.value?.['_focus'] ?? {}, {
100+
zIndex: 1,
101+
})
102+
)
101103

102104
const buttonStyles = computed<SystemStyleObject>(() => ({
103105
display: 'inline-flex',
@@ -112,11 +114,10 @@ const CButton = defineComponent({
112114
outline: 'none',
113115
width: props.isFullWidth ? '100%' : 'auto',
114116
...styles.value,
115-
...(!!group.value && { _focus: _focus.value }),
117+
...(!!group?.value && { _focus: _focus.value }),
116118
}))
117119

118120
return () => {
119-
120121
return h(
121122
chakra(props.as, {
122123
label: 'button',

packages/c-button/tests/c-button-group.cy.tsx

+10-8
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,13 @@ Object.entries(ButtonGroup).map(([name, example]) => {
1212
})
1313
})
1414

15-
it('with a color scheme', () => {
16-
cy.mount(h(() =>
17-
<CButtonGroup>
18-
<CButton colorScheme="blue">Save</CButton>
19-
<CButton>Cancel</CButton>
20-
</CButtonGroup>
21-
))
22-
})
15+
it.only('with a color scheme', () => {
16+
cy.mount(
17+
h(() => (
18+
<CButtonGroup>
19+
<CButton colorScheme="blue">Save</CButton>
20+
<CButton>Cancel</CButton>
21+
</CButtonGroup>
22+
))
23+
)
24+
})

packages/c-button/tests/c-button.cy.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ Object.entries(Button).map(([name, example]) => {
55
it(`renders ${name} successfully`, () => {
66
cy.mount(example.default).checkA11y()
77
})
8-
})
8+
})

packages/c-code/examples/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
// export * as SubtleBadges from './subtle-badges.vue'
55

66
export * as BaseCode from './base-code.vue'
7-
export * as WithColor from './with-color.vue'
7+
export * as WithColor from './with-color.vue'

packages/c-flex/examples/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
export * as BaseFlex from './base-flex.vue'
2-
export * as DirectionFlex from './direction-flex.vue'
2+
export * as DirectionFlex from './direction-flex.vue'

packages/c-icon/examples/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
export * as BaseIcon from './base-icon.vue'
22
export * as WithColor from './with-color.vue'
33
export * as WithIconLibrary from './with-icon-library.vue'
4-
export * as WithSize from './with-size.vue'
4+
export * as WithSize from './with-size.vue'
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
<template>
2+
<chakra.div
3+
d="flex"
4+
justify-content="center"
5+
align-items="center"
6+
h="full"
7+
w="100%"
8+
>
9+
<c-button
10+
color-scheme="blue"
11+
data-testid="open-modal"
12+
@click="isOpen = true"
13+
>Open modal</c-button
14+
>
15+
<!-- eslint-disable-next-line -->
16+
<c-modal v-model="isOpen">
17+
<c-modal-overlay />
18+
<c-modal-content>
19+
<c-modal-header>Modal header</c-modal-header>
20+
<c-modal-close-button data-testid="close-button" />
21+
<c-modal-body>
22+
<chakra.p>
23+
Sit nulla est ex deserunt exercitation anim occaecat. Nostrud
24+
ullamco deserunt aute id consequat veniam incididunt duis in sint
25+
irure nisi.
26+
</chakra.p>
27+
</c-modal-body>
28+
29+
<c-modal-footer>
30+
<c-button @click="isOpen = false" mr="3"> Close </c-button>
31+
<c-button id="initialFocus" ref="initialFocus"
32+
>Secondary action</c-button
33+
>
34+
</c-modal-footer>
35+
</c-modal-content>
36+
</c-modal>
37+
</chakra.div>
38+
</template>
39+
40+
<script setup lang="ts">
41+
import { ref } from 'vue'
42+
const isOpen = ref(false)
43+
</script>

packages/c-modal/examples/simple-modal.vue

+10-3
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,21 @@
66
h="full"
77
w="100%"
88
>
9-
<c-button color-scheme="blue" @click="isOpen = true">Open modal</c-button>
10-
<c-button ref="finalFocus" ml="3">Other button</c-button>
9+
<c-button
10+
color-scheme="blue"
11+
data-testid="open-modal"
12+
@click="isOpen = true"
13+
>Open modal</c-button
14+
>
15+
<c-button ref="finalFocus" data-testid="final-focus" ml="3"
16+
>Other button</c-button
17+
>
1118
<!-- eslint-disable-next-line -->
1219
<c-modal v-model="isOpen" :initial-focus-ref="'#initialFocus'" :blockScrollOnMount="false" :final-focus-ref="() => $refs.finalFocus">
1320
<c-modal-overlay />
1421
<c-modal-content>
1522
<c-modal-header>Modal header</c-modal-header>
16-
<c-modal-close-button />
23+
<c-modal-close-button data-testid="close-button" />
1724
<c-modal-body>
1825
<chakra.p>
1926
Sit nulla est ex deserunt exercitation anim occaecat. Nostrud

packages/c-modal/src/c-modal.ts

+6-3
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ import { CCloseButton } from '@chakra-ui/c-close-button'
3838
import { MotionDirective, useMotions } from '@vueuse/motion'
3939
import { useModal, UseModalOptions, UseModalReturn } from './use-modal'
4040
import { DialogMotionPreset, dialogMotionPresets } from './modal-transitions'
41+
import { useId } from '@chakra-ui/vue-composables'
4142

4243
type ScrollBehavior = 'inside' | 'outside'
4344

@@ -203,14 +204,16 @@ export const CModal = defineComponent({
203204
default: 'slideInBottom',
204205
},
205206
},
206-
emits: ['update:modelValue', 'escape', 'close'],
207+
emits: ['update:modelValue', 'escape', 'closeModal'],
207208
setup(props, { slots, attrs, emit }) {
208209
const closeModal = () => {
210+
emit('closeModal', false)
209211
emit('update:modelValue', false)
210212
}
211213

212214
const handleEscape = (event: KeyboardEvent) => {
213215
emit('escape', event)
216+
emit('closeModal', false)
214217
}
215218

216219
const styles = useMultiStyleConfig('Modal', mergeProps(props, attrs))
@@ -256,12 +259,12 @@ export const CModalContent = defineComponent({
256259
motionPreset,
257260
} = unref(useModalContext())
258261
const styles = useStyles()
259-
const transitionId = 'modal-content'
262+
const transitionId = useId('modal-content')
260263

261264
/** Handles exit transition */
262265
const leave = (done: VoidFunction) => {
263266
const motions = useMotions()
264-
const instance = motions[transitionId]
267+
const instance = motions[transitionId.value]
265268
instance?.leave(() => {
266269
done()
267270
})

packages/c-modal/src/use-modal.ts

+3-4
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,6 @@ export function useModal(options: UseModalOptions) {
244244
}
245245

246246
const onKeyDown = (event: KeyboardEvent) => {
247-
console.log('onKeyDown', event)
248247
if (event.key === 'Escape') {
249248
event.stopPropagation()
250249

@@ -262,14 +261,14 @@ export function useModal(options: UseModalOptions) {
262261
ref: overlayRef as any,
263262
onClick: (event: MouseEvent) => {
264263
instance?.emit('update:modelValue', !modelValue.value)
265-
instance?.emit('close')
264+
instance?.emit('closeModal')
266265
handleOverlayClick(event)
267266
},
268-
onKeyDown: (event: KeyboardEvent) => {
267+
onKeydown: (event: KeyboardEvent) => {
269268
emit('keydown', event)
270269
onKeyDown(event)
271270
},
272-
onMouseDown: (event: MouseEvent) => {
271+
onMousedown: (event: MouseEvent) => {
273272
mouseDownTarget.value = event.target
274273
emit('mousedown', event)
275274
},

0 commit comments

Comments
 (0)