2023-08-15 11:38:13 -04:00
|
|
|
import { useEffect, useState } from "react"
|
2023-08-15 08:24:32 -07:00
|
|
|
|
|
|
|
export type NodeData = {
|
|
|
|
Profile: UserProfile
|
|
|
|
Status: string
|
|
|
|
DeviceName: string
|
|
|
|
IP: string
|
|
|
|
AdvertiseExitNode: boolean
|
|
|
|
AdvertiseRoutes: string
|
|
|
|
LicensesURL: string
|
|
|
|
TUNMode: boolean
|
|
|
|
IsSynology: boolean
|
|
|
|
DSMVersion: number
|
|
|
|
IsUnraid: boolean
|
|
|
|
UnraidToken: string
|
|
|
|
IPNVersion: string
|
|
|
|
}
|
|
|
|
|
2023-08-15 11:38:13 -04:00
|
|
|
export type UserProfile = {
|
|
|
|
LoginName: string
|
|
|
|
DisplayName: string
|
|
|
|
ProfilePicURL: string
|
2023-08-15 08:24:32 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// useNodeData returns basic data about the current node.
|
|
|
|
export default function useNodeData() {
|
2023-08-15 11:38:13 -04:00
|
|
|
const [data, setData] = useState<NodeData>()
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
fetch("/api/data")
|
|
|
|
.then((response) => response.json())
|
|
|
|
.then((json) => setData(json))
|
|
|
|
.catch((error) => console.error(error))
|
|
|
|
}, [])
|
|
|
|
|
|
|
|
return data
|
2023-08-15 08:24:32 -07:00
|
|
|
}
|