import React, { useEffect, useState } from 'react'; import { Button, MenuItem, Paper, Stack, Tabs, Tab, Box } 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'; interface RightSidePanelProps { pairForEdit: PairForEdit; } export const RightSidePanel = ({ pairForEdit }: RightSidePanelProps) => { const [content, setContent] = useState('action'); const [action, setAction] = React.useState(''); const [isSettingsDisplayed, setIsSettingsDisplayed] = React.useState(false); const { lastAction } = useGlobalInfoStore(); const { getText, getScreenshot, startGetText, stopGetText, startGetScreenshot, stopGetScreenshot } = useActionContext(); const handleChange = (event: React.SyntheticEvent, newValue: string) => { setContent(newValue); }; const handleActionSelect = (event: SelectChangeEvent) => { const { value } = event.target; setAction(value); setIsSettingsDisplayed(true); }; useEffect(() => { if (content !== 'detail' && pairForEdit.pair !== null) { setContent('detail'); } }, [pairForEdit]) return ( Last action: {` ${lastAction}`} {content === 'action' ? ( Type of action: click on coordinates enqueueLinks scrape scrapeSchema screenshot script scroll {isSettingsDisplayed && } ) : null } {!getText && !getScreenshot && ( )} {getText && ( )} {!getText && !getScreenshot && ( )} {getScreenshot && ( )} ); }; 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; `;