Front-End Frameworks: Pros & Cons for Accessibility

Front-End Frameworks: Pros & Cons for Accessibility

Tom Shephard

31 October 2023 - 5 min read

Web Applications
Front-End Frameworks: Pros & Cons for Accessibility

Front-end frameworks like React, Angular, and Vue have become staples of modern web development. By providing reusable components, streamlined DOM manipulation, and simplified state management, frameworks expedite building interactive interfaces.

However, many popular frameworks originally overlooked a crucial aspect - accessibility. Their abstractions and conventions, while accelerating development, can inadvertently introduce barriers for users with impairments.

As frameworks evolve, accessibility is being retrofitted into their core components and design paradigms. Still, frameworks pose inherent accessibility trade-offs that teams must address through careful testing and customisation.

Below we explore three popular frameworks, their accessibility pros and cons, and how teams can maximise their benefits while minimising potential pitfalls, alongside the need for a combined testing approach. We'll cover:

  1. Angular
  2. React
  3. Vue
  4. Testing
  5. (TL;DR)

Angular

Angular provides a robust framework for building complex web applications using TypeScript and reactive programming patterns. Given its widespread use, Angular aims to be accessible by default for most scenarios.

Accessibility Pros:

  • Provides accessible component blueprints like <button>, <navbar> etc.
  • Supports ARIA attributes to enhance semantics.
  • Detailed accessibility guides covering common UI patterns.
  • Integrates testing harness for auditing via Axe, Lighthouse etc.

For example, Angular's button component handling keyboard accessibility:

@Component({ //.. })

export class ButtonComponent {
    constructor(private elRef: ElementRef<HTMLElement>) {}
    
    ngOnInit() {
        this.elRef.nativeElement.setAttribute('role', 'button');
    }
}

Accessibility Cons:

  • Accessibility not enforced; still possible to build inaccessible UIs.
  • Complex interfaces with custom components require rigorous testing.
  • Heavy DOM manipulation can interfere with screen readers without proper handling.

Teams using Angular can leverage its accessible foundations but must vigilantly confirm that custom implementations also deliver inclusive experiences.

React

React's composable components and Virtual DOM make it a top choice for responsive UIs. React provides several APIs and techniques for web accessibility:

Accessibility Pros:

  • Complete keyboard navigation/focus management.
  • Built-in ARIA semantics for common components.
  • APIs like useRef() to integrate with assistive technologies.
  • Wide ecosystem of accessibility testing tools.

For example, React's button component handling keyboard accessibility:

function Button(props) {
    return (
        <button
            role="button"
            onKeyDown={handleKeyDown}
            {...props}
        />
    );
}

function handleKeyDown(event) {
    if (event.key === 'Enter') {
        onClick();
    }
}

Accessibility Cons:

  • Accessibility not enforced by default; must be explicitly implemented.
  • Complex custom components need thorough evaluation.
  • Frequent DOM updates can impact screen reader performance.

Like Angular, React provides helpful APIs for accessibility but puts the onus on developers to apply them appropriately. Testing custom interfaces remains critical.

Vue

Vue provides a lightweight framework for building web interfaces with HTML, CSS and JavaScript.

Accessibility Pros:

  • Strong focus on semantic HTML in documentation.
  • Component DevTools debugger helps spot accessibility issues.
  • Integrates ARIA roles and attributes in built-in components.
  • Vue Face API provides facial tracking for assistive tech.

For example, Vue's button component handling keyboard accessibility:

<template>
    <button
        v-bind="$attrs"
        v-on="$listeners"
        ref="button"
        @keydown="onKeyDown"
    ></button>
</template>

<script setup lang="ts">
const emit = defineEmits<{ (event: 'click'): void} >();

const onKeyDown = (event: Event) => {
    if (event.key === 'Enter') {
        emit('click');
    }
}
</script>

Accessibility Cons:

  • Limited built-in validation of accessibility issues.
  • Accessibility must be custom-implemented in templates and components.
  • Complex interfaces need extensive assistive tech testing.

Vue promotes semantic HTML practices but developers must proactively confirm accessibility in implementations.

Maximising Frameworks via Testing

Modern frameworks provide tools to build accessible interfaces, but barriers can emerge in custom components, complex UIs, and dynamic experiences. Therefore, comprehensive testing is key across two dimensions: automated testing and manual testing.

Automated Testing

Automated testing leverages programmatic scans to catch compliance issues and violations. Running frequently, automation provides rapid feedback on regressions across code changes.

Useful technologies include:

  • Unit Testing:

    Validate individual components contain proper semantics and behaviours using frameworks like Jest and React Testing Library.

test('renders button with role attribute', () => {
    render(
        <Button>Test</Button>
    );
    
    expect(screen.getByRole('button')).toBeInTheDocument();
});
  • Linting:

    Scan components for issues via ESLint plugins and IDE extensions.

"plugins": [ "eslint-plugin-jsx-a11y" ]
  • Command line:

    Tools like pa11y, Axe Core CLI, and Lighthouse CLI to audit pages and generate reports.

pa11y --reporter json https://example.com > report.json
  • CI/CD:

    Integrate scans into build pipelines to fail builds on regressions.

  • UI Automation:

    End-to-end testing tools like Cypress and Playwright can integrate accessibility checks into UI automation flows. Cypress offers the cypress-axe plugin, while Playwright has the playwright-a11y package.

Manual Testing

Automated testing alone cannot catch all subtle user experience barriers. Manual testing is essential for authentic evaluation from real users' perspectives. Useful techniques include:

  • Internal User Testing:

    Team members use keyboards, magnifiers, screen readers to replicate impaired experiences.

  • External User Testing:

    Get direct feedback from users through task-based testing.

  • Cross-browser Testing:

    Ensure consistency across different browsers, devices and platforms.

With rigorous testing and user feedback, organisations can maximise frameworks' convenience while ensuring they don't compromise on inclusivity and access. Planning for accessibility from the start, rather than retrofitting later, is key for modern web development.

TL;DR

Front-end frameworks offer immense convenience for web development, but can also introduce accessibility pitfalls.

Key takeaways:

  • Frameworks have become increasingly more accessibility friendly, but more work remains. Whilst much of their inbuilt functionality is now accessible, it is still essential to test these thoroughly particularly when customising their implementation.
  • Automated testing is invaluable, but robust manual testing with assistive technologies is essential.
  • Custom components and complex UIs require the most scrutiny. Engage users early and often.
  • Semantic HTML, thoughtful ARIA usage, and controlled DOM updates are key across frameworks.
  • Accessibility must be woven throughout development, not tacked on at the end. Changing culture is crucial.
  • With planning, testing, and shared ownership, organisations can maximise frameworks’ benefits while delivering inclusive experiences.
Ebook Available

How to maximise the performance of your existing systems

Free download

Tom is a Software Engineer at Audacia. Tom joined Audacia through the 2021 Academy programme to begin a career in technology and has since worked on a number of different projects. Tom is passionate about accessibility and helped draft Audacia's company-wide accessible web development standards.