37 lines
823 B
TypeScript
37 lines
823 B
TypeScript
import { Text, Spacer } from "@geist-ui/core"
|
|
import Cookies from "js-cookie"
|
|
import styles from "./admin.module.css"
|
|
import PostTable from "./post-table"
|
|
import ServerInfo from "./server-info"
|
|
import UserTable from "./user-table"
|
|
|
|
export const adminFetcher = async (
|
|
url: string,
|
|
options?: {
|
|
method?: string
|
|
body?: any
|
|
}
|
|
) =>
|
|
fetch("/server-api/admin" + url, {
|
|
method: options?.method || "GET",
|
|
headers: {
|
|
"Content-Type": "application/json",
|
|
Authorization: `Bearer ${Cookies.get("drift-token")}`
|
|
},
|
|
body: options?.body && JSON.stringify(options.body)
|
|
})
|
|
|
|
const Admin = () => {
|
|
return (
|
|
<div className={styles.adminWrapper}>
|
|
<Text h2>Administration</Text>
|
|
<ServerInfo />
|
|
<Spacer height={1} />
|
|
<UserTable />
|
|
<Spacer height={1} />
|
|
<PostTable />
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default Admin
|