2021-04-19 20:48:03 -07:00
|
|
|
import { createToast } from './toast';
|
|
|
|
import { isTruthy, getElements, apiPatch, hasError } from './util';
|
2021-03-19 09:25:27 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Add onClick callback for toggling rack elevation images.
|
|
|
|
*/
|
2021-04-19 20:48:03 -07:00
|
|
|
function initRackElevation() {
|
2021-03-19 09:25:27 -07:00
|
|
|
for (const button of getElements('button.toggle-images')) {
|
|
|
|
/**
|
|
|
|
* Toggle the visibility of device images and update the toggle button style.
|
|
|
|
*/
|
|
|
|
function handleClick(event: Event) {
|
|
|
|
const target = event.target as HTMLButtonElement;
|
|
|
|
const selected = target.getAttribute('selected');
|
|
|
|
|
|
|
|
if (isTruthy(selected)) {
|
|
|
|
target.innerHTML = `<i class="bi bi-file-image"></i> Show Images`;
|
|
|
|
|
|
|
|
for (const elevation of getElements<HTMLObjectElement>('.rack_elevation')) {
|
|
|
|
const images = elevation.contentDocument?.querySelectorAll('image.device-image') ?? [];
|
|
|
|
for (const image of images) {
|
|
|
|
if (!image.classList.contains('hidden')) {
|
|
|
|
image && image.classList.add('hidden');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
target.setAttribute('selected', '');
|
|
|
|
} else {
|
|
|
|
target.innerHTML = `<i class="bi bi-file-image"></i> Hide Images`;
|
|
|
|
|
|
|
|
for (const elevation of getElements<HTMLObjectElement>('.rack_elevation')) {
|
|
|
|
const images = elevation.contentDocument?.querySelectorAll('image.device-image') ?? [];
|
|
|
|
for (const image of images) {
|
|
|
|
image && image.classList.remove('hidden');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
target.setAttribute('selected', 'selected');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
button.addEventListener('click', handleClick);
|
|
|
|
}
|
|
|
|
}
|
2021-04-19 20:48:03 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* When the toggle button is clicked, swap the connection status via the API and toggle CSS
|
|
|
|
* classes to reflect the connection status.
|
|
|
|
*
|
|
|
|
* @param element Connection Toggle Button Element
|
|
|
|
*/
|
|
|
|
function toggleConnection(element: HTMLButtonElement) {
|
|
|
|
const id = element.getAttribute('data');
|
|
|
|
const connected = element.classList.contains('connected');
|
|
|
|
const status = connected ? 'planned' : 'connected';
|
|
|
|
|
|
|
|
if (isTruthy(id)) {
|
|
|
|
apiPatch(`/api/dcim/cables/${id}/`, { status }).then(res => {
|
|
|
|
if (hasError(res)) {
|
|
|
|
// If the API responds with an error, show it to the user.
|
|
|
|
createToast('danger', 'Error', res.error).show();
|
|
|
|
return;
|
|
|
|
} else {
|
|
|
|
// Get the button's row to change its styles.
|
|
|
|
const row = element.parentElement?.parentElement as HTMLTableRowElement;
|
|
|
|
// Get the button's icon to change its CSS class.
|
|
|
|
const icon = element.querySelector('i.mdi, span.mdi') as HTMLSpanElement;
|
|
|
|
if (connected) {
|
|
|
|
row.classList.remove('success');
|
|
|
|
row.classList.add('info');
|
|
|
|
element.classList.remove('connected', 'btn-warning');
|
|
|
|
element.title = 'Mark Installed';
|
|
|
|
icon.classList.remove('mdi-lan-disconnect');
|
|
|
|
icon.classList.add('mdi-lan-connect');
|
|
|
|
} else {
|
|
|
|
row.classList.remove('info');
|
|
|
|
row.classList.add('success');
|
|
|
|
element.classList.remove('btn-success');
|
|
|
|
element.classList.add('connected', 'btn-warning');
|
|
|
|
element.title = 'Mark Installed';
|
|
|
|
icon.classList.remove('mdi-lan-connect');
|
|
|
|
icon.classList.add('mdi-lan-disconnect');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function initConnectionToggle() {
|
|
|
|
for (const element of getElements<HTMLButtonElement>('button.cable-toggle')) {
|
|
|
|
element.addEventListener('click', () => toggleConnection(element));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export function initButtons() {
|
|
|
|
for (const func of [initRackElevation, initConnectionToggle]) {
|
|
|
|
func();
|
|
|
|
}
|
|
|
|
}
|