Spaces:
Running
Running
File size: 8,618 Bytes
3a909c0 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 |
import React from 'react';
import { Button } from "@/components/ui/button";
import { Input } from "@/components/ui/input";
import { Label } from "@/components/ui/label";
import {
Select,
SelectContent,
SelectItem,
SelectTrigger,
SelectValue,
} from "@/components/ui/select";
import {
Dialog,
DialogContent,
DialogHeader,
DialogTitle,
DialogDescription,
} from "@/components/ui/dialog";
interface RecordingModalProps {
open: boolean;
onOpenChange: (open: boolean) => void;
leaderPort: string;
setLeaderPort: (value: string) => void;
followerPort: string;
setFollowerPort: (value: string) => void;
leaderConfig: string;
setLeaderConfig: (value: string) => void;
followerConfig: string;
setFollowerConfig: (value: string) => void;
leaderConfigs: string[];
followerConfigs: string[];
datasetRepoId: string;
setDatasetRepoId: (value: string) => void;
singleTask: string;
setSingleTask: (value: string) => void;
numEpisodes: number;
setNumEpisodes: (value: number) => void;
isLoadingConfigs: boolean;
onStart: () => void;
}
const RecordingModal: React.FC<RecordingModalProps> = ({
open,
onOpenChange,
leaderPort,
setLeaderPort,
followerPort,
setFollowerPort,
leaderConfig,
setLeaderConfig,
followerConfig,
setFollowerConfig,
leaderConfigs,
followerConfigs,
datasetRepoId,
setDatasetRepoId,
singleTask,
setSingleTask,
numEpisodes,
setNumEpisodes,
isLoadingConfigs,
onStart,
}) => {
return (
<Dialog open={open} onOpenChange={onOpenChange}>
<DialogContent className="bg-gray-900 border-gray-800 text-white sm:max-w-[600px] p-8 max-h-[90vh] overflow-y-auto">
<DialogHeader>
<div className="flex justify-center items-center gap-4 mb-4">
<div className="w-8 h-8 bg-red-500 rounded-full flex items-center justify-center">
<span className="text-white font-bold text-sm">REC</span>
</div>
</div>
<DialogTitle className="text-white text-center text-2xl font-bold">
Configure Recording
</DialogTitle>
</DialogHeader>
<div className="space-y-6 py-4">
<DialogDescription className="text-gray-400 text-base leading-relaxed text-center">
Configure the robot arm settings and dataset parameters for
recording.
</DialogDescription>
<div className="grid grid-cols-1 gap-6">
<div className="space-y-4">
<h3 className="text-lg font-semibold text-white border-b border-gray-700 pb-2">
Robot Configuration
</h3>
<div className="grid grid-cols-1 sm:grid-cols-2 gap-4">
<div className="space-y-2">
<Label htmlFor="recordLeaderPort" className="text-sm font-medium text-gray-300">
Leader Port
</Label>
<Input
id="recordLeaderPort"
value={leaderPort}
onChange={(e) => setLeaderPort(e.target.value)}
placeholder="/dev/tty.usbmodem5A460816421"
className="bg-gray-800 border-gray-700 text-white"
/>
</div>
<div className="space-y-2">
<Label htmlFor="recordLeaderConfig" className="text-sm font-medium text-gray-300">
Leader Calibration Config
</Label>
<Select value={leaderConfig} onValueChange={setLeaderConfig}>
<SelectTrigger className="bg-gray-800 border-gray-700 text-white">
<SelectValue placeholder={isLoadingConfigs ? "Loading configs..." : "Select leader config"} />
</SelectTrigger>
<SelectContent className="bg-gray-800 border-gray-700">
{leaderConfigs.map((config) => (
<SelectItem key={config} value={config} className="text-white hover:bg-gray-700">
{config}
</SelectItem>
))}
</SelectContent>
</Select>
</div>
<div className="space-y-2">
<Label htmlFor="recordFollowerPort" className="text-sm font-medium text-gray-300">
Follower Port
</Label>
<Input
id="recordFollowerPort"
value={followerPort}
onChange={(e) => setFollowerPort(e.target.value)}
placeholder="/dev/tty.usbmodem5A460816621"
className="bg-gray-800 border-gray-700 text-white"
/>
</div>
<div className="space-y-2">
<Label htmlFor="recordFollowerConfig" className="text-sm font-medium text-gray-300">
Follower Calibration Config
</Label>
<Select value={followerConfig} onValueChange={setFollowerConfig}>
<SelectTrigger className="bg-gray-800 border-gray-700 text-white">
<SelectValue placeholder={isLoadingConfigs ? "Loading configs..." : "Select follower config"} />
</SelectTrigger>
<SelectContent className="bg-gray-800 border-gray-700">
{followerConfigs.map((config) => (
<SelectItem key={config} value={config} className="text-white hover:bg-gray-700">
{config}
</SelectItem>
))}
</SelectContent>
</Select>
</div>
</div>
</div>
<div className="space-y-4">
<h3 className="text-lg font-semibold text-white border-b border-gray-700 pb-2">
Dataset Configuration
</h3>
<div className="grid grid-cols-1 gap-4">
<div className="space-y-2">
<Label htmlFor="datasetRepoId" className="text-sm font-medium text-gray-300">
Dataset Repository ID *
</Label>
<Input
id="datasetRepoId"
value={datasetRepoId}
onChange={(e) => setDatasetRepoId(e.target.value)}
placeholder="username/dataset_name"
className="bg-gray-800 border-gray-700 text-white"
/>
</div>
<div className="space-y-2">
<Label htmlFor="singleTask" className="text-sm font-medium text-gray-300">
Task Name *
</Label>
<Input
id="singleTask"
value={singleTask}
onChange={(e) => setSingleTask(e.target.value)}
placeholder="e.g., pick_and_place"
className="bg-gray-800 border-gray-700 text-white"
/>
</div>
<div className="space-y-2">
<Label htmlFor="numEpisodes" className="text-sm font-medium text-gray-300">
Number of Episodes
</Label>
<Input
id="numEpisodes"
type="number"
min="1"
max="100"
value={numEpisodes}
onChange={(e) => setNumEpisodes(parseInt(e.target.value))}
className="bg-gray-800 border-gray-700 text-white"
/>
</div>
</div>
</div>
</div>
<div className="flex flex-col sm:flex-row gap-4 justify-center pt-4">
<Button
onClick={onStart}
className="w-full sm:w-auto bg-red-500 hover:bg-red-600 text-white px-10 py-6 text-lg transition-all shadow-md shadow-red-500/30 hover:shadow-lg hover:shadow-red-500/40"
disabled={isLoadingConfigs}
>
Start Recording
</Button>
<Button
onClick={() => onOpenChange(false)}
variant="outline"
className="w-full sm:w-auto border-gray-500 hover:border-gray-200 px-10 py-6 text-lg text-zinc-500 bg-zinc-900 hover:bg-zinc-800"
>
Cancel
</Button>
</div>
</div>
</DialogContent>
</Dialog>
);
};
export default RecordingModal;
|