import React, { useState, useEffect } from 'react'; import { useTranslation } from 'react-i18next'; import { GenericModal } from "../ui/GenericModal"; import { TextField, Typography, Box, Button, IconButton, InputAdornment } from "@mui/material"; import { Visibility, VisibilityOff } from '@mui/icons-material'; import { modalStyle } from "../recorder/AddWhereCondModal"; import { useGlobalInfoStore } from '../../context/globalInfo'; import { getStoredRecording, updateRecording } from '../../api/storage'; import { WhereWhatPair } from 'maxun-core'; interface RobotMeta { name: string; id: string; createdAt: string; pairs: number; updatedAt: string; params: any[]; } interface RobotWorkflow { workflow: WhereWhatPair[]; } interface RobotEditOptions { name: string; limit?: number; } interface Credentials { [key: string]: string; } interface CredentialVisibility { [key: string]: boolean; } interface ScheduleConfig { runEvery: number; runEveryUnit: 'MINUTES' | 'HOURS' | 'DAYS' | 'WEEKS' | 'MONTHS'; startFrom: 'SUNDAY' | 'MONDAY' | 'TUESDAY' | 'WEDNESDAY' | 'THURSDAY' | 'FRIDAY' | 'SATURDAY'; atTimeStart?: string; atTimeEnd?: string; timezone: string; lastRunAt?: Date; nextRunAt?: Date; cronExpression?: string; } export interface RobotSettings { id: string; userId?: number; recording_meta: RobotMeta; recording: RobotWorkflow; google_sheet_email?: string | null; google_sheet_name?: string | null; google_sheet_id?: string | null; google_access_token?: string | null; google_refresh_token?: string | null; schedule?: ScheduleConfig | null; isLogin?: boolean; } interface RobotSettingsProps { isOpen: boolean; handleStart: (settings: RobotSettings) => void; handleClose: () => void; initialSettings?: RobotSettings | null; } export const RobotEditModal = ({ isOpen, handleStart, handleClose, initialSettings }: RobotSettingsProps) => { const { t } = useTranslation(); const [robot, setRobot] = useState(null); const [credentials, setCredentials] = useState({}); const { recordingId, notify } = useGlobalInfoStore(); const [credentialSelectors, setCredentialSelectors] = useState([]); const [showPasswords, setShowPasswords] = useState({}); const handleClickShowPassword = (selector: string) => { setShowPasswords(prev => ({ ...prev, [selector]: !prev[selector] })); }; useEffect(() => { if (isOpen) { getRobot(); } }, [isOpen]); useEffect(() => { if (robot?.recording?.workflow) { const selectors = findCredentialSelectors(robot.recording.workflow); setCredentialSelectors(selectors); // Initialize credentials state const initialCredentials: Record = {}; selectors.forEach(selector => { initialCredentials[selector] = ''; }); setCredentials(initialCredentials); } }, [robot]); const findCredentialSelectors = (workflow: WhereWhatPair[]): string[] => { const selectors = new Set(); workflow?.forEach(step => { step.what?.forEach(action => { if ( (action.action === 'type' || action.action === 'press') && action.args && action.args[0] && typeof action.args[0] === 'string' ) { selectors.add(action.args[0]); } }); }); return Array.from(selectors); }; const getRobot = async () => { if (recordingId) { const robot = await getStoredRecording(recordingId); setRobot(robot); } else { notify('error', t('robot_edit.notifications.update_failed')); } } const handleRobotNameChange = (newName: string) => { setRobot((prev) => prev ? { ...prev, recording_meta: { ...prev.recording_meta, name: newName } } : prev ); }; const handleCredentialChange = (selector: string, value: string) => { setCredentials(prev => ({ ...prev, [selector]: value })); }; const handleLimitChange = (newLimit: number) => { setRobot((prev) => { if (!prev) return prev; const updatedWorkflow = [...prev.recording.workflow]; if ( updatedWorkflow.length > 0 && updatedWorkflow[0]?.what && updatedWorkflow[0].what.length > 0 && updatedWorkflow[0].what[0].args && updatedWorkflow[0].what[0].args.length > 0 && updatedWorkflow[0].what[0].args[0] ) { updatedWorkflow[0].what[0].args[0].limit = newLimit; } return { ...prev, recording: { ...prev.recording, workflow: updatedWorkflow } }; }); }; const handleSave = async () => { if (!robot) return; try { const payload = { name: robot.recording_meta.name, limit: robot.recording.workflow[0]?.what[0]?.args?.[0]?.limit, credentials: credentials, }; const success = await updateRecording(robot.recording_meta.id, payload); if (success) { notify('success', t('robot_edit.notifications.update_success')); handleStart(robot); // Inform parent about the updated robot handleClose(); setTimeout(() => { window.location.reload(); }, 1000); } else { notify('error', t('robot_edit.notifications.update_failed')); } } catch (error) { notify('error', t('robot_edit.notifications.update_error')); console.error('Error updating robot:', error); } }; return ( <> {t('robot_edit.title')} { robot && ( <> handleRobotNameChange(e.target.value)} style={{ marginBottom: '20px' }} /> {robot.recording.workflow?.[0]?.what?.[0]?.args?.[0]?.limit !== undefined && ( { const value = parseInt(e.target.value, 10); if (value >= 1) { handleLimitChange(value); } }} inputProps={{ min: 1 }} style={{ marginBottom: '20px' }} /> )} {(robot.isLogin || credentialSelectors.length > 0) && ( <> {t('Login Credentials')} {credentialSelectors.map((selector) => ( handleCredentialChange(selector, e.target.value)} style={{ marginBottom: '20px' }} InputProps={{ endAdornment: ( handleClickShowPassword(selector)} edge="end" > {showPasswords[selector] ? : } ), }} /> ))} )} ) } ); };