151 lines
4.1 KiB
JavaScript
151 lines
4.1 KiB
JavaScript
import Stack from "@mui/material/Stack";
|
|
import { OPT_TRANS_BAIDU } from "../../config";
|
|
import { useEffect, useState } from "react";
|
|
import Typography from "@mui/material/Typography";
|
|
import Accordion from "@mui/material/Accordion";
|
|
import AccordionSummary from "@mui/material/AccordionSummary";
|
|
import AccordionDetails from "@mui/material/AccordionDetails";
|
|
import ExpandMoreIcon from "@mui/icons-material/ExpandMore";
|
|
import CircularProgress from "@mui/material/CircularProgress";
|
|
import { useI18n } from "../../hooks/I18n";
|
|
import Alert from "@mui/material/Alert";
|
|
import { apiTranslate } from "../../apis";
|
|
import Box from "@mui/material/Box";
|
|
import { useFavWords } from "../../hooks/FavWords";
|
|
import DictCont from "../Selection/DictCont";
|
|
import DownloadButton from "./DownloadButton";
|
|
import UploadButton from "./UploadButton";
|
|
import Button from "@mui/material/Button";
|
|
import ClearAllIcon from "@mui/icons-material/ClearAll";
|
|
import { isValidWord } from "../../libs/utils";
|
|
|
|
function DictField({ word }) {
|
|
const [dictResult, setDictResult] = useState(null);
|
|
const [loading, setLoading] = useState(false);
|
|
const [error, setError] = useState("");
|
|
|
|
useEffect(() => {
|
|
(async () => {
|
|
try {
|
|
setLoading(true);
|
|
setError("");
|
|
const dictRes = await apiTranslate({
|
|
text: word,
|
|
translator: OPT_TRANS_BAIDU,
|
|
fromLang: "en",
|
|
toLang: "zh-CN",
|
|
});
|
|
setDictResult(dictRes[2].dict_result);
|
|
} catch (err) {
|
|
setError(err.message);
|
|
} finally {
|
|
setLoading(false);
|
|
}
|
|
})();
|
|
}, [word]);
|
|
|
|
if (loading) {
|
|
return <CircularProgress size={24} />;
|
|
}
|
|
|
|
if (error) {
|
|
return <Alert severity="error">{error}</Alert>;
|
|
}
|
|
|
|
return <DictCont dictResult={dictResult} />;
|
|
}
|
|
|
|
function FavAccordion({ word, index }) {
|
|
const [expanded, setExpanded] = useState(false);
|
|
|
|
const handleChange = (e) => {
|
|
setExpanded((pre) => !pre);
|
|
};
|
|
|
|
return (
|
|
<Accordion expanded={expanded} onChange={handleChange}>
|
|
<AccordionSummary expandIcon={<ExpandMoreIcon />}>
|
|
{/* <Typography>{`[${new Date(
|
|
createdAt
|
|
).toLocaleString()}] ${word}`}</Typography> */}
|
|
<Typography>{`${index + 1}. ${word}`}</Typography>
|
|
</AccordionSummary>
|
|
<AccordionDetails>
|
|
{expanded && <DictField word={word} />}
|
|
</AccordionDetails>
|
|
</Accordion>
|
|
);
|
|
}
|
|
|
|
export default function FavWords() {
|
|
const i18n = useI18n();
|
|
const { loading, favWords, mergeWords, clearWords } = useFavWords();
|
|
const favList = Object.entries(favWords).sort((a, b) =>
|
|
a[0].localeCompare(b[0])
|
|
);
|
|
const downloadList = favList.map(([word]) => word);
|
|
|
|
const handleImport = async (data) => {
|
|
try {
|
|
const newWords = data
|
|
.split("\n")
|
|
.map((line) => line.split(",")[0].trim())
|
|
.filter(isValidWord);
|
|
await mergeWords(newWords);
|
|
} catch (err) {
|
|
console.log("[import rules]", err);
|
|
}
|
|
};
|
|
|
|
return (
|
|
<Box>
|
|
<Stack spacing={3}>
|
|
<Stack
|
|
direction="row"
|
|
alignItems="center"
|
|
spacing={2}
|
|
useFlexGap
|
|
flexWrap="wrap"
|
|
>
|
|
<UploadButton
|
|
text={i18n("import")}
|
|
handleImport={handleImport}
|
|
fileType="text"
|
|
fileExts={[".txt", ".csv"]}
|
|
/>
|
|
<DownloadButton
|
|
data={downloadList.join("\n")}
|
|
text={i18n("export")}
|
|
fileName={`kiss-words_${Date.now()}.txt`}
|
|
/>
|
|
<Button
|
|
size="small"
|
|
variant="outlined"
|
|
onClick={() => {
|
|
clearWords();
|
|
}}
|
|
startIcon={<ClearAllIcon />}
|
|
>
|
|
{i18n("clear_all")}
|
|
</Button>
|
|
</Stack>
|
|
|
|
<Box>
|
|
{loading ? (
|
|
<CircularProgress size={24} />
|
|
) : (
|
|
favList.map(([word, { createdAt }], index) => (
|
|
<FavAccordion
|
|
key={word}
|
|
index={index}
|
|
word={word}
|
|
createdAt={createdAt}
|
|
/>
|
|
))
|
|
)}
|
|
</Box>
|
|
</Stack>
|
|
</Box>
|
|
);
|
|
}
|