Merge pull request #6144 from consuldemocracy/serious_accessibility_issues

Fix most Axe serious accessibility issues
This commit is contained in:
Javi Martín
2025-11-14 15:49:51 +01:00
committed by GitHub
8 changed files with 38 additions and 15 deletions

View File

@@ -0,0 +1,8 @@
(function() {
"use strict";
App.AccountMenu = {
initialize: function() {
$(".account-menu > li > form button").attr("role", "menuitem");
}
};
}).call(this);

View File

@@ -117,6 +117,7 @@
//= require budget_edit_associations
//= require budget_hide_money
//= require datepicker
//= require account_menu
//= require authenticity_token_refresh
//= require_tree ./admin
//= require_tree ./polls
@@ -181,6 +182,7 @@ var initialize_modules = function() {
App.PollsForm.initialize();
App.SDGRelatedListSelector.initialize();
App.SDGManagementRelationSearch.initialize();
App.AccountMenu.initialize();
App.AuthenticityTokenRefresh.initialize();
App.CookiesConsent.initialize();
};

View File

@@ -28,17 +28,19 @@
markers = L.layerGroup();
}
marker = null;
markerIcon = L.divIcon({
className: "map-marker",
iconSize: [30, 30],
iconAnchor: [15, 40],
html: '<div class="map-icon"></div>'
});
createMarker = function(latitude, longitude) {
markerIcon = function(alt_text) {
return L.divIcon({
className: "map-marker",
iconSize: [30, 30],
iconAnchor: [15, 40],
html: $('<div class="map-icon"></div>').attr("aria-label", alt_text)[0].outerHTML
});
};
createMarker = function(latitude, longitude, text) {
var newMarker, markerLatLng;
markerLatLng = new L.LatLng(latitude, longitude);
newMarker = L.marker(markerLatLng, {
icon: markerIcon,
icon: markerIcon(text),
draggable: editable
});
if (editable) {
@@ -71,7 +73,7 @@
markerData = App.Map.markerData(element);
if (markerData.lat && markerData.long && !investmentsMarkers) {
marker = createMarker(markerData.lat, markerData.long);
marker = createMarker(markerData.lat, markerData.long, markerData.title);
}
if (editable) {
$(removeMarkerSelector).on("click", removeMarker);
@@ -115,7 +117,8 @@
dataCoordinates = {
lat: $(element).data("marker-latitude"),
long: $(element).data("marker-longitude")
long: $(element).data("marker-longitude"),
title: $(element).data("marker-title")
};
formCoordinates = {
lat: inputs.lat.val(),
@@ -133,6 +136,7 @@
return {
lat: latitude,
long: longitude,
title: dataCoordinates.title,
zoom: formCoordinates.zoom
};
},
@@ -188,7 +192,7 @@
var marker;
if (App.Map.validCoordinates(coordinates)) {
marker = createMarker(coordinates.lat, coordinates.long);
marker = createMarker(coordinates.lat, coordinates.long, coordinates.title);
marker.options.id = coordinates.investment_id;
marker.bindPopup(App.Map.getPopupContent(coordinates));
}

View File

@@ -53,7 +53,7 @@
class: "legislation-draft-version-body" %>
</div>
<div class="small-12 medium-6 column markdown-preview">
<div class="small-12 medium-6 column markdown-preview" tabindex="0">
</div>
</div>
<% end %>

View File

@@ -58,6 +58,7 @@ class Shared::MapLocationComponent < ApplicationComponent
marker_investments_coordinates: investments_coordinates,
marker_latitude: map_location.latitude.presence,
marker_longitude: map_location.longitude.presence,
marker_title: map_location.title.presence,
marker_clustering: feature?("map.feature.marker_clustering"),
geozones: geozones_data
}.merge(input_selectors)

View File

@@ -8,6 +8,10 @@ class MapLocation < ApplicationRecord
latitude.present? && longitude.present? && zoom.present?
end
def title
(proposal || investment)&.title
end
def json_data
{
investment_id: investment_id,

View File

@@ -36,7 +36,8 @@ shared_examples "mappable" do |mappable_factory_name, mappable_association_name,
find("#new_map_location").click
within ".map-location" do
expect(page).to have_css(".map-icon")
expect(page).to have_css ".map-icon"
expect(page).not_to have_css ".map-icon[aria-label]"
end
end
@@ -274,14 +275,15 @@ shared_examples "mappable" do |mappable_factory_name, mappable_association_name,
set_arguments(arguments, mappable, mappable_path_arguments)
end
scenario "Should display map and marker on #{mappable_factory_name} show page" do
scenario "Should display marker on #{mappable_factory_name} show page with aria label" do
arguments[:id] = mappable.id
mappable.update!(title: "Malformed quote\" and >")
do_login_for user, management: management if management
visit send(mappable_show_path, arguments)
within ".map-location" do
expect(page).to have_css(".map-icon")
expect(page).to have_css ".map-icon[aria-label='#{mappable.title}']"
end
end

View File

@@ -193,6 +193,8 @@ describe "Ballots" do
expect(page).to have_content "OpenStreetMap"
expect(page).to have_content "New Block"
expect(page).to have_css ".map-icon", visible: :all, count: 2
expect(page).to have_css ".map-icon[aria-label='More bridges']", visible: :all
expect(page).to have_css ".map-icon[aria-label='Less bridges']", visible: :all
end
add_to_ballot("More bridges")