Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(NcCheckboxRadioSwitch): only bind aria attributes to the input #5777

Merged
merged 2 commits into from
Jul 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .reuse/dep5
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Files: package.json package-lock.json .github/pull_request_template.md
Copyright: Nextcloud GmbH and Nextcloud contributors
License: AGPL-3.0-or-later

Files: styleguide/assets/icons.css styleguide/assets/server.css cypress/snapshots/* tests/unit/functions/usernameToColor/__snapshots__/usernameToColor.spec.js.snap
Files: styleguide/assets/icons.css cypress/snapshots/* tests/unit/functions/usernameToColor/__snapshots__/usernameToColor.spec.js.snap
Copyright: Nextcloud GmbH and Nextcloud contributors
License: AGPL-3.0-or-later

Expand Down
19 changes: 19 additions & 0 deletions cypress/commands.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
/**
* SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/

import type { mount } from '@cypress/vue2'

// Augment the Cypress namespace to include type definitions for
// your custom commands
declare global {
// eslint-disable-next-line @typescript-eslint/no-namespace
namespace Cypress {
interface Chainable {
mount: typeof mount
}
}
}

export {}
32 changes: 32 additions & 0 deletions cypress/component/NcCheckboxRadioSwitch.cy.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
/**
* SPDX-FileCopyrightText: Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/

import NcCheckboxRadioSwitch from '../../src/components/NcCheckboxRadioSwitch/NcCheckboxRadioSwitch.vue'

describe('NcCheckboxRadioSwitch', () => {
it('Sets attributes correctly', () => {
cy.mount({
render: (h) => h(NcCheckboxRadioSwitch, {
// TODO: With Vue3 move class and style to attrs
class: 'my-class',
style: 'background: red;',
attrs: {
'aria-describedby': 'unique-id',
'data-my-attribute': 'yes',
},
}, ['My checkbox']),
}).then(({ wrapper }) => {
// Class and style belong the wrapper
expect(wrapper.classes('my-class')).to.be.true
// expect(wrapper.attributes('style')).to.equal('background: red;')
// Custom data attributes too
expect(wrapper.attributes('data-my-attribute')).to.equal('yes')
// real HTML attributes are passed to the real checkbox
expect(wrapper.attributes('aria-describedby')).to.be.undefined
})

cy.findByRole('checkbox').should('have.attr', 'aria-describedby', 'unique-id')
})
})
5 changes: 5 additions & 0 deletions cypress/support/commands.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,13 @@
* SPDX-License-Identifier: AGPL-3.0-or-later
*/

import { mount } from '@cypress/vue2'
import { addCompareSnapshotCommand } from 'cypress-visual-regression/dist/command'

import '@testing-library/cypress/add-commands'

addCompareSnapshotCommand()

// Example use:
// cy.mount(MyComponent)
Cypress.Commands.add('mount', mount)
19 changes: 0 additions & 19 deletions cypress/support/component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,22 +10,3 @@ import '../../styleguide/assets/icons.css'

// cypress commands
import './commands'
import { mount } from '@cypress/vue2'

// Augment the Cypress namespace to include type definitions for
// your custom command.
// Alternatively, can be defined in cypress/support/component.d.ts
// with a <reference path="./component" /> at the top of your spec.

declare global {
// eslint-disable-next-line @typescript-eslint/no-namespace
namespace Cypress {
interface Chainable {
mount: typeof mount
}
}
}

// Example use:
// cy.mount(MyComponent)
Cypress.Commands.add('mount', mount)
16 changes: 14 additions & 2 deletions src/components/NcCheckboxRadioSwitch/NcCheckboxRadioSwitch.vue
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ export default {
class="checkbox-radio-switch"
:style="cssVars"
:type="isButtonType ? 'button' : null"
v-bind="isButtonType ? $attrs : {}"
v-bind="isButtonType ? $attrs : dataAttrs"
v-on="isButtonType ? listeners : null">
<input v-if="!isButtonType"
:id="id"
Expand All @@ -272,7 +272,7 @@ export default {
:indeterminate.prop="hasIndeterminate ? indeterminate : null"
:required="required"
:name="name"
v-bind="$attrs"
v-bind="nonDataAttrs"
v-on="listeners">
<NcCheckboxContent :id="id"
class="checkbox-radio-switch__content"
Expand Down Expand Up @@ -450,6 +450,18 @@ export default {
emits: ['update:checked'],

computed: {
dataAttrs() {
// filter all data attributes
return Object.fromEntries(Object.entries(this.$attrs)
.filter(([key]) => key.startsWith('data-')))
},

nonDataAttrs() {
// filter all non-data attributes
return Object.fromEntries(Object.entries(this.$attrs)
.filter(([key]) => !key.startsWith('data-')))
},

isButtonType() {
return this.type === TYPE_BUTTON
},
Expand Down
8 changes: 7 additions & 1 deletion tests/unit/components/NcCheckboxRadioSwitch/checkbox.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,19 +17,25 @@ describe('NcCheckboxRadioSwitch', () => {
expect(wrapper.text()).toContain('Test')
})

it('forwards aria-invalid and aria-errormessage to input', () => {
it('forwards all but data- attributes to the input', () => {
const wrapper = shallowMount(NcCheckboxRadioSwitch, {
slots: {
default: 'Test',
},
attrs: {
'aria-invalid': 'true',
'aria-errormessage': 'id-test',
'data-test': 'checkbox-test-data-attr',
title: 'Test title',
},
})

const input = wrapper.find('input')
expect(input.attributes('aria-invalid')).toBe('true')
expect(input.attributes('aria-errormessage')).toBe('id-test')
expect(input.attributes('title')).toBe('Test title')
expect(input.attributes('data-test')).not.toBe('checkbox-test-data-attr')
expect(wrapper.attributes('data-test')).toBe('checkbox-test-data-attr')
expect(wrapper.attributes('title')).not.toBe('Test title')
})
})
Loading