2024-11-13 00:06:32 +05:30
|
|
|
import React, { useState, useEffect } from "react";
|
2025-01-09 19:49:20 +05:30
|
|
|
import { GenericModal } from "../ui/GenericModal";
|
2024-11-13 00:06:32 +05:30
|
|
|
import {
|
|
|
|
|
MenuItem,
|
|
|
|
|
Typography,
|
|
|
|
|
CircularProgress,
|
|
|
|
|
Alert,
|
|
|
|
|
AlertTitle,
|
|
|
|
|
} 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";
|
2025-01-26 14:22:36 +05:30
|
|
|
import Cookies from "js-cookie";
|
2024-12-21 13:10:38 +05:30
|
|
|
import { useTranslation } from "react-i18next";
|
2024-12-06 04:29:40 +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;
|
2025-01-26 14:22:36 +05:30
|
|
|
airtableBaseId: string;
|
|
|
|
|
airtableBaseName: string;
|
2024-11-13 00:06:32 +05:30
|
|
|
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) {
|
2025-01-26 14:22:36 +05:30
|
|
|
return parts.pop()?.split(";").shift() || null;
|
2024-12-08 04:49:29 +05:30
|
|
|
}
|
|
|
|
|
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) => {
|
2024-12-21 13:10:38 +05:30
|
|
|
const { t } = useTranslation();
|
2024-11-13 00:06:32 +05:30
|
|
|
const [settings, setSettings] = useState<IntegrationSettings>({
|
|
|
|
|
spreadsheetId: "",
|
|
|
|
|
spreadsheetName: "",
|
2025-01-26 14:22:36 +05:30
|
|
|
airtableBaseId: "",
|
|
|
|
|
airtableBaseName: "",
|
2024-11-13 00:06:32 +05:30
|
|
|
data: "",
|
|
|
|
|
});
|
2024-10-16 22:37:53 +05:30
|
|
|
|
2025-01-26 14:22:36 +05:30
|
|
|
const [spreadsheets, setSpreadsheets] = useState<{ id: string; name: string }[]>([]);
|
|
|
|
|
const [airtableBases, setAirtableBases] = useState<{ id: string; name: string }[]>([]);
|
2024-11-13 00:06:32 +05:30
|
|
|
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
|
|
|
|
2025-01-26 14:22:36 +05:30
|
|
|
// Authenticate with Google
|
2024-11-13 00:06:32 +05:30
|
|
|
const authenticateWithGoogle = () => {
|
2025-01-26 14:22:36 +05:30
|
|
|
const redirectUri = `${window.location.origin}/google/callback`;
|
|
|
|
|
window.location.href = `${apiUrl}/auth/google?robotId=${recordingId}&redirect_uri=${encodeURIComponent(redirectUri)}`;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const authenticateWithAirtable = () => {
|
|
|
|
|
const redirectUri = `${window.location.origin}/airtable/callback`;
|
|
|
|
|
window.location.href = `${apiUrl}/auth/airtable?robotId=${recordingId}&redirect_uri=${encodeURIComponent(redirectUri)}`;
|
2024-11-13 00:06:32 +05:30
|
|
|
};
|
2024-09-17 17:28:43 +05:30
|
|
|
|
2025-01-26 14:22:36 +05:30
|
|
|
// Handle OAuth callback
|
|
|
|
|
const handleGoogleCallback = async () => {
|
2024-11-13 00:06:32 +05:30
|
|
|
try {
|
2025-01-26 14:22:36 +05:30
|
|
|
const urlParams = new URLSearchParams(window.location.search);
|
|
|
|
|
const code = urlParams.get('code');
|
|
|
|
|
|
|
|
|
|
if (!code) {
|
|
|
|
|
setError(t("integration_settings.errors.no_auth_code"));
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const response = await axios.get(
|
|
|
|
|
`${apiUrl}/auth/google/callback?code=${code}&robotId=${recordingId}`
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
if (response.data.accessToken) {
|
|
|
|
|
notify("success", t("integration_settings.notifications.google_auth_success"));
|
|
|
|
|
await fetchSpreadsheetFiles();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Clear URL parameters
|
|
|
|
|
window.history.replaceState({}, document.title, window.location.pathname);
|
|
|
|
|
|
2024-11-13 00:06:32 +05:30
|
|
|
} catch (error) {
|
2025-01-26 14:22:36 +05:30
|
|
|
setError(t("integration_settings.errors.google_auth_error"));
|
2024-11-13 00:06:32 +05:30
|
|
|
}
|
|
|
|
|
};
|
2024-09-17 20:10:51 +05:30
|
|
|
|
2025-01-26 14:22:36 +05:30
|
|
|
const handleAirtableCallback = async () => {
|
2024-11-13 00:06:32 +05:30
|
|
|
try {
|
2025-01-26 14:22:36 +05:30
|
|
|
const urlParams = new URLSearchParams(window.location.search);
|
|
|
|
|
const code = urlParams.get('code');
|
|
|
|
|
|
|
|
|
|
if (!code) {
|
|
|
|
|
setError(t("integration_settings.errors.no_auth_code"));
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2024-11-13 00:06:32 +05:30
|
|
|
const response = await axios.get(
|
2025-01-26 14:22:36 +05:30
|
|
|
`${apiUrl}/auth/airtable/callback?code=${code}&robotId=${recordingId}`
|
2024-11-13 00:06:32 +05:30
|
|
|
);
|
2025-01-26 14:22:36 +05:30
|
|
|
|
|
|
|
|
if (response.data.accessToken) {
|
|
|
|
|
notify("success", t("integration_settings.notifications.airtable_auth_success"));
|
|
|
|
|
await fetchAirtableBases();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Clear URL parameters
|
|
|
|
|
window.history.replaceState({}, document.title, window.location.pathname);
|
|
|
|
|
|
|
|
|
|
} catch (error) {
|
|
|
|
|
setError(t("integration_settings.errors.airtable_auth_error"));
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// Fetch Google Sheets
|
|
|
|
|
const fetchSpreadsheetFiles = async () => {
|
|
|
|
|
try {
|
|
|
|
|
const response = await axios.get(`${apiUrl}/auth/gsheets/files?robotId=${recordingId}`, {
|
|
|
|
|
withCredentials: true,
|
|
|
|
|
});
|
2024-11-13 00:06:32 +05:30
|
|
|
setSpreadsheets(response.data);
|
|
|
|
|
} catch (error: any) {
|
2025-01-26 14:22:36 +05:30
|
|
|
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-10-17 17:29:56 +05:30
|
|
|
|
2025-01-26 14:22:36 +05:30
|
|
|
// Fetch Airtable Bases
|
|
|
|
|
const fetchAirtableBases = async () => {
|
|
|
|
|
try {
|
|
|
|
|
const response = await axios.get(`${apiUrl}/auth/airtable/bases?robotId=${recordingId}`, {
|
|
|
|
|
withCredentials: true,
|
|
|
|
|
});
|
|
|
|
|
setAirtableBases(response.data);
|
|
|
|
|
} catch (error: any) {
|
|
|
|
|
console.error("Error fetching Airtable bases:", error.response?.data?.message || error.message);
|
|
|
|
|
notify("error", t("integration_settings.errors.fetch_error", { message: error.response?.data?.message || error.message }));
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// Handle Google Sheet selection
|
2024-11-13 00:06:32 +05:30
|
|
|
const handleSpreadsheetSelect = (e: React.ChangeEvent<HTMLInputElement>) => {
|
2025-01-26 14:22:36 +05:30
|
|
|
const selectedSheet = spreadsheets.find((sheet) => sheet.id === e.target.value);
|
2024-11-13 00:06:32 +05:30
|
|
|
if (selectedSheet) {
|
|
|
|
|
setSettings({
|
|
|
|
|
...settings,
|
|
|
|
|
spreadsheetId: selectedSheet.id,
|
|
|
|
|
spreadsheetName: selectedSheet.name,
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
};
|
2024-10-16 20:47:14 +05:30
|
|
|
|
2025-01-26 14:22:36 +05:30
|
|
|
// Handle Airtable Base selection
|
|
|
|
|
const handleAirtableBaseSelect = (e: React.ChangeEvent<HTMLInputElement>) => {
|
|
|
|
|
const selectedBase = airtableBases.find((base) => base.id === e.target.value);
|
|
|
|
|
if (selectedBase) {
|
|
|
|
|
setSettings({
|
|
|
|
|
...settings,
|
|
|
|
|
airtableBaseId: selectedBase.id,
|
|
|
|
|
airtableBaseName: selectedBase.name,
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// Update Google Sheet ID
|
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 }
|
|
|
|
|
);
|
2025-01-26 14:22:36 +05:30
|
|
|
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) {
|
2025-01-26 14:22:36 +05:30
|
|
|
console.error("Error updating Google Sheet ID:", error.response?.data?.message || error.message);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// Update Airtable Base ID
|
|
|
|
|
const updateAirtableBaseId = async () => {
|
|
|
|
|
try {
|
|
|
|
|
const response = await axios.post(
|
|
|
|
|
`${apiUrl}/auth/airtable/update`,
|
|
|
|
|
{
|
|
|
|
|
baseId: settings.airtableBaseId,
|
|
|
|
|
baseName: settings.airtableBaseName,
|
|
|
|
|
robotId: recordingId,
|
|
|
|
|
},
|
|
|
|
|
{ withCredentials: true }
|
2024-11-13 00:06:32 +05:30
|
|
|
);
|
2025-01-26 14:22:36 +05:30
|
|
|
notify("success", t("integration_settings.notifications.base_selected"));
|
|
|
|
|
console.log("Airtable Base ID updated:", response.data);
|
|
|
|
|
} catch (error: any) {
|
|
|
|
|
console.error("Error updating Airtable Base ID:", error.response?.data?.message || error.message);
|
2024-11-13 00:06:32 +05:30
|
|
|
}
|
|
|
|
|
};
|
2024-10-17 19:57:09 +05:30
|
|
|
|
2025-01-26 14:22:36 +05:30
|
|
|
// Remove Integration
|
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([]);
|
2025-01-26 14:22:36 +05:30
|
|
|
setAirtableBases([]);
|
|
|
|
|
setSettings({ spreadsheetId: "", spreadsheetName: "", airtableBaseId: "", airtableBaseName: "", data: "" });
|
2024-11-13 00:06:32 +05:30
|
|
|
} catch (error: any) {
|
2025-01-26 14:22:36 +05:30
|
|
|
console.error("Error removing integration:", error.response?.data?.message || error.message);
|
2024-11-13 00:06:32 +05:30
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
useEffect(() => {
|
2025-01-26 14:22:36 +05:30
|
|
|
const checkAuthCallback = () => {
|
|
|
|
|
const path = window.location.pathname;
|
|
|
|
|
const urlParams = new URLSearchParams(window.location.search);
|
|
|
|
|
const code = urlParams.get('code');
|
|
|
|
|
|
|
|
|
|
if (code) {
|
|
|
|
|
if (path.includes('/google/callback')) {
|
|
|
|
|
handleGoogleCallback();
|
|
|
|
|
} else if (path.includes('/airtable/callback')) {
|
|
|
|
|
handleAirtableCallback();
|
|
|
|
|
}
|
2024-11-13 00:06:32 +05:30
|
|
|
}
|
2024-10-21 02:27:45 +05:30
|
|
|
};
|
2025-01-26 14:22:36 +05:30
|
|
|
|
|
|
|
|
checkAuthCallback();
|
|
|
|
|
|
|
|
|
|
// Cleanup function
|
|
|
|
|
return () => {
|
|
|
|
|
window.history.replaceState({}, document.title, window.location.pathname);
|
|
|
|
|
};
|
|
|
|
|
}, []);
|
2024-11-13 00:06:32 +05:30
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<GenericModal isOpen={isOpen} onClose={handleClose} modalStyle={modalStyle}>
|
2025-01-26 14:22:36 +05:30
|
|
|
<div style={{ display: "flex", flexDirection: "column", alignItems: "flex-start", marginLeft: "65px" }}>
|
|
|
|
|
<Typography variant="h6">{t("integration_settings.title")}</Typography>
|
2024-10-17 15:28:22 +05:30
|
|
|
|
2025-01-26 14:22:36 +05:30
|
|
|
{recording && (recording.google_sheet_id || recording.airtable_base_id) ? (
|
2024-11-13 00:06:32 +05:30
|
|
|
<>
|
2025-01-26 14:22:36 +05:30
|
|
|
{recording.google_sheet_id && (
|
|
|
|
|
<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}`} target="_blank" rel="noreferrer">
|
|
|
|
|
{t("integration_settings.alerts.success.here")}
|
|
|
|
|
</a>.
|
|
|
|
|
<br />
|
|
|
|
|
<strong>{t("integration_settings.alerts.success.note")}</strong> {t("integration_settings.alerts.success.sync_limitation")}
|
|
|
|
|
</Alert>
|
|
|
|
|
)}
|
|
|
|
|
|
|
|
|
|
{recording.airtable_base_id && (
|
|
|
|
|
<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.airtable_base_name })}
|
|
|
|
|
<a href={`https://airtable.com/${recording.airtable_base_id}`} target="_blank" rel="noreferrer">
|
|
|
|
|
{t("integration_settings.alerts.success.here")}
|
|
|
|
|
</a>.
|
|
|
|
|
<br />
|
|
|
|
|
<strong>{t("integration_settings.alerts.success.note")}</strong> {t("integration_settings.alerts.success.sync_limitation")}
|
|
|
|
|
</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>
|
|
|
|
|
</>
|
|
|
|
|
) : (
|
|
|
|
|
<>
|
2025-01-26 14:22:36 +05:30
|
|
|
{!recording?.google_sheet_email && !recording?.airtable_email ? (
|
2024-11-13 00:06:32 +05:30
|
|
|
<>
|
2025-01-26 14:22:36 +05:30
|
|
|
<p>{t("integration_settings.descriptions.sync_info")}</p>
|
|
|
|
|
<Button variant="contained" color="primary" onClick={authenticateWithGoogle} style={{ marginBottom: "10px" }}>
|
|
|
|
|
{t("integration_settings.buttons.authenticate_google")}
|
|
|
|
|
</Button>
|
|
|
|
|
<Button variant="contained" color="primary" onClick={authenticateWithAirtable}>
|
|
|
|
|
{t("integration_settings.buttons.authenticate_airtable")}
|
2024-11-13 00:06:32 +05:30
|
|
|
</Button>
|
|
|
|
|
</>
|
|
|
|
|
) : (
|
|
|
|
|
<>
|
2025-01-26 14:22:36 +05:30
|
|
|
{(recording.google_sheet_email || recording.airtable_email) && (
|
2024-11-13 00:06:32 +05:30
|
|
|
<Typography sx={{ margin: "20px 0px 30px 0px" }}>
|
2025-01-26 14:22:36 +05:30
|
|
|
{t("integration_settings.descriptions.authenticated_as", {
|
|
|
|
|
email: recording.google_sheet_email || recording.airtable_email,
|
2024-12-21 13:10:38 +05:30
|
|
|
})}
|
2024-11-13 00:06:32 +05:30
|
|
|
</Typography>
|
|
|
|
|
)}
|
|
|
|
|
|
|
|
|
|
{loading ? (
|
|
|
|
|
<CircularProgress sx={{ marginBottom: "15px" }} />
|
|
|
|
|
) : error ? (
|
|
|
|
|
<Typography color="error">{error}</Typography>
|
2024-10-16 22:37:53 +05:30
|
|
|
) : (
|
2024-11-13 00:06:32 +05:30
|
|
|
<>
|
2025-01-26 14:22:36 +05:30
|
|
|
{recording.google_sheet_email && (
|
|
|
|
|
<>
|
|
|
|
|
<TextField
|
|
|
|
|
sx={{ marginBottom: "15px" }}
|
|
|
|
|
select
|
|
|
|
|
label={t("integration_settings.fields.select_sheet")}
|
|
|
|
|
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,
|
|
|
|
|
})}
|
|
|
|
|
</Typography>
|
|
|
|
|
)}
|
2024-11-13 00:06:32 +05:30
|
|
|
|
2025-01-26 14:22:36 +05:30
|
|
|
<Button
|
|
|
|
|
variant="contained"
|
|
|
|
|
color="primary"
|
|
|
|
|
onClick={() => {
|
|
|
|
|
updateGoogleSheetId();
|
|
|
|
|
handleStart(settings);
|
|
|
|
|
}}
|
|
|
|
|
style={{ marginTop: "10px" }}
|
|
|
|
|
disabled={!settings.spreadsheetId || loading}
|
|
|
|
|
>
|
|
|
|
|
{t("integration_settings.buttons.submit_google")}
|
|
|
|
|
</Button>
|
|
|
|
|
</>
|
2024-11-13 00:06:32 +05:30
|
|
|
)}
|
|
|
|
|
|
2025-01-26 14:22:36 +05:30
|
|
|
{recording.airtable_email && (
|
|
|
|
|
<>
|
|
|
|
|
<TextField
|
|
|
|
|
sx={{ marginBottom: "15px" }}
|
|
|
|
|
select
|
|
|
|
|
label={t("integration_settings.fields.select_base")}
|
|
|
|
|
required
|
|
|
|
|
value={settings.airtableBaseId}
|
|
|
|
|
onChange={handleAirtableBaseSelect}
|
|
|
|
|
fullWidth
|
|
|
|
|
>
|
|
|
|
|
{airtableBases.map((base) => (
|
|
|
|
|
<MenuItem key={base.id} value={base.id}>
|
|
|
|
|
{base.name}
|
|
|
|
|
</MenuItem>
|
|
|
|
|
))}
|
|
|
|
|
</TextField>
|
|
|
|
|
|
|
|
|
|
{settings.airtableBaseId && (
|
|
|
|
|
<Typography sx={{ marginBottom: "10px" }}>
|
|
|
|
|
{t("integration_settings.fields.selected_base", {
|
|
|
|
|
name: airtableBases.find((b) => b.id === settings.airtableBaseId)?.name,
|
|
|
|
|
id: settings.airtableBaseId,
|
|
|
|
|
})}
|
|
|
|
|
</Typography>
|
|
|
|
|
)}
|
|
|
|
|
|
|
|
|
|
<Button
|
|
|
|
|
variant="contained"
|
|
|
|
|
color="primary"
|
|
|
|
|
onClick={() => {
|
|
|
|
|
updateAirtableBaseId();
|
|
|
|
|
handleStart(settings);
|
|
|
|
|
}}
|
|
|
|
|
style={{ marginTop: "10px" }}
|
|
|
|
|
disabled={!settings.airtableBaseId || loading}
|
|
|
|
|
>
|
|
|
|
|
{t("integration_settings.buttons.submit_airtable")}
|
|
|
|
|
</Button>
|
|
|
|
|
</>
|
|
|
|
|
)}
|
2024-11-13 00:06:32 +05:30
|
|
|
</>
|
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
|
|
|
};
|
2024-11-05 23:22:43 +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
|
|
|
};
|