mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-06-06 22:40:57 -04:00
This addresses the following issues with the JS: 1. fix string listing the alert areas so their 'remove' text isn't included 2. use `!==` instead of `>` for index comparison 3. put code for adding the label and description into separate functions Those issues are (matching the list above): 1. https://github.com/alphagov/notifications-admin/pull/3996#discussion_r699235376 2. https://github.com/alphagov/notifications-admin/pull/3996#discussion_r699220672 3. https://github.com/alphagov/notifications-admin/pull/3996#discussion_r699230038
133 lines
3.9 KiB
HTML
133 lines
3.9 KiB
HTML
<script src="{{ asset_url('javascripts/leaflet.js') }}"></script>
|
|
<script>
|
|
var polygons = []
|
|
|
|
{% for polygon in broadcast_message.simple_polygons_with_bleed.as_coordinate_pairs_lat_long %}
|
|
polygons.push(
|
|
L.polygon({{polygon}}, {
|
|
opacity: 1,
|
|
color: '#005ea5',
|
|
fillColor: '#2B8CC4',
|
|
fillOpacity: 0.15,
|
|
weight: 2,
|
|
dashArray: [6, 7],
|
|
lineCap: 'butt'
|
|
})
|
|
);
|
|
{% endfor %}
|
|
|
|
{% for polygon in broadcast_message.polygons.as_coordinate_pairs_lat_long %}
|
|
polygons.push(
|
|
L.polygon({{polygon}}, {
|
|
color: '#0b0b0c',
|
|
fillColor: '#2B8CC4',
|
|
fillOpacity: 0.3,
|
|
weight: 2
|
|
})
|
|
);
|
|
{% endfor %}
|
|
|
|
|
|
var mapElement = document.getElementById('area-list-map');
|
|
var grandparent = mapElement.parentNode.parentNode;
|
|
var isInDetails = grandparent.className.indexOf('govuk-details') !== -1;
|
|
var areas = document.querySelectorAll('.area-list > .area-list-item');
|
|
var trimRegExp = /^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g;
|
|
var details;
|
|
var label;
|
|
|
|
// if element is inside a details element then to make the map render correctly we open the details element
|
|
// and set up the map before closing the details map after
|
|
if (isInDetails) {
|
|
details = grandparent;
|
|
details.open = true;
|
|
}
|
|
|
|
function addAriaLabel (mapElement) {
|
|
|
|
function getLabelPrefix (areas) {
|
|
var labelPrefix = ['Map of the United Kingdom, showing the ', ' for'];
|
|
|
|
if (areas.length === 1) {
|
|
return labelPrefix[0] + 'area' + labelPrefix[1];
|
|
} else {
|
|
return labelPrefix[0] + 'areas' + labelPrefix[1];
|
|
}
|
|
};
|
|
|
|
function getStringOfAreas (areas) {
|
|
var areasLen = areas.length;
|
|
var areaStrings = [];
|
|
var idx;
|
|
|
|
function getAreaName (area) {
|
|
var areaString = '';
|
|
var childNodesLen = area.childNodes.length;
|
|
var childNode;
|
|
|
|
while (childNodesLen--) {
|
|
childNode = area.childNodes[childNodesLen];
|
|
if (childNode.nodeType === 3) { areaString += childNode.nodeValue; } // only use text nodes
|
|
}
|
|
|
|
return areaString.replace(trimRegExp, '')
|
|
};
|
|
|
|
if (areasLen === 1) { return getAreaName(areas[0]); }
|
|
|
|
for (idx = 0; idx < areasLen; idx++) {
|
|
areaStrings.push(getAreaName(areas[idx]));
|
|
}
|
|
|
|
// always join last 2 areas with 'and', the rest with commas
|
|
return areaStrings.slice(0, areasLen - 1).join(', ') + ' and ' + areaStrings[areasLen - 1];
|
|
};
|
|
|
|
label = getLabelPrefix(areas) + " " + getStringOfAreas(areas);
|
|
mapElement.setAttribute('aria-label', label);
|
|
};
|
|
|
|
function addAriaDescription (mapElement) {
|
|
|
|
var mapContainer = mapElement.parentNode;
|
|
var description = document.createElement('p');
|
|
var descriptionText = 'Use the arrow keys to move the map. Use the buttons to zoom the map in or out';
|
|
|
|
description.appendChild(
|
|
document.createTextNode(descriptionText)
|
|
);
|
|
description.setAttribute('id', 'area-list-map__description');
|
|
description.className = 'govuk-visually-hidden';
|
|
mapContainer.insertBefore(description, mapElement.nextSibling);
|
|
mapElement.setAttribute('aria-describedby', 'area-list-map__description');
|
|
};
|
|
|
|
mapElement.style.height = Math.max(320, window.innerHeight - mapElement.offsetTop - 100) + 'px';
|
|
mapElement.setAttribute('role', 'region');
|
|
addAriaLabel(mapElement);
|
|
addAriaDescription(mapElement);
|
|
|
|
var mymap = L.map(
|
|
'area-list-map',
|
|
{
|
|
scrollWheelZoom: false
|
|
}
|
|
)
|
|
|
|
L.tileLayer('https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', {
|
|
attribution: '© <a href="https://www.openstreetmap.org/copyright">OpenStreetMap</a> contributors'
|
|
}).addTo(mymap);
|
|
|
|
var polygonGroup = L.featureGroup(polygons).addTo(mymap);
|
|
mymap.fitBounds(
|
|
polygonGroup.getBounds(),
|
|
{padding: [1, 1]}
|
|
);
|
|
|
|
// if element is inside a details element then close the details element
|
|
if (isInDetails) {
|
|
details.open = false;
|
|
}
|
|
|
|
</script>
|