mirror of
https://github.com/cisagov/manage.get.gov.git
synced 2025-08-04 17:01:56 +02:00
384 lines
16 KiB
JavaScript
384 lines
16 KiB
JavaScript
/**
|
|
* @file get-gov-admin.js includes custom code for the .gov registrar admin portal.
|
|
*
|
|
* Constants and helper functions are at the top.
|
|
* Event handlers are in the middle.
|
|
* Initialization (run-on-load) stuff goes at the bottom.
|
|
*/
|
|
|
|
// <<>><<>><<>><<>><<>><<>><<>><<>><<>><<>><<>><<>><<>><<>><<>>
|
|
// Helper functions.
|
|
/** Either sets attribute target="_blank" to a given element, or removes it */
|
|
function openInNewTab(el, removeAttribute = false){
|
|
if(removeAttribute){
|
|
el.setAttribute("target", "_blank");
|
|
}else{
|
|
el.removeAttribute("target", "_blank");
|
|
}
|
|
};
|
|
|
|
// <<>><<>><<>><<>><<>><<>><<>><<>><<>><<>><<>><<>><<>><<>><<>>
|
|
// Event handlers.
|
|
|
|
// <<>><<>><<>><<>><<>><<>><<>><<>><<>><<>><<>><<>><<>><<>><<>>
|
|
// Initialization code.
|
|
|
|
/** An IIFE for pages in DjangoAdmin that use modals.
|
|
* Dja strips out form elements, and modals generate their content outside
|
|
* of the current form scope, so we need to "inject" these inputs.
|
|
*/
|
|
(function (){
|
|
function createPhantomModalFormButtons(){
|
|
let submitButtons = document.querySelectorAll('.usa-modal button[type="submit"]');
|
|
form = document.querySelector("form")
|
|
submitButtons.forEach((button) => {
|
|
|
|
let input = document.createElement("input");
|
|
input.type = "submit";
|
|
input.name = button.name;
|
|
input.value = button.value;
|
|
input.style.display = "none"
|
|
|
|
// Add the hidden input to the form
|
|
form.appendChild(input);
|
|
button.addEventListener("click", () => {
|
|
console.log("clicking")
|
|
input.click();
|
|
})
|
|
})
|
|
}
|
|
|
|
createPhantomModalFormButtons();
|
|
})();
|
|
/** An IIFE for pages in DjangoAdmin which may need custom JS implementation.
|
|
* Currently only appends target="_blank" to the domain_form object,
|
|
* but this can be expanded.
|
|
*/
|
|
(function (){
|
|
/*
|
|
On mouseover, appends target="_blank" on domain_form under the Domain page.
|
|
The reason for this is that the template has a form that contains multiple buttons.
|
|
The structure of that template complicates seperating those buttons
|
|
out of the form (while maintaining the same position on the page).
|
|
However, if we want to open one of those submit actions to a new tab -
|
|
such as the manage domain button - we need to dynamically append target.
|
|
As there is no built-in django method which handles this, we do it here.
|
|
*/
|
|
function prepareDjangoAdmin() {
|
|
let domainFormElement = document.getElementById("domain_form");
|
|
let domainSubmitButton = document.getElementById("manageDomainSubmitButton");
|
|
if(domainSubmitButton && domainFormElement){
|
|
domainSubmitButton.addEventListener("mouseover", () => openInNewTab(domainFormElement, true));
|
|
domainSubmitButton.addEventListener("mouseout", () => openInNewTab(domainFormElement, false));
|
|
}
|
|
}
|
|
|
|
prepareDjangoAdmin();
|
|
})();
|
|
|
|
/**
|
|
* An IIFE to listen to changes on filter_horizontal and enable or disable the change/delete/view buttons as applicable
|
|
*
|
|
*/
|
|
(function extendFilterHorizontalWidgets() {
|
|
// Initialize custom filter_horizontal widgets; each widget has a "from" select list
|
|
// and a "to" select list; initialization is based off of the presence of the
|
|
// "to" select list
|
|
checkToListThenInitWidget('id_other_contacts_to', 0);
|
|
checkToListThenInitWidget('id_domain_info-0-other_contacts_to', 0);
|
|
checkToListThenInitWidget('id_current_websites_to', 0);
|
|
checkToListThenInitWidget('id_alternative_domains_to', 0);
|
|
})();
|
|
|
|
// Function to check for the existence of the "to" select list element in the DOM, and if and when found,
|
|
// initialize the associated widget
|
|
function checkToListThenInitWidget(toListId, attempts) {
|
|
let toList = document.getElementById(toListId);
|
|
attempts++;
|
|
|
|
if (attempts < 6) {
|
|
if ((toList !== null)) {
|
|
// toList found, handle it
|
|
// Add an event listener on the element
|
|
// Add disabled buttons on the element's great-grandparent
|
|
initializeWidgetOnToList(toList, toListId);
|
|
} else {
|
|
// Element not found, check again after a delay
|
|
setTimeout(() => checkToListThenInitWidget(toListId, attempts), 1000); // Check every 1000 milliseconds (1 second)
|
|
}
|
|
}
|
|
}
|
|
|
|
// Initialize the widget:
|
|
// add related buttons to the widget for edit, delete and view
|
|
// add event listeners on the from list, the to list, and selector buttons which either enable or disable the related buttons
|
|
function initializeWidgetOnToList(toList, toListId) {
|
|
// create the change button
|
|
let changeLink = createAndCustomizeLink(
|
|
toList,
|
|
toListId,
|
|
'related-widget-wrapper-link change-related',
|
|
'Change',
|
|
'/public/admin/img/icon-changelink.svg',
|
|
{
|
|
'contacts': '/admin/registrar/contact/__fk__/change/?_to_field=id&_popup=1',
|
|
'websites': '/admin/registrar/website/__fk__/change/?_to_field=id&_popup=1',
|
|
'alternative_domains': '/admin/registrar/website/__fk__/change/?_to_field=id&_popup=1',
|
|
},
|
|
true,
|
|
true
|
|
);
|
|
|
|
let hasDeletePermission = hasDeletePermissionOnPage();
|
|
|
|
let deleteLink = null;
|
|
if (hasDeletePermission) {
|
|
// create the delete button if user has permission to delete
|
|
deleteLink = createAndCustomizeLink(
|
|
toList,
|
|
toListId,
|
|
'related-widget-wrapper-link delete-related',
|
|
'Delete',
|
|
'/public/admin/img/icon-deletelink.svg',
|
|
{
|
|
'contacts': '/admin/registrar/contact/__fk__/delete/?_to_field=id&_popup=1',
|
|
'websites': '/admin/registrar/website/__fk__/delete/?_to_field=id&_popup=1',
|
|
'alternative_domains': '/admin/registrar/website/__fk__/delete/?_to_field=id&_popup=1',
|
|
},
|
|
true,
|
|
false
|
|
);
|
|
}
|
|
|
|
// create the view button
|
|
let viewLink = createAndCustomizeLink(
|
|
toList,
|
|
toListId,
|
|
'related-widget-wrapper-link view-related',
|
|
'View',
|
|
'/public/admin/img/icon-viewlink.svg',
|
|
{
|
|
'contacts': '/admin/registrar/contact/__fk__/change/?_to_field=id',
|
|
'websites': '/admin/registrar/website/__fk__/change/?_to_field=id',
|
|
'alternative_domains': '/admin/registrar/website/__fk__/change/?_to_field=id',
|
|
},
|
|
false,
|
|
false
|
|
);
|
|
|
|
// identify the fromList element in the DOM
|
|
let fromList = toList.closest('.selector').querySelector(".selector-available select");
|
|
|
|
fromList.addEventListener('click', function(event) {
|
|
handleSelectClick(fromList, changeLink, deleteLink, viewLink);
|
|
});
|
|
|
|
toList.addEventListener('click', function(event) {
|
|
handleSelectClick(toList, changeLink, deleteLink, viewLink);
|
|
});
|
|
|
|
// Disable buttons when the selectors are interacted with (items are moved from one column to the other)
|
|
let selectorButtons = [];
|
|
selectorButtons.push(toList.closest(".selector").querySelector(".selector-chooseall"));
|
|
selectorButtons.push(toList.closest(".selector").querySelector(".selector-add"));
|
|
selectorButtons.push(toList.closest(".selector").querySelector(".selector-remove"));
|
|
|
|
selectorButtons.forEach((selector) => {
|
|
selector.addEventListener("click", ()=>{disableRelatedWidgetButtons(changeLink, deleteLink, viewLink)});
|
|
});
|
|
}
|
|
|
|
// create and customize the button, then add to the DOM, relative to the toList
|
|
// toList - the element in the DOM for the toList
|
|
// toListId - the ID of the element in the DOM
|
|
// className - className to add to the created link
|
|
// action - the action to perform on the item {change, delete, view}
|
|
// imgSrc - the img.src for the created link
|
|
// dataMappings - dictionary which relates toListId to href for the created link
|
|
// dataPopup - boolean for whether the link should produce a popup window
|
|
// firstPosition - boolean indicating if link should be first position in list of links, otherwise, should be last link
|
|
function createAndCustomizeLink(toList, toListId, className, action, imgSrc, dataMappings, dataPopup, firstPosition) {
|
|
// Create a link element
|
|
var link = document.createElement('a');
|
|
|
|
// Set class attribute for the link
|
|
link.className = className;
|
|
|
|
// Set id
|
|
// Determine function {change, link, view} from the className
|
|
// Add {function}_ to the beginning of the string
|
|
let modifiedLinkString = className.split('-')[0] + '_' + toListId;
|
|
// Remove '_to' from the end of the string
|
|
modifiedLinkString = modifiedLinkString.replace('_to', '');
|
|
link.id = modifiedLinkString;
|
|
|
|
// Set data-href-template
|
|
for (const [idPattern, template] of Object.entries(dataMappings)) {
|
|
if (toListId.includes(idPattern)) {
|
|
link.setAttribute('data-href-template', template);
|
|
break; // Stop checking once a match is found
|
|
}
|
|
}
|
|
|
|
if (dataPopup)
|
|
link.setAttribute('data-popup', 'yes');
|
|
|
|
link.setAttribute('title-template', action + " selected item")
|
|
link.title = link.getAttribute('title-template');
|
|
|
|
// Create an 'img' element
|
|
var img = document.createElement('img');
|
|
|
|
// Set attributes for the new image
|
|
img.src = imgSrc;
|
|
img.alt = action;
|
|
|
|
// Append the image to the link
|
|
link.appendChild(img);
|
|
|
|
let relatedWidgetWrapper = toList.closest('.related-widget-wrapper');
|
|
// If firstPosition is true, insert link as the first child element
|
|
if (firstPosition) {
|
|
relatedWidgetWrapper.insertBefore(link, relatedWidgetWrapper.children[0]);
|
|
} else {
|
|
// otherwise, insert the link prior to the last child (which is a div)
|
|
// and also prior to any text elements immediately preceding the last
|
|
// child node
|
|
var lastChild = relatedWidgetWrapper.lastChild;
|
|
|
|
// Check if lastChild is an element node (not a text node, comment, etc.)
|
|
if (lastChild.nodeType === 1) {
|
|
var previousSibling = lastChild.previousSibling;
|
|
// need to work around some white space which has been inserted into the dom
|
|
while (previousSibling.nodeType !== 1) {
|
|
previousSibling = previousSibling.previousSibling;
|
|
}
|
|
relatedWidgetWrapper.insertBefore(link, previousSibling.nextSibling);
|
|
}
|
|
}
|
|
|
|
// Return the link, which we'll use in the disable and enable functions
|
|
return link;
|
|
}
|
|
|
|
// Either enable or disable widget buttons when select is clicked. Action (enable or disable) taken depends on the count
|
|
// of selected items in selectElement. If exactly one item is selected, buttons are enabled, and urls for the buttons are
|
|
// associated with the selected item
|
|
function handleSelectClick(selectElement, changeLink, deleteLink, viewLink) {
|
|
|
|
// If one item is selected (across selectElement and relatedSelectElement), enable buttons; otherwise, disable them
|
|
if (selectElement.selectedOptions.length === 1) {
|
|
// enable buttons for selected item in selectElement
|
|
enableRelatedWidgetButtons(changeLink, deleteLink, viewLink, selectElement.selectedOptions[0].value, selectElement.selectedOptions[0].text);
|
|
} else {
|
|
disableRelatedWidgetButtons(changeLink, deleteLink, viewLink);
|
|
}
|
|
}
|
|
|
|
// return true if there exist elements on the page with classname of delete-related.
|
|
// presence of one or more of these elements indicates user has permission to delete
|
|
function hasDeletePermissionOnPage() {
|
|
return document.querySelector('.delete-related') != null
|
|
}
|
|
|
|
function disableRelatedWidgetButtons(changeLink, deleteLink, viewLink) {
|
|
changeLink.removeAttribute('href');
|
|
changeLink.setAttribute('title', changeLink.getAttribute('title-template'));
|
|
if (deleteLink) {
|
|
deleteLink.removeAttribute('href');
|
|
deleteLink.setAttribute('title', deleteLink.getAttribute('title-template'));
|
|
}
|
|
viewLink.removeAttribute('href');
|
|
viewLink.setAttribute('title', viewLink.getAttribute('title-template'));
|
|
}
|
|
|
|
function enableRelatedWidgetButtons(changeLink, deleteLink, viewLink, elementPk, elementText) {
|
|
changeLink.setAttribute('href', changeLink.getAttribute('data-href-template').replace('__fk__', elementPk));
|
|
changeLink.setAttribute('title', changeLink.getAttribute('title-template').replace('selected item', elementText));
|
|
if (deleteLink) {
|
|
deleteLink.setAttribute('href', deleteLink.getAttribute('data-href-template').replace('__fk__', elementPk));
|
|
deleteLink.setAttribute('title', deleteLink.getAttribute('title-template').replace('selected item', elementText));
|
|
}
|
|
viewLink.setAttribute('href', viewLink.getAttribute('data-href-template').replace('__fk__', elementPk));
|
|
viewLink.setAttribute('title', viewLink.getAttribute('title-template').replace('selected item', elementText));
|
|
}
|
|
|
|
/** An IIFE for admin in DjangoAdmin to listen to clicks on the growth report export button,
|
|
* attach the seleted start and end dates to a url that'll trigger the view, and finally
|
|
* redirect to that url.
|
|
*/
|
|
(function (){
|
|
|
|
// Get the current date in the format YYYY-MM-DD
|
|
let currentDate = new Date().toISOString().split('T')[0];
|
|
|
|
// Default the value of the start date input field to the current date
|
|
let startDateInput =document.getElementById('start');
|
|
|
|
// Default the value of the end date input field to the current date
|
|
let endDateInput =document.getElementById('end');
|
|
|
|
let exportGrowthReportButton = document.getElementById('exportLink');
|
|
|
|
if (exportGrowthReportButton) {
|
|
startDateInput.value = currentDate;
|
|
endDateInput.value = currentDate;
|
|
|
|
exportGrowthReportButton.addEventListener('click', function() {
|
|
// Get the selected start and end dates
|
|
let startDate = startDateInput.value;
|
|
let endDate = endDateInput.value;
|
|
let exportUrl = document.getElementById('exportLink').dataset.exportUrl;
|
|
|
|
// Build the URL with parameters
|
|
exportUrl += "?start_date=" + startDate + "&end_date=" + endDate;
|
|
|
|
// Redirect to the export URL
|
|
window.location.href = exportUrl;
|
|
});
|
|
}
|
|
|
|
})();
|
|
|
|
/** An IIFE for admin in DjangoAdmin to listen to changes on the domain request
|
|
* status select amd to show/hide the rejection reason
|
|
*/
|
|
(function (){
|
|
let rejectionReasonFormGroup = document.querySelector('.field-rejection_reason')
|
|
|
|
if (rejectionReasonFormGroup) {
|
|
let statusSelect = document.getElementById('id_status')
|
|
|
|
// Initial handling of rejectionReasonFormGroup display
|
|
if (statusSelect.value != 'rejected')
|
|
rejectionReasonFormGroup.style.display = 'none';
|
|
|
|
// Listen to change events and handle rejectionReasonFormGroup display, then save status to session storage
|
|
statusSelect.addEventListener('change', function() {
|
|
if (statusSelect.value == 'rejected') {
|
|
rejectionReasonFormGroup.style.display = 'block';
|
|
sessionStorage.removeItem('hideRejectionReason');
|
|
} else {
|
|
rejectionReasonFormGroup.style.display = 'none';
|
|
sessionStorage.setItem('hideRejectionReason', 'true');
|
|
}
|
|
});
|
|
}
|
|
|
|
// Listen to Back/Forward button navigation and handle rejectionReasonFormGroup display based on session storage
|
|
|
|
// When you navigate using forward/back after changing status but not saving, when you land back on the DA page the
|
|
// status select will say (for example) Rejected but the selected option can be something else. To manage the show/hide
|
|
// accurately for this edge case, we use cache and test for the back/forward navigation.
|
|
const observer = new PerformanceObserver((list) => {
|
|
list.getEntries().forEach((entry) => {
|
|
if (entry.type === "back_forward") {
|
|
if (sessionStorage.getItem('hideRejectionReason'))
|
|
document.querySelector('.field-rejection_reason').style.display = 'none';
|
|
else
|
|
document.querySelector('.field-rejection_reason').style.display = 'block';
|
|
}
|
|
});
|
|
});
|
|
observer.observe({ type: "navigation" });
|
|
})();
|