mirror of
https://github.com/tailscale/tailscale.git
synced 2025-04-04 23:35:50 +00:00
49 lines
1.1 KiB
TypeScript
49 lines
1.1 KiB
TypeScript
![]() |
export type UserProfile = {
|
||
|
LoginName: string
|
||
|
DisplayName: string
|
||
|
ProfilePicURL: string
|
||
|
}
|
||
|
|
||
|
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
|
||
|
}
|
||
|
|
||
|
// testData is static set of nodedata used during development.
|
||
|
// This can be removed once we have a real node data API.
|
||
|
const testData: NodeData = {
|
||
|
Profile: {
|
||
|
LoginName: "amelie",
|
||
|
DisplayName: "Amelie Pangolin",
|
||
|
ProfilePicURL: "https://login.tailscale.com/logo192.png",
|
||
|
},
|
||
|
Status: "Running",
|
||
|
DeviceName: "amelies-laptop",
|
||
|
IP: "100.1.2.3",
|
||
|
AdvertiseExitNode: false,
|
||
|
AdvertiseRoutes: "",
|
||
|
LicensesURL: "https://tailscale.com/licenses/tailscale",
|
||
|
TUNMode: false,
|
||
|
IsSynology: true,
|
||
|
DSMVersion: 7,
|
||
|
IsUnraid: false,
|
||
|
UnraidToken: "",
|
||
|
IPNVersion: "0.1.0",
|
||
|
}
|
||
|
|
||
|
// useNodeData returns basic data about the current node.
|
||
|
export default function useNodeData() {
|
||
|
return testData
|
||
|
}
|