aboutsummaryrefslogtreecommitdiff
path: root/web/pw-server/src/routes/matches/index.svelte
diff options
context:
space:
mode:
authorIlion Beyst <ilion.beyst@gmail.com>2022-10-25 18:57:58 +0200
committerIlion Beyst <ilion.beyst@gmail.com>2022-10-25 18:57:58 +0200
commit55c76db7b60ae142a1d224e4d485771d7be2b51f (patch)
treeafc158623583bf5b54632c7875a7cb7e985154d3 /web/pw-server/src/routes/matches/index.svelte
parente3164246e1733c717072b804566a485458769314 (diff)
downloadplanetwars.dev-55c76db7b60ae142a1d224e4d485771d7be2b51f.tar.xz
planetwars.dev-55c76db7b60ae142a1d224e4d485771d7be2b51f.zip
fix matches page filter params propagation
Diffstat (limited to 'web/pw-server/src/routes/matches/index.svelte')
-rw-r--r--web/pw-server/src/routes/matches/index.svelte12
1 files changed, 11 insertions, 1 deletions
diff --git a/web/pw-server/src/routes/matches/index.svelte b/web/pw-server/src/routes/matches/index.svelte
index 8c106fa..9679132 100644
--- a/web/pw-server/src/routes/matches/index.svelte
+++ b/web/pw-server/src/routes/matches/index.svelte
@@ -8,11 +8,18 @@
const apiClient = new ApiClient(fetch);
const botName = url.searchParams.get("bot");
+ let searchParams = removeUndefined({
+ bot: url.searchParams.get("bot"),
+ opponent: url.searchParams.get("opponent"),
+ outcome: url.searchParams.get("outcome"),
+ had_errors: url.searchParams.get("had_errors"),
+ });
+
let query = {
count: PAGE_SIZE,
before: url.searchParams.get("before"),
after: url.searchParams.get("after"),
- bot: botName,
+ ...searchParams,
};
let { matches, has_next } = await apiClient.get("/api/matches", removeUndefined(query));
@@ -28,6 +35,7 @@
botName,
hasNext: has_next,
query,
+ searchParams,
},
};
} catch (error) {
@@ -57,6 +65,7 @@
// whether a next page exists in the current iteration direction (before/after)
export let hasNext: boolean;
export let query: object;
+ export let searchParams: object;
type Cursor = {
before?: string;
@@ -65,6 +74,7 @@
function pageLink(cursor: Cursor) {
let paramsObj = {
+ ...searchParams,
...cursor,
};
if (botName) {