mirror of
https://github.com/resf/distro-tools.git
synced 2024-11-15 01:31:25 +00:00
95 lines
3.1 KiB
TypeScript
95 lines
3.1 KiB
TypeScript
|
import './theme.scss';
|
||
|
import '@carbon/web-components/es/components/ui-shell';
|
||
|
import '@carbon/web-components/es/components/structured-list';
|
||
|
import '@carbon/web-components/es/components/data-table';
|
||
|
import '@carbon/web-components/es/components/pagination';
|
||
|
import '@carbon/web-components/es/components/form';
|
||
|
import '@carbon/web-components/es/components/input';
|
||
|
import '@carbon/web-components/es/components/button';
|
||
|
import '@carbon/web-components/es/components/notification';
|
||
|
import '@carbon/web-components/es/components/tag';
|
||
|
import '@carbon/web-components/es/components/list';
|
||
|
|
||
|
function fixForm() {
|
||
|
const buttons = document.querySelectorAll('bx-btn');
|
||
|
buttons.forEach((button) => {
|
||
|
if (!button.getAttribute('form_id')) {
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
const form: any = document.querySelector(
|
||
|
'form#' + button.getAttribute('form_id')
|
||
|
);
|
||
|
if (form) {
|
||
|
button.addEventListener('click', () => {
|
||
|
form.submit();
|
||
|
});
|
||
|
}
|
||
|
});
|
||
|
|
||
|
// Also do the same for bx-input and enter key
|
||
|
const inputs = document.querySelectorAll('bx-input');
|
||
|
inputs.forEach((input) => {
|
||
|
input.addEventListener('keydown', (evt: any) => {
|
||
|
if (!input.getAttribute('form_id')) {
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
if (evt.key === 'Enter') {
|
||
|
const form: any = document.querySelector(
|
||
|
'form#' + input.getAttribute('form_id')
|
||
|
);
|
||
|
if (form) {
|
||
|
form.submit();
|
||
|
}
|
||
|
}
|
||
|
});
|
||
|
});
|
||
|
}
|
||
|
|
||
|
document.addEventListener('DOMContentLoaded', function () {
|
||
|
document.querySelectorAll('bx-pagination').forEach((el) => {
|
||
|
el.addEventListener('bx-pagination-changed-current', function (evt: any) {
|
||
|
const pageSize = parseInt(el.getAttribute('page-size') || '0');
|
||
|
const newPage = Math.ceil(evt.detail.start / pageSize) + 1;
|
||
|
|
||
|
const searchParams = new URLSearchParams(window.location.search);
|
||
|
searchParams.set('page', newPage.toString());
|
||
|
window.location.search = searchParams.toString();
|
||
|
});
|
||
|
});
|
||
|
|
||
|
// Add "active" if location has prefix, e.g. /admin/ -> /admin
|
||
|
// For / only we need to check if the location is exactly /
|
||
|
const pathname = window.location.pathname;
|
||
|
document.querySelectorAll('bx-side-nav-link').forEach((el) => {
|
||
|
const href = el.getAttribute('href');
|
||
|
if (href === '/') {
|
||
|
if (pathname === '/') {
|
||
|
el.setAttribute('active', '');
|
||
|
}
|
||
|
} else if (pathname.startsWith(href || '')) {
|
||
|
el.setAttribute('active', '');
|
||
|
}
|
||
|
});
|
||
|
|
||
|
// Change "search" query parameter when the search field encounters Enter
|
||
|
const searchToolbar: any = document.querySelector('bx-table-toolbar-search');
|
||
|
if (searchToolbar) {
|
||
|
const searchBar: any =
|
||
|
searchToolbar.shadowRoot.querySelector('.bx--search-input');
|
||
|
if (searchBar) {
|
||
|
searchBar.addEventListener('keydown', (evt: any) => {
|
||
|
if (evt.key === 'Enter') {
|
||
|
const searchParams = new URLSearchParams(window.location.search);
|
||
|
searchParams.set('search', searchBar.value);
|
||
|
searchParams.set('page', '1');
|
||
|
window.location.search = searchParams.toString();
|
||
|
}
|
||
|
});
|
||
|
}
|
||
|
}
|
||
|
|
||
|
fixForm();
|
||
|
});
|