You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
661 B
21 lines
661 B
4 years ago
|
export default function initTableSort() {
|
||
|
for (const header of document.querySelectorAll('th[data-sortt-asc]') || []) {
|
||
|
const {sorttAsc, sorttDesc, sorttDefault} = header.dataset;
|
||
|
header.addEventListener('click', () => {
|
||
|
tableSort(sorttAsc, sorttDesc, sorttDefault);
|
||
|
});
|
||
|
}
|
||
|
}
|
||
|
|
||
|
function tableSort(normSort, revSort, isDefault) {
|
||
|
if (!normSort) return false;
|
||
|
if (!revSort) revSort = '';
|
||
|
|
||
|
const url = new URL(window.location);
|
||
|
let urlSort = url.searchParams.get('sort');
|
||
|
if (!urlSort && isDefault) urlSort = normSort;
|
||
|
|
||
|
url.searchParams.set('sort', urlSort !== normSort ? normSort : revSort);
|
||
|
window.location.replace(url.href);
|
||
|
}
|