Open kgpoj opened 1 year ago
Implement the AGENT page of cruise platform, so that users can view agents' status and manage agents
AGENT
History
pros:
cons:
specific test strategies will be included in each card
agent
type ResourceName = 'Firefox' | 'Chrome' | 'Safari' | 'Ubuntu';
interface Resource { id: string; name: ResourceName; // name: string }
interface Agent { id: string; name: string; iconUrl: string; ipAddress: string; availability: 'building' | 'idle'; agentType: 'physical' | 'virtual'; resources: Resource[]; }
- What should sider looks like in mobile?
search: name,resources,ipAddress 模糊
Overview
Implement the
AGENT
page of cruise platform, so that users can view agents' status and manage agentsUI Design
Desktop
Tablet
Mobile
In Scope
Out of Scope
History
in siderTechnical Approach
Scaffold
Option 1: create-react-app
pros:
cons:
Option 2: Antd pro cli
pros:
cons:
Test Strategy
specific test strategies will be included in each card
Question
agent
, what is the data structure?interface Resource { id: string; name: ResourceName; // name: string }
interface Agent { id: string; name: string; iconUrl: string; ipAddress: string; availability: 'building' | 'idle'; agentType: 'physical' | 'virtual'; resources: Resource[]; }