aboutsummaryrefslogtreecommitdiff
path: root/web/pw-server/src/routes/matches/index.svelte
blob: 393d513165d540835819fbf6422e5ab200697bb9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<script lang="ts" context="module">
  import { ApiClient } from "$lib/api_client";

  const PAGE_SIZE = "50";

  export async function load({ url, fetch }) {
    try {
      const apiClient = new ApiClient(fetch);
      const botName = url.searchParams.get("bot");

      let query = {
        count: PAGE_SIZE,
        before: url.searchParams.get("before"),
        after: url.searchParams.get("after"),
        bot: botName,
      };

      let matches = await apiClient.get("/api/matches", removeUndefined(query));

      // TODO: should this be done client-side?
      if (query["after"]) {
        matches = matches.reverse();
      }

      return {
        props: {
          matches,
          botName,
        },
      };
    } catch (error) {
      return {
        status: error.status,
        error: new Error("failed to load matches"),
      };
    }
  }

  function removeUndefined(obj: Record<string, string>): Record<string, string> {
    Object.keys(obj).forEach((key) => {
      if (obj[key] === undefined || obj[key] === null) {
        delete obj[key];
      }
    });
    return obj;
  }
</script>

<script lang="ts">
  import { goto } from "$app/navigation";

  import MatchList from "$lib/components/matches/MatchList.svelte";

  export let matches: object[];
  export let botName: string | null;

  type Cursor = {
    before?: string;
    after?: string;
  };

  function pageLink(cursor: Cursor) {
    let paramsObj = {
      ...cursor,
    };
    if (botName) {
      paramsObj["bot"] = botName;
    }
    const params = new URLSearchParams(paramsObj);
    return `?${params}`;
  }

  async function loadNewer() {
    if (matches.length == 0) {
      return;
    }
    const firstTimestamp = matches[0]["timestamp"];
    goto(pageLink({ after: firstTimestamp }));
  }

  async function loadOlder() {
    if (matches.length == 0) {
      return;
    }
    const lastTimestamp = matches[matches.length - 1]["timestamp"];
    goto(pageLink({ before: lastTimestamp }));
  }
</script>

<div class="container">
  <MatchList {matches} />
  <div class="page-controls">
    <button on:click={loadNewer}>newer</button>
    <button on:click={loadOlder}>older</button>
  </div>
</div>

<style lang="scss">
  .container {
    width: 800px;
    margin: 0 auto;
  }

  .page-controls {
    display: flex;
    justify-content: space-between;
    margin: 12px;
  }
</style>