"use strict"; /* eslint-disable @typescript-eslint/no-non-null-assertion, unicorn/prefer-module */ Object.defineProperty(exports, "__esModule", { value: true }); (() => { const los = exports.los; const searchFilterFormElement = document.querySelector('#form--searchFilters'); const searchResultsContainerElement = document.querySelector('#container--searchResults'); const limit = Number.parseInt(document.querySelector('#searchFilter--limit').value, 10); const offsetElement = document.querySelector('#searchFilter--offset'); function renderLots(responseJSON) { var _a, _b, _c, _d, _e; if (responseJSON.lots.length === 0) { searchResultsContainerElement.innerHTML = `

There are no ${los.escapedAliases.lots} that meet the search criteria.

`; return; } const resultsTbodyElement = document.createElement('tbody'); for (const lot of responseJSON.lots) { resultsTbodyElement.insertAdjacentHTML('beforeend', '' + ('' + '' + cityssm.escapeHTML((_a = lot.lotName) !== null && _a !== void 0 ? _a : '') + '' + '') + ('' + '' + (lot.mapName ? cityssm.escapeHTML(lot.mapName) : '(No Name)') + '' + '') + ('' + cityssm.escapeHTML((_b = lot.lotType) !== null && _b !== void 0 ? _b : '') + '') + ('' + (lot.lotStatusId ? cityssm.escapeHTML(lot.lotStatus) : '(No Status)') + '
' + (((_c = lot.lotOccupancyCount) !== null && _c !== void 0 ? _c : 0) > 0 ? 'Currently Occupied' : '') + '') + ''); } searchResultsContainerElement.innerHTML = `
${los.escapedAliases.Lot} ${los.escapedAliases.Map} ${los.escapedAliases.Lot} Type Status
`; searchResultsContainerElement.insertAdjacentHTML('beforeend', los.getSearchResultsPagerHTML(limit, responseJSON.offset, responseJSON.count)); searchResultsContainerElement .querySelector('table') .append(resultsTbodyElement); (_d = searchResultsContainerElement .querySelector("button[data-page='previous']")) === null || _d === void 0 ? void 0 : _d.addEventListener('click', previousAndGetLots); (_e = searchResultsContainerElement .querySelector("button[data-page='next']")) === null || _e === void 0 ? void 0 : _e.addEventListener('click', nextAndGetLots); } function getLots() { searchResultsContainerElement.innerHTML = los.getLoadingParagraphHTML(`Loading ${los.escapedAliases.Lots}...`); cityssm.postJSON(los.urlPrefix + '/lots/doSearchLots', searchFilterFormElement, renderLots); } function resetOffsetAndGetLots() { offsetElement.value = '0'; getLots(); } function previousAndGetLots() { offsetElement.value = Math.max(Number.parseInt(offsetElement.value, 10) - limit, 0).toString(); getLots(); } function nextAndGetLots() { offsetElement.value = (Number.parseInt(offsetElement.value, 10) + limit).toString(); getLots(); } const filterElements = searchFilterFormElement.querySelectorAll('input, select'); for (const filterElement of filterElements) { filterElement.addEventListener('change', resetOffsetAndGetLots); } searchFilterFormElement.addEventListener('submit', (formEvent) => { formEvent.preventDefault(); }); getLots(); })();