Files
parcer/src/components/molecules/IntegrationSettings.tsx

327 lines
10 KiB
TypeScript
Raw Normal View History

2024-11-13 00:06:32 +05:30
import React, { useState, useEffect } from "react";
2024-09-17 17:28:43 +05:30
import { GenericModal } from "../atoms/GenericModal";
2024-11-13 00:06:32 +05:30
import {
MenuItem,
Typography,
CircularProgress,
Alert,
AlertTitle,
Chip,
} from "@mui/material";
2024-09-17 17:28:43 +05:30
import Button from "@mui/material/Button";
2024-10-16 22:37:53 +05:30
import TextField from "@mui/material/TextField";
2024-11-13 00:06:32 +05:30
import axios from "axios";
import { useGlobalInfoStore } from "../../context/globalInfo";
import { getStoredRecording } from "../../api/storage";
import { apiUrl } from "../../apiConfig.js";
import Cookies from 'js-cookie';
import { useTranslation } from "react-i18next";
2024-12-06 04:29:40 +05:30
2024-12-08 04:49:29 +05:30
2024-09-17 20:16:50 +05:30
interface IntegrationProps {
2024-11-13 00:06:32 +05:30
isOpen: boolean;
handleStart: (data: IntegrationSettings) => void;
handleClose: () => void;
2024-09-17 17:28:43 +05:30
}
2024-12-08 04:49:29 +05:30
2024-09-17 20:16:50 +05:30
export interface IntegrationSettings {
2024-11-13 00:06:32 +05:30
spreadsheetId: string;
spreadsheetName: string;
data: string;
2024-09-17 17:28:43 +05:30
}
2024-12-08 04:49:29 +05:30
// Helper functions to replace js-cookie functionality
const getCookie = (name: string): string | null => {
const value = `; ${document.cookie}`;
const parts = value.split(`; ${name}=`);
if (parts.length === 2) {
return parts.pop()?.split(';').shift() || null;
}
return null;
};
const removeCookie = (name: string): void => {
document.cookie = `${name}=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/`;
};
2024-11-13 00:06:32 +05:30
export const IntegrationSettingsModal = ({
isOpen,
handleStart,
handleClose,
}: IntegrationProps) => {
const { t } = useTranslation();
2024-11-13 00:06:32 +05:30
const [settings, setSettings] = useState<IntegrationSettings>({
spreadsheetId: "",
spreadsheetName: "",
data: "",
});
2024-10-16 22:37:53 +05:30
2024-11-13 00:06:32 +05:30
const [spreadsheets, setSpreadsheets] = useState<
{ id: string; name: string }[]
>([]);
const [loading, setLoading] = useState(false);
const [error, setError] = useState<string | null>(null);
2024-10-16 20:47:14 +05:30
2024-11-13 00:06:32 +05:30
const { recordingId, notify } = useGlobalInfoStore();
const [recording, setRecording] = useState<any>(null);
2024-10-17 14:21:22 +05:30
2024-11-13 00:06:32 +05:30
const authenticateWithGoogle = () => {
window.location.href = `${apiUrl}/auth/google?robotId=${recordingId}`;
};
2024-09-17 17:28:43 +05:30
2024-11-13 00:06:32 +05:30
const handleOAuthCallback = async () => {
try {
const response = await axios.get(`${apiUrl}/auth/google/callback`);
const { google_sheet_email, files } = response.data;
} catch (error) {
setError("Error authenticating with Google");
}
};
2024-09-17 20:10:51 +05:30
2024-11-13 00:06:32 +05:30
const fetchSpreadsheetFiles = async () => {
try {
const response = await axios.get(
`${apiUrl}/auth/gsheets/files?robotId=${recordingId}`,
{
withCredentials: true,
2024-10-17 16:14:20 +05:30
}
2024-11-13 00:06:32 +05:30
);
setSpreadsheets(response.data);
} catch (error: any) {
console.error(
"Error fetching spreadsheet files:",
error.response?.data?.message || error.message
);
notify(
"error",
t('integration_settings.errors.fetch_error', {
message: error.response?.data?.message || error.message
})
2024-11-13 00:06:32 +05:30
);
}
};
2024-11-13 00:06:32 +05:30
const handleSpreadsheetSelect = (e: React.ChangeEvent<HTMLInputElement>) => {
const selectedSheet = spreadsheets.find(
(sheet) => sheet.id === e.target.value
);
if (selectedSheet) {
setSettings({
...settings,
spreadsheetId: selectedSheet.id,
spreadsheetName: selectedSheet.name,
});
}
};
2024-10-16 20:47:14 +05:30
2024-11-13 00:06:32 +05:30
const updateGoogleSheetId = async () => {
try {
const response = await axios.post(
`${apiUrl}/auth/gsheets/update`,
{
spreadsheetId: settings.spreadsheetId,
spreadsheetName: settings.spreadsheetName,
robotId: recordingId,
},
{ withCredentials: true }
);
notify(`success`, t('integration_settings.notifications.sheet_selected'));
2024-11-13 00:06:32 +05:30
console.log("Google Sheet ID updated:", response.data);
} catch (error: any) {
console.error(
"Error updating Google Sheet ID:",
error.response?.data?.message || error.message
);
}
};
2024-10-17 19:57:09 +05:30
2024-11-13 00:06:32 +05:30
const removeIntegration = async () => {
try {
await axios.post(
`${apiUrl}/auth/gsheets/remove`,
{ robotId: recordingId },
{ withCredentials: true }
);
setRecording(null);
setSpreadsheets([]);
setSettings({ spreadsheetId: "", spreadsheetName: "", data: "" });
} catch (error: any) {
console.error(
"Error removing Google Sheets integration:",
error.response?.data?.message || error.message
);
}
};
useEffect(() => {
// Check if there is a success message in cookies
2024-12-08 04:49:29 +05:30
const status = getCookie("robot_auth_status");
const message = getCookie("robot_auth_message");
2024-11-13 00:06:32 +05:30
if (status === "success" && message) {
notify("success", message);
// Clear the cookies after reading
2024-12-08 04:49:29 +05:30
removeCookie("robot_auth_status");
removeCookie("robot_auth_message");
2024-11-13 00:06:32 +05:30
}
// Check if we're on the callback URL
const urlParams = new URLSearchParams(window.location.search);
const code = urlParams.get("code");
if (code) {
handleOAuthCallback();
}
const fetchRecordingInfo = async () => {
if (!recordingId) return;
const recording = await getStoredRecording(recordingId);
if (recording) {
setRecording(recording);
}
2024-10-21 02:27:45 +05:30
};
2024-11-13 00:06:32 +05:30
fetchRecordingInfo();
}, [recordingId]);
return (
<GenericModal isOpen={isOpen} onClose={handleClose} modalStyle={modalStyle}>
<div style={{
2024-11-13 00:06:32 +05:30
display: "flex",
flexDirection: "column",
alignItems: "flex-start",
marginLeft: "65px",
}}>
2024-11-13 00:06:32 +05:30
<Typography variant="h6">
{t('integration_settings.title')}
2024-11-13 00:06:32 +05:30
</Typography>
2024-10-17 15:28:22 +05:30
2024-11-13 00:06:32 +05:30
{recording && recording.google_sheet_id ? (
<>
2024-11-22 21:47:36 +05:30
<Alert severity="info" sx={{ marginTop: '10px', border: '1px solid #ff00c3' }}>
<AlertTitle>{t('integration_settings.alerts.success.title')}</AlertTitle>
{t('integration_settings.alerts.success.content', { sheetName: recording.google_sheet_name })}
<a href={`https://docs.google.com/spreadsheets/d/${recording.google_sheet_id}`}
2024-11-13 00:06:32 +05:30
target="_blank"
rel="noreferrer">
{t('integration_settings.alerts.success.here')}
</a>.
2024-11-13 00:06:32 +05:30
<br />
<strong>{t('integration_settings.alerts.success.note')}</strong> {t('integration_settings.alerts.success.sync_limitation')}
2024-11-13 00:06:32 +05:30
</Alert>
<Button
variant="outlined"
color="error"
onClick={removeIntegration}
style={{ marginTop: "15px" }}
>
{t('integration_settings.buttons.remove_integration')}
2024-11-13 00:06:32 +05:30
</Button>
</>
) : (
<>
{!recording?.google_sheet_email ? (
<>
<p>{t('integration_settings.descriptions.sync_info')}</p>
2024-11-13 00:06:32 +05:30
<Button
variant="contained"
color="primary"
onClick={authenticateWithGoogle}
>
{t('integration_settings.buttons.authenticate')}
2024-11-13 00:06:32 +05:30
</Button>
</>
) : (
<>
{recording.google_sheet_email && (
<Typography sx={{ margin: "20px 0px 30px 0px" }}>
{t('integration_settings.descriptions.authenticated_as', {
email: recording.google_sheet_email
})}
2024-11-13 00:06:32 +05:30
</Typography>
)}
{loading ? (
<CircularProgress sx={{ marginBottom: "15px" }} />
) : error ? (
<Typography color="error">{error}</Typography>
) : spreadsheets.length === 0 ? (
<>
<div style={{ display: "flex", gap: "10px" }}>
<Button
variant="outlined"
color="primary"
onClick={fetchSpreadsheetFiles}
>
{t('integration_settings.buttons.fetch_sheets')}
2024-11-13 00:06:32 +05:30
</Button>
<Button
variant="outlined"
color="error"
onClick={removeIntegration}
>
{t('integration_settings.buttons.remove_integration')}
2024-11-13 00:06:32 +05:30
</Button>
</div>
</>
2024-10-16 22:37:53 +05:30
) : (
2024-11-13 00:06:32 +05:30
<>
<TextField
sx={{ marginBottom: "15px" }}
select
label={t('integration_settings.fields.select_sheet')}
2024-11-13 00:06:32 +05:30
required
value={settings.spreadsheetId}
onChange={handleSpreadsheetSelect}
fullWidth
>
{spreadsheets.map((sheet) => (
<MenuItem key={sheet.id} value={sheet.id}>
{sheet.name}
</MenuItem>
))}
</TextField>
{settings.spreadsheetId && (
<Typography sx={{ marginBottom: "10px" }}>
{t('integration_settings.fields.selected_sheet', {
name: spreadsheets.find((s) => s.id === settings.spreadsheetId)?.name,
id: settings.spreadsheetId
})}
2024-11-13 00:06:32 +05:30
</Typography>
)}
<Button
variant="contained"
color="primary"
onClick={() => {
updateGoogleSheetId();
handleStart(settings);
}}
style={{ marginTop: "10px" }}
disabled={!settings.spreadsheetId || loading}
>
{t('integration_settings.buttons.submit')}
2024-11-13 00:06:32 +05:30
</Button>
</>
2024-10-16 22:37:53 +05:30
)}
2024-11-13 00:06:32 +05:30
</>
)}
</>
)}
</div>
</GenericModal>
);
2024-09-17 20:10:51 +05:30
};
export const modalStyle = {
2024-11-13 00:06:32 +05:30
top: "40%",
left: "50%",
transform: "translate(-50%, -50%)",
width: "50%",
backgroundColor: "background.paper",
p: 4,
height: "fit-content",
display: "block",
padding: "20px",
2024-12-08 04:49:29 +05:30
};