mirror of
https://github.com/go-gitea/gitea.git
synced 2024-12-19 08:35:29 +01:00
c8ea41b049
Fixes 79 typescript errors. Discovered at least two bugs in `notifications.ts`, and I'm pretty sure this feature was at least partially broken and may still be, I don't really know how to test it. After this, only like ~10 typescript errors remain in the codebase but those are harder to solve. --------- Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
24 lines
759 B
TypeScript
24 lines
759 B
TypeScript
export function initRepositorySearch() {
|
|
const repositorySearchForm = document.querySelector<HTMLFormElement>('#repo-search-form');
|
|
if (!repositorySearchForm) return;
|
|
|
|
repositorySearchForm.addEventListener('change', (e: Event & {target: HTMLFormElement}) => {
|
|
e.preventDefault();
|
|
|
|
const params = new URLSearchParams();
|
|
for (const [key, value] of new FormData(repositorySearchForm).entries()) {
|
|
params.set(key, value.toString());
|
|
}
|
|
if (e.target.name === 'clear-filter') {
|
|
params.delete('archived');
|
|
params.delete('fork');
|
|
params.delete('mirror');
|
|
params.delete('template');
|
|
params.delete('private');
|
|
}
|
|
|
|
params.delete('clear-filter');
|
|
window.location.search = params.toString();
|
|
});
|
|
}
|