WMS / src /client /models /device.ts
amir-salar's picture
Add static WMS demo for Hugging Face Spaces
86a4856
Raw
History Blame Contribute Delete
1.04 kB
export class DeviceType {
name: string;
description: string;
icon_svg: string;
constructor(name: string, description: string, icon_svg: string) {
this.name = name;
this.description = description;
this.icon_svg = icon_svg;
}
}
export const Robot = new DeviceType(
'Robot',
'A robot that can move around',
'/src/client/assets/logo.svg'
);
export class Capability {
id: string;
displayName: string;
route: string | null;
icon: React.ComponentType | null;
props?: Record<string, any>; // Props to be passed to TransitiveCapability
};
export class Device {
id: string;
name: string;
os: string;
type: DeviceType;
heartbeat: Date;
capabilities: Capability[];
constructor(id: string, name: string, os: string, heartbeat: Date,
capabilities: Capability[] = [], type: DeviceType) {
this.id = id;
this.name = name;
this.os = os;
this.heartbeat = heartbeat;
this.capabilities = capabilities;
this.type = type;
}
}
export default {
DeviceType,
Robot,
Device
}