import TextField from "@mui/material/TextField";
import Box from "@mui/material/Box";
import CircularProgress from "@mui/material/CircularProgress";
import Stack from "@mui/material/Stack";
import { useI18n } from "../../hooks/I18n";
import { useEffect, useState, useMemo } from "react";
import { apiTranslate } from "../../apis";
import CopyBtn from "./CopyBtn";
import Typography from "@mui/material/Typography";
import Alert from "@mui/material/Alert";
export default function TranCont({
text,
fromLang,
toLang,
apiSlug,
transApis,
simpleStyle = false,
}) {
const i18n = useI18n();
const [trText, setTrText] = useState("");
const [loading, setLoading] = useState(false);
const [error, setError] = useState("");
const apiSetting = useMemo(
() => transApis.find((api) => api.apiSlug === apiSlug),
[transApis, apiSlug]
);
useEffect(() => {
if (!text?.trim() || !apiSetting) {
return;
}
(async () => {
try {
setLoading(true);
setTrText("");
setError("");
const { trText } = await apiTranslate({
text,
fromLang,
toLang,
apiSetting,
});
setTrText(trText);
} catch (err) {
setError(err.message);
} finally {
setLoading(false);
}
})();
}, [text, fromLang, toLang, apiSetting]);
if (simpleStyle) {
return (
{error ? (
{error}
) : loading ? (
) : (
{trText}
)}
);
}
return (
: null,
endAdornment: (
),
}}
/>
);
}