Skip to content

Commit 11245d7

Browse files
committed
Add additional accessible text to linked faceted searches
This updates the LinkToFacet rendering step to add an additional visually hidden element when creating a link to a faceted search that indicates the facet that will be used in the search. This helps give additional context to screen reader users when link_to_facet is used, especially when the page may include links that go to searches for the same value in different fields. Fixes #3427
1 parent 344df8a commit 11245d7

14 files changed

+59
-3
lines changed

app/presenters/blacklight/rendering/link_to_facet.rb

+9-1
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,21 @@ def link_field
2323
end
2424

2525
def link(field, v)
26-
context.link_to v, search_path(field, v)
26+
context.link_to search_path(field, v) do
27+
context.tag.span(v) +
28+
context.tag.span(search_description, class: 'visually-hidden')
29+
end
2730
end
2831

2932
def search_path(field, v)
3033
context.search_action_path(facet_params(field, v))
3134
end
3235

36+
# Accessible description for the link, indicating it will do a faceted search
37+
def search_description
38+
context.t 'blacklight.search.facets.faceted_search', field_label: config.display_label
39+
end
40+
3341
def facet_params(field, item)
3442
context.search_state.reset.filter(field).add(item).params
3543
end

config/locales/blacklight.ar.yml

+1
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,7 @@ ar:
9898
all: الكل
9999
clear: إزالة معايير البحث
100100
count: "%{number}"
101+
faceted_search: بحث %{field_label}
101102
group:
102103
close: إخفاء الأوجه
103104
open: عرض الأوجه

config/locales/blacklight.de.yml

+1
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,7 @@ de:
8888
all: Alle
8989
clear: Löschen
9090
count: "%{number}"
91+
faceted_search: "%{field_label} Suche"
9192
group:
9293
close: Facetten ausblenden
9394
open: Facetten zeigen

config/locales/blacklight.en.yml

+1
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,7 @@ en:
124124
label: "Filter %{field_label}"
125125
placeholder: Filter...
126126
title: Limit your search
127+
faceted_search: "%{field_label} search"
127128
filters:
128129
label: "%{label}:"
129130
remove:

config/locales/blacklight.es.yml

+1
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,7 @@ es:
8888
all: Todos
8989
clear: Borrar
9090
count: "%{number}"
91+
faceted_search: Búsqueda %{field_label}
9192
group:
9293
close: Ocultar facetas
9394
open: Mostrar facetas

config/locales/blacklight.fr.yml

+1
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,7 @@ fr:
8888
all: Tout
8989
clear: Effacer
9090
count: "%{number}"
91+
faceted_search: Recherche %{field_label}
9192
group:
9293
close: Masquer les facettes
9394
open: Afficher les facettes

config/locales/blacklight.hu.yml

+1
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,7 @@ hu:
8686
all: Minden
8787
clear: Szűrőfeltétel eltávolítása
8888
count: "%{number}"
89+
faceted_search: "%{field_label} keresés"
8990
group:
9091
close: Fazetek elrejtése
9192
open: Szempontok megjelenítése

config/locales/blacklight.it.yml

+1
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,7 @@ it:
8888
all: Ogni
8989
clear: Cancella
9090
count: "%{number}"
91+
faceted_search: "%{field_label} ricerca"
9192
group:
9293
close: Nascondi sfaccettature
9394
open: Mostra sfaccettature

config/locales/blacklight.nl.yml

+1
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,7 @@ nl:
8686
all: Al
8787
clear: Filters legen
8888
count: "%{number}"
89+
faceted_search: "%{field_label} zoeken"
8990
group:
9091
close: Verberg facetten
9192
open: Toon facetten

config/locales/blacklight.pt-BR.yml

+1
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,7 @@ pt-BR:
8686
all: Todo
8787
clear: Limpar
8888
count: "%{number}"
89+
faceted_search: Pesquisa %{field_label}
8990
group:
9091
close: Ocultar facetas
9192
open: Mostrar facetas

config/locales/blacklight.sq.yml

+1
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,7 @@ sq:
8686
all: Gjithë
8787
clear: Fshij filterin
8888
count: "%{number}"
89+
faceted_search: "%{field_label} kërkim"
8990
group:
9091
close: Fshih aspektet
9192
open: Trego aspektet

config/locales/blacklight.zh.yml

+1
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,7 @@ zh:
8686
all:
8787
clear: 清除搜索条件
8888
count: "%{number}"
89+
faceted_search: "%{field_label} 搜索"
8990
group:
9091
close: 隐藏方面
9192
open: 显示方面

spec/presenters/blacklight/field_presenter_spec.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ def render
8383
context 'when field has link_to_facet with true' do
8484
before do
8585
allow(request_context).to receive(:search_action_path).with({ 'f' => { 'link_to_facet_true' => ['x'] } }).and_return('/foo')
86-
allow(request_context).to receive(:link_to).with("x", '/foo').and_return('bar')
86+
allow(request_context).to receive(:link_to).with('/foo').and_return('bar')
8787
end
8888

8989
let(:field_name) { 'link_to_facet_true' }
@@ -94,7 +94,7 @@ def render
9494
context 'when field has link_to_facet with a field name' do
9595
before do
9696
allow(request_context).to receive(:search_action_path).with({ 'f' => { 'some_field' => ['x'] } }).and_return('/foo')
97-
allow(request_context).to receive(:link_to).with("x", '/foo').and_return('bar')
97+
allow(request_context).to receive(:link_to).with('/foo').and_return('bar')
9898
end
9999

100100
let(:field_name) { 'link_to_facet_named' }
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
# frozen_string_literal: true
2+
3+
RSpec.describe Blacklight::Rendering::LinkToFacet do
4+
include Capybara::RSpecMatchers
5+
include Rails.application.routes.url_helpers
6+
7+
let(:field_config) { Blacklight::Configuration::Field.new(link_to_facet: true, key: 'key', label: 'label') }
8+
let(:document) { instance_double(SolrDocument) }
9+
let(:query_params) { { controller: 'catalog', action: 'show' } }
10+
let(:config) { Blacklight::Configuration.new }
11+
let(:search_state) { Blacklight::SearchState.new(query_params, config) }
12+
let(:context) { double(search_state: search_state) }
13+
let(:pipeline) { Blacklight::Rendering::Pipeline.new(values, field_config, document, context, [described_class], {}) }
14+
15+
before do
16+
allow(context).to receive_messages(
17+
search_action_path: double,
18+
link_to: double,
19+
tag: double(span: nil),
20+
t: 'label search'
21+
)
22+
end
23+
24+
describe '#render' do
25+
let(:values) { %w[a] }
26+
27+
before { pipeline.render }
28+
29+
it 'renders the value' do
30+
expect(context.tag).to have_received(:span).with('a')
31+
end
32+
33+
it 'renders the accessible description' do
34+
expect(context.tag).to have_received(:span).with('label search', class: 'visually-hidden')
35+
end
36+
end
37+
end

0 commit comments

Comments
 (0)