168 lines
6.5 KiB
TypeScript
168 lines
6.5 KiB
TypeScript
import React, { useState, useEffect, useCallback } from 'react';
|
|
import { Button, MenuItem, Paper, Box, TextField } from "@mui/material";
|
|
import { Dropdown as MuiDropdown } from '../atoms/DropdownMui';
|
|
import styled from "styled-components";
|
|
import { ActionSettings } from "../molecules/ActionSettings";
|
|
import { SelectChangeEvent } from "@mui/material/Select/Select";
|
|
import { SimpleBox } from "../atoms/Box";
|
|
import Typography from "@mui/material/Typography";
|
|
import { useGlobalInfoStore } from "../../context/globalInfo";
|
|
import { PairForEdit } from "../../pages/RecordingPage";
|
|
import { useActionContext } from '../../context/browserActions';
|
|
import { useBrowserSteps } from '../../context/browserSteps';
|
|
import { useSocketStore } from '../../context/socket';
|
|
|
|
interface RightSidePanelProps {
|
|
pairForEdit: PairForEdit;
|
|
}
|
|
|
|
export const RightSidePanel = ({ pairForEdit }: RightSidePanelProps) => {
|
|
const [content, setContent] = useState<string>('action');
|
|
const [action, setAction] = useState<string>('');
|
|
const [isSettingsDisplayed, setIsSettingsDisplayed] = useState<boolean>(false);
|
|
const [labels, setLabels] = useState<{ [id: number]: string }>({});
|
|
const [errors, setErrors] = useState<{ [id: number]: string }>({});
|
|
const [confirmedSteps, setConfirmedSteps] = useState<{ [id: number]: boolean }>({});
|
|
|
|
const { lastAction } = useGlobalInfoStore();
|
|
const { getText, getScreenshot, startGetText, stopGetText, startGetScreenshot, stopGetScreenshot } = useActionContext();
|
|
const { browserSteps, updateBrowserStepLabel, deleteBrowserStep } = useBrowserSteps();
|
|
const { socket } = useSocketStore();
|
|
|
|
const handleChange = (event: React.SyntheticEvent, newValue: string) => {
|
|
setContent(newValue);
|
|
};
|
|
|
|
const handleActionSelect = (event: SelectChangeEvent) => {
|
|
const { value } = event.target;
|
|
setAction(value);
|
|
setIsSettingsDisplayed(true);
|
|
};
|
|
|
|
const handleLabelChange = (id: number, label: string) => {
|
|
setLabels(prevLabels => ({ ...prevLabels, [id]: label }));
|
|
if (!label.trim()) {
|
|
setErrors(prevErrors => ({ ...prevErrors, [id]: 'Label cannot be empty' }));
|
|
} else {
|
|
setErrors(prevErrors => ({ ...prevErrors, [id]: '' }));
|
|
}
|
|
};
|
|
|
|
const handleConfirm = (id: number) => {
|
|
const label = labels[id]?.trim();
|
|
if (label) {
|
|
updateBrowserStepLabel(id, label);
|
|
setConfirmedSteps(prev => ({ ...prev, [id]: true }));
|
|
} else {
|
|
setErrors(prevErrors => ({ ...prevErrors, [id]: 'Label cannot be empty' }));
|
|
}
|
|
};
|
|
|
|
const handleDiscard = (id: number) => {
|
|
deleteBrowserStep(id);
|
|
setLabels(prevLabels => {
|
|
const { [id]: _, ...rest } = prevLabels;
|
|
return rest;
|
|
});
|
|
setErrors(prevErrors => {
|
|
const { [id]: _, ...rest } = prevErrors;
|
|
return rest;
|
|
});
|
|
};
|
|
|
|
// Create settings object when stopping text capture
|
|
const createSettingsObject = useCallback(() => {
|
|
const settings: Record<string, string> = {};
|
|
browserSteps.forEach(step => {
|
|
if (step.label && step.value) {
|
|
settings[step.label] = step.value;
|
|
}
|
|
});
|
|
console.log(`settings from getText:`, settings);
|
|
return settings;
|
|
}, [browserSteps]);
|
|
|
|
// Stop text capture and emit settings object
|
|
const stopCaptureAndEmitSettings = useCallback(() => {
|
|
stopGetText();
|
|
const settings = createSettingsObject();
|
|
socket?.emit('action', { action: 'settings', settings });
|
|
}, [stopGetText, createSettingsObject, socket]);
|
|
|
|
return (
|
|
<Paper variant="outlined" sx={{ height: '100%', width: '100%', backgroundColor: 'white', alignItems: "center" }}>
|
|
<SimpleBox height={60} width='100%' background='lightGray' radius='0%'>
|
|
<Typography sx={{ padding: '10px' }}>Last action: {` ${lastAction}`}</Typography>
|
|
</SimpleBox>
|
|
|
|
{content === 'action' && (
|
|
<>
|
|
<ActionDescription>Type of action:</ActionDescription>
|
|
<ActionTypeWrapper>
|
|
<MuiDropdown id="action" label="Action" value={action} handleSelect={handleActionSelect}>
|
|
<MenuItem value="mouse.click">click on coordinates</MenuItem>
|
|
<MenuItem value="enqueueLinks">enqueueLinks</MenuItem>
|
|
<MenuItem value="scrape">scrape</MenuItem>
|
|
<MenuItem value="scrapeSchema">scrapeSchema</MenuItem>
|
|
<MenuItem value="screenshot">screenshot</MenuItem>
|
|
<MenuItem value="script">script</MenuItem>
|
|
<MenuItem value="scroll">scroll</MenuItem>
|
|
</MuiDropdown>
|
|
</ActionTypeWrapper>
|
|
|
|
{isSettingsDisplayed && <ActionSettings action={action} />}
|
|
</>
|
|
)}
|
|
|
|
<Box display="flex" flexDirection="column" gap={2} style={{ margin: '15px' }}>
|
|
{!getText && !getScreenshot && <Button variant="contained" onClick={startGetText}>Capture Text</Button>}
|
|
{getText && <Button variant="contained" onClick={stopCaptureAndEmitSettings}>Stop Capture Text</Button>}
|
|
{!getText && !getScreenshot && <Button variant="contained" onClick={startGetScreenshot}>Capture Screenshot</Button>}
|
|
{getScreenshot && <Button variant="contained" onClick={stopGetScreenshot}>Stop Capture Screenshot</Button>}
|
|
</Box>
|
|
|
|
<Box>
|
|
{browserSteps.map(step => (
|
|
<Box key={step.id} sx={{ boxShadow: 5, padding: '10px', margin: '10px', borderRadius: '4px' }}>
|
|
<TextField
|
|
label="Label"
|
|
value={labels[step.id] || step.label || ''}
|
|
onChange={(e) => handleLabelChange(step.id, e.target.value)}
|
|
fullWidth
|
|
margin="normal"
|
|
error={!!errors[step.id]}
|
|
helperText={errors[step.id]}
|
|
InputProps={{ readOnly: confirmedSteps[step.id] }}
|
|
/>
|
|
<TextField
|
|
label="Data"
|
|
value={step.value}
|
|
fullWidth
|
|
margin="normal"
|
|
InputProps={{ readOnly: confirmedSteps[step.id] }}
|
|
/>
|
|
{!confirmedSteps[step.id] && (
|
|
<Box display="flex" justifyContent="space-between" gap={2}>
|
|
<Button variant="contained" onClick={() => handleConfirm(step.id)} disabled={!labels[step.id]?.trim()}>Confirm</Button>
|
|
<Button variant="contained" onClick={() => handleDiscard(step.id)}>Discard</Button>
|
|
</Box>
|
|
)}
|
|
</Box>
|
|
))}
|
|
</Box>
|
|
</Paper>
|
|
);
|
|
};
|
|
|
|
const ActionTypeWrapper = styled.div`
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
margin-top: 20px;
|
|
`;
|
|
|
|
export const ActionDescription = styled.p`
|
|
margin-left: 15px;
|
|
`;
|