-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapi.ts
81 lines (66 loc) · 1.86 KB
/
api.ts
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
import useSWR, { mutate } from "swr";
// const CBEAM_REST_URL = "/api";
const CBEAM_REST_URL = "https://c-beam.cbrp3.c-base.org/api";
const CBEAM_RPC_REST_URL = "http://c-flo.cbrp3.c-base.org/rpc";
const fetcher = (url: string) => fetch(url).then((res) => res.json());
const rpcGet = (method: string) =>
fetcher(`${CBEAM_RPC_REST_URL}/${method}`).then((data) => data.result);
export function useMember() {
const { data, error } = useSWR(`${CBEAM_REST_URL}/member`, fetcher);
return {
member: data?.sort(
(m1: any, m2: any) => m2.online_percentage - m1.online_percentage
),
isLoading: !error && !data,
isError: error,
};
}
export function useBarstatus() {
const { data, error } = useSWR(`${CBEAM_REST_URL}/barstatus`, fetcher);
return {
status: data,
isLoading: !error && !data,
isError: error,
};
}
export function useEvents() {
const { data, error } = useSWR(`${CBEAM_REST_URL}/events`, fetcher);
return {
events: data,
isLoading: !error && !data,
isError: error,
};
}
type MatelightVideo = {
hasThumbnail: boolean;
thumbnailName: string;
title: string;
};
export const getMathelightImgUrl = (video: MatelightVideo) =>
`${CBEAM_REST_URL}/matelight/${video.title}/image/`;
export function useMatelight() {
const { data, error } = useSWR(
`${CBEAM_REST_URL}/matelight/status/`,
fetcher
);
return {
matelight: data,
isLoading: !error && !data,
isError: error,
};
}
export function useMatelightVideos() {
const { data, error } = useSWR<MatelightVideo[]>(
`${CBEAM_REST_URL}/matelight/`,
fetcher
);
return {
videos: data,
isLoading: !error && !data,
isError: error,
};
}
export const playMatelightVideo = async (video: MatelightVideo) => {
await fetcher(`${CBEAM_REST_URL}/matelight/${video.title}/play/`);
mutate(`${CBEAM_REST_URL}/matelight/status/`);
};