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: improving accessibility on buttons without text #117

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
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
62 changes: 32 additions & 30 deletions .github/workflows/betapublish.yml
Original file line number Diff line number Diff line change
@@ -1,33 +1,35 @@
name: Pre-Release
on:
release:
types: [prereleased]
release:
types: [prereleased]
jobs:
Publish:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '12.x'
registry-url: 'https://registry.npmjs.org'
- name: Install
run: npm install
- name: Test
run: npm run test
- uses: codecov/codecov-action@v2
with:
files: coverage/*.json
flags: unittests
name: react-carousel-codecov
fail_ci_if_error: true
verbose: true
- name: Build
run: npm run build
- name: Publish
run: npm publish --access=public --tag beta
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
Publish:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '12.x'
registry-url: 'https://registry.npmjs.org'
- name: Install
run: npm install
- name: Test
run: npm run test
- uses: codecov/codecov-action@v4
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
with:
files: coverage/*.json
flags: unittests
name: react-carousel-codecov
fail_ci_if_error: true
verbose: true
- name: Build
run: npm run build
- name: Publish
run: npm publish --access=public --tag beta
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
4 changes: 3 additions & 1 deletion .github/workflows/prchecks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@ jobs:
run: npx commitlint --from ${{ github.event.pull_request.base.sha }} --to ${{ github.event.pull_request.head.sha }} --verbose
- name: Test
run: npm run test
- uses: codecov/codecov-action@v2
- uses: codecov/codecov-action@v4
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
with:
files: coverage/*.json
flags: unittests
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@ jobs:
run: npm install
- name: Test
run: npm run test
- uses: codecov/codecov-action@v2
- uses: codecov/codecov-action@v4
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
with:
files: coverage/*.json
flags: unittests
Expand Down
10 changes: 10 additions & 0 deletions __tests__/arrow.spec.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,14 @@ describe('<Arrow />', () => {
fireEvent.click(getByRole('button'));
expect(onClick).toHaveBeenCalled();
});

it('should have the correct aria-label when direction is right', () => {
const { getByRole } = render(<Arrow direction="right" />);
expect(getByRole('button')).toHaveAttribute('aria-label', 'Sağa kaydır');
});

it('should have the correct aria-label when direction is left', () => {
const { getByRole } = render(<Arrow direction="left" />);
expect(getByRole('button')).toHaveAttribute('aria-label', 'Sola kaydır');
});
});
21 changes: 20 additions & 1 deletion __tests__/scrollingCarousel.spec.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React, { MouseEvent } from 'react';
import { render, cleanup, fireEvent, wait } from '@testing-library/react';
import { render, cleanup, fireEvent, wait, waitFor } from '@testing-library/react';
import { ScrollingCarousel } from '../src';
import { carouselItemNodes } from './__fixtures__/nodes';
import * as helpers from '../src/helpers';
Expand Down Expand Up @@ -102,4 +102,23 @@ describe('<ScrollingCarousel />', () => {
expect(container.querySelector('.sliding')).toBeInTheDocument();
});
});

it('should remove sliding class when isDown is false', async () => {
const { getByTestId } = render(
<ScrollingCarousel
triggerClickOn={3}
leftIcon={<i />}
children={carouselItemNodes(6)}
/>,
);

const sliderList = getByTestId('sliderList');
fireEvent.mouseDown(sliderList, { pageX: 600 });
fireEvent.mouseMove(sliderList, { pageX: 605 }); // Ensure some movement occurs
fireEvent.mouseUp(sliderList);

await waitFor(() => {
expect(sliderList).not.toHaveClass('sliding');
});
});
});
1 change: 1 addition & 0 deletions src/components/arrow/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import styles from '../../styles/styles.module.css';

export const Arrow: FunctionComponent<ArrowProps> = (props: ArrowProps) => (
<button
aria-label={`${props.direction === 'right' ? 'Sağa' : 'Sola'} kaydır`}
className={styles.carouselArrow}
onClick={props.onClick}
data-direction={props.direction}
Expand Down
2 changes: 1 addition & 1 deletion src/components/scrolling-carousel/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ export const ScrollingCarousel: FunctionComponent<SliderProps> = (
) => {
return (
<div data-arrow={data} onClick={() => slide(direction)}>
{element ?? <button />}
{element ?? <button aria-label={`${data === 'right' ? 'Sağa' : 'Sola'} kaydır`} />}
</div>
);
};
Expand Down
Loading