-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutils.ts
36 lines (30 loc) · 851 Bytes
/
utils.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
import { MutableRefObject, RefObject } from "react";
const afterAnimation = (ref: RefObject<HTMLElement>, callback: () => void) => {
ref.current?.addEventListener("animationend", callback, {
once: true
});
};
const closeModal = (
ref: MutableRefObject<HTMLDialogElement | null>,
cleanUpFunc: () => void
) => {
ref.current?.setAttribute("closing", "");
afterAnimation(ref, () => {
ref.current?.removeAttribute("closing");
ref.current?.close();
});
cleanUpFunc();
};
const isPositiveInteger = (num: string) => {
return /^\d+$/.test(num);
};
const fetcher = (url: string, options?: RequestInit) =>
fetch(url, options).then((res) => res.json());
const _getKeyValue_ = (key: string) => (obj: Record<string, any>) => obj[key];
export {
afterAnimation,
closeModal,
isPositiveInteger,
fetcher,
_getKeyValue_
};