Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion public/locales/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -580,7 +580,7 @@
"buttons": {
"stop": "Stop"
},
"loading": "Loading data...",
"loading": "Extracting data...",
"empty_output": "No output data available",
"captured_data": {
"title": "Captured Data",
Expand Down
10 changes: 5 additions & 5 deletions src/components/api/ApiKey.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@ const Container = styled(Box)`
flex-direction: column;
align-items: center;
margin-top: 50px;
margin-left: 50px;
margin-left: 70px;
margin-right: 70px;
`;

const ApiKeyManager = () => {
Expand Down Expand Up @@ -108,7 +109,7 @@ const ApiKeyManager = () => {

return (
<Container sx={{ alignSelf: 'flex-start' }}>
<Typography variant="body1" sx={{ marginTop: '10px', marginBottom: '40px' }}>
<Typography variant="body1" sx={{ marginBottom: '40px' }}>
Start by creating an API key below. Then,
<a href={`${apiUrl}/api-docs/`} target="_blank" rel="noopener noreferrer" style={{ textDecoration: 'none', marginLeft: '5px', marginRight: '5px' }}>
test your API
Expand Down Expand Up @@ -139,7 +140,7 @@ const ApiKeyManager = () => {
<TableRow>
<TableCell>{apiKeyName}</TableCell>
<TableCell>
<Box sx={{ fontFamily: 'monospace', width: '10ch' }}>
<Box sx={{ fontFamily: 'monospace', width: '20ch' }}>
{showKey ? `${apiKey?.substring(0, 10)}...` : '**********'}
</Box>
</TableCell>
Expand Down Expand Up @@ -174,6 +175,5 @@ const ApiKeyManager = () => {
)}
</Container>
);
};

}
export default ApiKeyManager;
2 changes: 1 addition & 1 deletion src/components/dashboard/MainMenu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ export const MainMenu = ({ value = 'robots', handleChangeContent }: MainMenuProp
<Paper
sx={{
height: '100%',
width: '250px',
width: '230px',
backgroundColor: theme.palette.background.paper,
paddingTop: '0.5rem',
color: defaultcolor,
Expand Down
88 changes: 53 additions & 35 deletions src/components/proxy/ProxyForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -156,19 +156,30 @@ const ProxyForm: React.FC = () => {
}, []);

return (
<>
<FormContainer>
<Typography variant="h6" gutterBottom component="div" style={{ marginTop: '20px' }}>
<Box sx={{
display: 'flex',
gap: 4,
p: 5,
width: '100%',
maxWidth: '100%',
boxSizing: 'border-box'
}}>
<Box sx={{
flex: 1,
minWidth: 0,
maxWidth: 600
}}>
<Typography variant="h6" gutterBottom component="div">
{t('proxy.title')}
</Typography>
<Tabs value={tabIndex} onChange={handleTabChange} style={{ marginBottom: '10px' }}>
<Tabs value={tabIndex} onChange={handleTabChange} sx={{ mb: 2 }}>
<Tab label={t('proxy.tab_standard')} />
</Tabs>

{tabIndex === 0 && (
isProxyConfigured ? (
<Box sx={{ maxWidth: 600, width: '100%', marginTop: '5px' }}>
<TableContainer component={Paper} sx={{ marginBottom: '20px' }}>
<Box sx={{ width: '100%', mt: 1 }}>
<TableContainer component={Paper} sx={{ mb: 2 }}>
<Table>
<TableHead>
<TableRow>
Expand All @@ -187,13 +198,13 @@ const ProxyForm: React.FC = () => {
<Button variant="outlined" color="primary" onClick={testProxy}>
{t('proxy.test_proxy')}
</Button>
<Button variant="outlined" color="error" onClick={removeProxy} sx={{ marginLeft: '10px' }}>
<Button variant="outlined" color="error" onClick={removeProxy} sx={{ ml: 1 }}>
{t('proxy.remove_proxy')}
</Button>
</Box>
) : (
<Box component="form" onSubmit={handleSubmit} sx={{ maxWidth: 500, width: '100%' }}>
<FormControl>
<Box component="form" onSubmit={handleSubmit} sx={{ width: '100%' }}>
<Box sx={{ mb: 2 }}>
<TextField
label={t('proxy.server_url')}
name="server_url"
Expand All @@ -208,16 +219,16 @@ const ProxyForm: React.FC = () => {
</span>
}
/>
</FormControl>
<FormControl>
</Box>
<Box sx={{ mb: 2 }}>
<FormControlLabel
control={<Switch checked={requiresAuth} onChange={handleAuthToggle} />}
label={t('proxy.requires_auth')}
/>
</FormControl>
</Box>
{requiresAuth && (
<>
<FormControl>
<Box sx={{ mb: 2 }}>
<TextField
label={t('proxy.username')}
name="username"
Expand All @@ -228,8 +239,8 @@ const ProxyForm: React.FC = () => {
error={!!errors.username}
helperText={errors.username || ''}
/>
</FormControl>
<FormControl>
</Box>
<Box sx={{ mb: 2 }}>
<TextField
label={t('proxy.password')}
name="password"
Expand All @@ -241,7 +252,7 @@ const ProxyForm: React.FC = () => {
error={!!errors.password}
helperText={errors.password || ''}
/>
</FormControl>
</Box>
</>
)}
<Button
Expand All @@ -255,27 +266,34 @@ const ProxyForm: React.FC = () => {
</Button>
</Box>
))}
</FormContainer>
</Box>

<Alert severity="info" sx={{ marginTop: '80px', marginLeft: '50px', height: '250px', width: '600px' }}>
<AlertTitle>{t('proxy.alert.title')}</AlertTitle>
<br />
<b>{t('proxy.alert.right_way')}</b>
<br />
{t('proxy.alert.proxy_url')} http://proxy.com:1337
<br />
{t('proxy.alert.username')} myusername
<br />
{t('proxy.alert.password')} mypassword
<br />
<br />
<b>{t('proxy.alert.wrong_way')}</b>
<br />

{t('proxy.alert.proxy_url')} http://myusername:[email protected]:1337
</Alert>
</>
{/* Instructions Section */}
<Box sx={{
flex: 1,
minWidth: 0,
maxWidth: 600
}}>
<Alert severity="info" sx={{ height: 'auto', minHeight: 250 }}>
<AlertTitle>{t('proxy.alert.title')}</AlertTitle>
<br />
<b>{t('proxy.alert.right_way')}</b>
<br />
{t('proxy.alert.proxy_url')} http://proxy.com:1337
<br />
{t('proxy.alert.username')} myusername
<br />
{t('proxy.alert.password')} mypassword
<br />
<br />
<b>{t('proxy.alert.wrong_way')}</b>
<br />
{t('proxy.alert.proxy_url')} http://myusername:[email protected]:1337
</Alert>
</Box>
</Box>
);
};


export default ProxyForm;
23 changes: 8 additions & 15 deletions src/components/robot/pages/RobotConfigPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -64,11 +64,10 @@ export const RobotConfigPage: React.FC<RobotConfigPageProps> = ({
margin: '50px auto',
display: 'flex',
flexDirection: 'column',
width: '1000px',
height: '100%',
overflowY: 'auto', // Allow scrolling if content exceeds height
width: '100%',
height: 'auto',
boxSizing: 'border-box'
}}>
{/* Header Section - Fixed Position */}
<Box sx={{
display: 'flex',
alignItems: 'center',
Expand Down Expand Up @@ -117,32 +116,29 @@ export const RobotConfigPage: React.FC<RobotConfigPageProps> = ({
</Box>
<Divider sx={{ mb: 4, flexShrink: 0 }} />

{/* Content Section */}
<Box sx={{
flex: 1,
display: 'flex',
flexDirection: 'column',
minHeight: 0,
mt: 2,
mb: 3,
mt: 1.8,
mb: 5,
Comment on lines +124 to +125
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor

Consider using standard MUI spacing values.

The mt: 1.8 value is unusual and deviates from typical Material-UI spacing patterns (which use whole numbers or standard fractions like 0.5, 1.5, 2, etc.). Consider using mt: 2 or mt: 1.5 for consistency with MUI design tokens.

-        mt: 1.8,
+        mt: 2,
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
mt: 1.8,
mb: 5,
mt: 2,
mb: 5,
🤖 Prompt for AI Agents
In src/components/robot/pages/RobotConfigPage.tsx around lines 124 to 125, the
styling uses a nonstandard mt: 1.8 which deviates from Material-UI spacing
tokens; change it to a standard MUI spacing value (for example mt: 1.5 or mt: 2)
to align with design tokens and consistency across the app.

}}>
{children}
</Box>

{/* Action Buttons */}
{(showSaveButton || showCancelButton || onBackToSelection) && (
<Box
sx={{
display: 'flex',
justifyContent: onBackToSelection ? 'space-between' : 'flex-start',
gap: 2,
pt: 3, // Reduce padding top to minimize space above
pt: 3,
borderTop: `1px solid ${theme.palette.divider}`,
flexShrink: 0,
width: '100%',
}}
>
{/* Left side - Back to Selection button */}
{onBackToSelection && (
<Button
variant="outlined"
Expand All @@ -157,17 +153,14 @@ export const RobotConfigPage: React.FC<RobotConfigPageProps> = ({
</Button>
)}

{/* Right side - Save/Cancel buttons */}
<Box sx={{ display: 'flex', gap: 2 }}>
{showCancelButton && (
<Button
variant="outlined"
onClick={handleBack}
disabled={isLoading}
sx={{
color: '#ff00c3 !important',
borderColor: '#ff00c3 !important',
backgroundColor: 'white !important',
backgroundColor: 'inherit !important',
}} >
{cancelButtonText || t("buttons.cancel")}
</Button>
Expand Down Expand Up @@ -197,4 +190,4 @@ export const RobotConfigPage: React.FC<RobotConfigPageProps> = ({
)}
</Box>
);
};
}
27 changes: 13 additions & 14 deletions src/components/robot/pages/ScheduleSettingsPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ import {
Box,
Button,
} from "@mui/material";
import { Schedule } from "@mui/icons-material";
import { Dropdown } from "../../ui/DropdownMui";
import { validMomentTimezones } from "../../../constants/const";
import { useGlobalInfoStore } from "../../../context/globalInfo";
Expand Down Expand Up @@ -188,8 +187,8 @@ export const ScheduleSettingsPage = ({
display: "flex",
flexDirection: "column",
alignItems: "flex-start",
"& > *": { marginBottom: "20px" },
marginTop: "-20px",
gap: 3,
width: "100%",
}}
>
<>
Expand All @@ -215,7 +214,7 @@ export const ScheduleSettingsPage = ({
{t("schedule_settings.at_around")}: {schedule.atTimeStart},{" "}
{schedule.timezone} {t("schedule_settings.timezone")}
</Typography>
<Box mt={2} display="flex" justifyContent="space-between">
<Box sx={{ mt: 2, width: "100%" }}>
<Button
onClick={deleteRobotSchedule}
variant="outlined"
Expand All @@ -231,7 +230,7 @@ export const ScheduleSettingsPage = ({
) : (
<>
<Box sx={{ display: "flex", alignItems: "center", width: "100%" }}>
<Typography sx={{ marginRight: "10px" }}>
<Typography sx={{ width: "200px", flexShrink: 0 }}>
{t("schedule_settings.labels.run_once_every")}
</Typography>
<TextField
Expand Down Expand Up @@ -263,7 +262,7 @@ export const ScheduleSettingsPage = ({
</Box>

<Box sx={{ display: "flex", alignItems: "center", width: "100%" }}>
<Typography sx={{ marginBottom: "5px", marginRight: "25px" }}>
<Typography sx={{ width: "200px", flexShrink: 0 }}>
{["MONTHS", "WEEKS"].includes(settings.runEveryUnit)
? t("schedule_settings.labels.start_from_label")
: t("schedule_settings.labels.start_from_label")}
Expand All @@ -288,7 +287,7 @@ export const ScheduleSettingsPage = ({

{settings.runEveryUnit === "MONTHS" && (
<Box sx={{ display: "flex", alignItems: "center", width: "100%" }}>
<Typography sx={{ marginBottom: "5px", marginRight: "25px" }}>
<Typography sx={{ width: "200px", flexShrink: 0 }}>
{t("schedule_settings.labels.on_day_of_month")}
</Typography>
<TextField
Expand All @@ -305,10 +304,10 @@ export const ScheduleSettingsPage = ({

{["MINUTES", "HOURS"].includes(settings.runEveryUnit) ? (
<Box sx={{ display: "flex", alignItems: "center", width: "100%" }}>
<Box sx={{ marginRight: "20px" }}>
<Typography sx={{ marginBottom: "5px" }}>
{t("schedule_settings.labels.in_between")}
</Typography>
<Typography sx={{ width: "200px", flexShrink: 0 }}>
{t("schedule_settings.labels.in_between")}
</Typography>
<Box sx={{ display: "flex", gap: 1 }}>
<TextField
type="time"
value={settings.atTimeStart}
Expand All @@ -329,7 +328,7 @@ export const ScheduleSettingsPage = ({
</Box>
) : (
<Box sx={{ display: "flex", alignItems: "center", width: "100%" }}>
<Typography sx={{ marginBottom: "5px", marginRight: "10px" }}>
<Typography sx={{ width: "200px", flexShrink: 0 }}>
{t("schedule_settings.at_around")}
</Typography>
<TextField
Expand All @@ -344,7 +343,7 @@ export const ScheduleSettingsPage = ({
)}

<Box sx={{ display: "flex", alignItems: "center", width: "100%" }}>
<Typography sx={{ marginRight: "10px" }}>
<Typography sx={{ width: "200px", flexShrink: 0 }}>
{t("schedule_settings.timezone")}
</Typography>
<Dropdown
Expand All @@ -370,4 +369,4 @@ export const ScheduleSettingsPage = ({
</Box>
</RobotConfigPage>
);
};
}
Loading