-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathdirection-count.tsx
91 lines (81 loc) · 2.54 KB
/
direction-count.tsx
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
import { SchemaType } from "@/typescript/models.gen";
import { useDojoSDK } from "@dojoengine/sdk/react";
import { useToriiSQLQuery } from "@dojoengine/sdk/sql";
import { useQueryClient } from "@tanstack/react-query";
type QueryResponse = Array<{
count: number;
direction: string;
}>;
type DirectionCount = {
Left: number;
Up: number;
Down: number;
Right: number;
};
const DIRECTION_COUNT_QUERY = `SELECT
JSON_EXTRACT(data, '$.direction') as direction,
COUNT(*) as count
FROM event_messages_historical
GROUP BY JSON_EXTRACT(data, '$.direction')`;
const defaultDirectionObject = { Left: 0, Up: 0, Down: 0, Right: 0 };
function parseDirection(str: string): string {
const parsed = JSON.parse(str);
return Object.keys(parsed)[0];
}
function formatFn(rows: QueryResponse): DirectionCount {
const directions = defaultDirectionObject;
rows.forEach((r) => {
const direction = parseDirection(r.direction);
// @ts-expect-error this is ok compiler
directions[direction] = r.count;
});
return directions;
}
export function DirectionCount() {
// use queryClient to invalidateQuery when state is changing.
const { useDojoStore } = useDojoSDK();
const queryClient = useQueryClient();
// @ts-expect-error it's ok if I dont use this variable compiler, react needs it
useDojoStore.subscribe(
(s: SchemaType) => s.entities,
() => {
queryClient.invalidateQueries({
queryKey: [DIRECTION_COUNT_QUERY],
});
}
);
// use the isRefetching prop here so that react knows the state is changing and actually rerender compoentnt
// @ts-expect-error it's ok if I dont use this variable compiler, react needs it
const { data: directions, isRefetching } = useToriiSQLQuery(
DIRECTION_COUNT_QUERY,
formatFn
);
if (!directions) {
return (
<div>
Player went :<br />
Left <b>0</b> times
<br />
Up <b>0</b> times
<br />
Down <b>0</b> times
<br />
Right <b>0</b> times
<br />
</div>
);
}
return (
<div>
Player went :<br />
Left <b>{directions.Left}</b> times
<br />
Up <b>{directions.Up}</b> times
<br />
Down <b>{directions.Down}</b> times
<br />
Right <b>{directions.Right}</b> times
<br />
</div>
);
}