Files
parcer/src/components/organisms/RightSidePanel.tsx

106 lines
3.2 KiB
TypeScript
Raw Normal View History

2024-06-24 22:42:22 +05:30
import React, { useEffect, useState } from 'react';
import { Button, MenuItem, Paper, Stack, Tabs, Tab } 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";
2024-07-24 20:25:22 +05:30
import { useActionContext } from '../../context/browserActions';
2024-06-24 22:42:22 +05:30
interface RightSidePanelProps {
pairForEdit: PairForEdit;
}
2024-07-24 21:25:13 +05:30
export const RightSidePanel = ({ pairForEdit }: RightSidePanelProps) => {
2024-06-24 22:42:22 +05:30
const [content, setContent] = useState<string>('action');
const [action, setAction] = React.useState<string>('');
const [isSettingsDisplayed, setIsSettingsDisplayed] = React.useState<boolean>(false);
const { lastAction } = useGlobalInfoStore();
const { handleGetText, handleGetScreenshot } = useActionContext();
2024-06-24 22:42:22 +05:30
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 (
<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' ? (
2024-07-24 21:25:13 +05:30
<React.Fragment>
<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>
2024-06-24 22:42:22 +05:30
2024-07-24 21:25:13 +05:30
{isSettingsDisplayed &&
<ActionSettings action={action} />
}
</React.Fragment>
)
2024-07-13 22:39:31 +05:30
: null
2024-06-24 22:42:22 +05:30
}
2024-07-24 20:25:22 +05:30
2024-07-24 21:25:13 +05:30
<Button variant="contained" onClick={handleGetText}>
Capture Text
</Button>
<Button variant="contained" onClick={handleGetScreenshot}>
Capture Screenshot
</Button>
2024-06-24 22:42:22 +05:30
</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;
`;