Skip to content

Commit

Permalink
[#45] Block heading level accessibility
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuapease committed Oct 2, 2024
1 parent e79486c commit dd63dec
Show file tree
Hide file tree
Showing 5 changed files with 41 additions and 7 deletions.
16 changes: 13 additions & 3 deletions templates/_blocks/_heading.twig
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
{# @var \craft\elements\Entry|null block #}
{% set block = block ?? null %}

<div class="container">
<h2 class="text-4xl font-bold">{{ block.heading }}</h2>
</div>
{# @var bool hasPreviousBlocksWithH1 #}
{% set hasPreviousBlocksWithH1 = hasPreviousBlocksWithH1 ?? false %}

{% set element = hasPreviousBlocksWithH1 ? 'h2' : 'h1' %}

{% tag element with {
class: cx('container font-bold', {
'text-4xl': not hasPreviousBlocksWithH1,
'text-3xl': hasPreviousBlocksWithH1,
}),
} %}
{{ block.heading }}
{% endtag %}
4 changes: 4 additions & 0 deletions templates/_blocks/_pageHero.twig
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
{# @var \craft\elements\Entry|null block #}
{% set block = block ?? null %}

{# @var bool hasPreviousBlocksWithH1 #}
{% set hasPreviousBlocksWithH1 = hasPreviousBlocksWithH1 ?? false %}

{{ include('_components/page-hero.twig', {
image: block.image.eagerly().one(),
title: block.title,
description: block.richTextSimple,
headingLevel: hasPreviousBlocksWithH1 ? 2 : 1,
}) }}
13 changes: 12 additions & 1 deletion templates/_blocks/index.twig
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,16 @@
{% set nextBlock = blocks.get(loop.index0 + 1) %}
{% set previousBlocks = blocks.take(loop.index0) %}

{#
Check if there are previous blocks that have a heading level of 1. This is used
to determine if the current block should use an h1 or h2 as its root heading level.
#}
{% set hasPreviousBlocksWithH1 = previousBlocks
|map(block => block.type.handle)
|intersect(['pageHero', 'heading'])
|length
%}

{% set marginBottomConfig = {
default: 'mb-64',
'heading + richText': 'mb-32',
Expand All @@ -32,12 +42,13 @@
|filter
|first %}

{# Block wrapper #}
<div class="{{ cx({
(marginBottom): not loop.last
}) }}">

{{ include("_blocks/_#{block.type.handle}.twig", {
block,
hasPreviousBlocksWithH1,
}) }}
</div>
{% endfor %}
Expand Down
2 changes: 1 addition & 1 deletion templates/_components/call-to-action.twig
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<div class="bg-neutral-200 py-48">
<div class="container flex flex-col items-center gap-24">
{% if title %}
<h2 class="text-xl">{{ title }}</h2>
<h2 class="text-xl font-semibold">{{ title }}</h2>
{% endif %}

{% if text %}
Expand Down
13 changes: 11 additions & 2 deletions templates/_components/page-hero.twig
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,24 @@
{# @var \craft\elements\Asset|null image #}
{% set image = image ?? null %}

{# @var int headingLevel #}
{% set headingLevel = headingLevel ?? 1 %}

{% set element = "h#{headingLevel}" %}

<div class="bg-neutral-100 py-48">
<div class="container grid items-center gap-24 sm:grid-cols-2 sm:px-32 lg:gap-48 lg:grid-cols-5">
<div class="flex flex-col gap-24 max-w-[640px] lg:col-span-3">
{% if title %}
<h1 class="text-xl font-semibold">{{ title }}</h1>
{% tag element with {
class: 'text-4xl font-bold',
} %}
{{ title }}
{% endtag %}
{% endif %}

{% if description %}
<div>{{ description }}</div>
<div class="rich-text">{{ description }}</div>
{% endif %}
</div>

Expand Down

0 comments on commit dd63dec

Please sign in to comment.