|
|
|
import { Divider, IconButton, Radio, RadioGroup } from "@mui/joy";
|
|
|
|
import { useEffect, useState } from "react";
|
|
|
|
import { toast } from "react-hot-toast";
|
|
|
|
import * as api from "@/helpers/api";
|
|
|
|
import { useGlobalStore } from "@/store/module";
|
|
|
|
import { useTranslate } from "@/utils/i18n";
|
|
|
|
import showCreateStorageServiceDialog from "../CreateStorageServiceDialog";
|
|
|
|
import { showCommonDialog } from "../Dialog/CommonDialog";
|
|
|
|
import Icon from "../Icon";
|
|
|
|
import LearnMore from "../LearnMore";
|
|
|
|
import showUpdateLocalStorageDialog from "../UpdateLocalStorageDialog";
|
|
|
|
import Dropdown from "../kit/Dropdown";
|
|
|
|
|
|
|
|
const StorageSection = () => {
|
|
|
|
const t = useTranslate();
|
|
|
|
const globalStore = useGlobalStore();
|
|
|
|
const systemStatus = globalStore.state.systemStatus;
|
|
|
|
const [storageServiceId, setStorageServiceId] = useState(systemStatus.storageServiceId);
|
|
|
|
const [storageList, setStorageList] = useState<ObjectStorage[]>([]);
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
fetchStorageList();
|
|
|
|
}, []);
|
|
|
|
|
|
|
|
const fetchStorageList = async () => {
|
|
|
|
const { data: storageList } = await api.getStorageList();
|
|
|
|
setStorageList(storageList);
|
|
|
|
};
|
|
|
|
|
|
|
|
const handleActiveStorageServiceChanged = async (storageId: StorageId) => {
|
|
|
|
await api.upsertSystemSetting({
|
|
|
|
name: "storage-service-id",
|
|
|
|
value: JSON.stringify(storageId),
|
|
|
|
});
|
|
|
|
await globalStore.fetchSystemStatus();
|
|
|
|
setStorageServiceId(storageId);
|
|
|
|
};
|
|
|
|
|
|
|
|
const handleDeleteStorage = (storage: ObjectStorage) => {
|
|
|
|
showCommonDialog({
|
|
|
|
title: t("setting.storage-section.delete-storage"),
|
|
|
|
content: t("setting.storage-section.warning-text", { name: storage.name }),
|
|
|
|
style: "danger",
|
|
|
|
dialogName: "delete-storage-dialog",
|
|
|
|
onConfirm: async () => {
|
|
|
|
try {
|
|
|
|
await api.deleteStorage(storage.id);
|
|
|
|
} catch (error: any) {
|
|
|
|
console.error(error);
|
|
|
|
toast.error(error.response.data.message);
|
|
|
|
}
|
|
|
|
await fetchStorageList();
|
|
|
|
},
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div className="section-container">
|
|
|
|
<div className="mt-4 mb-2 w-full flex flex-row justify-start items-center">
|
|
|
|
<span className="font-mono text-sm text-gray-400 mr-2">{t("setting.storage-section.current-storage")}</span>
|
|
|
|
</div>
|
|
|
|
<RadioGroup
|
|
|
|
className="w-full"
|
|
|
|
value={storageServiceId}
|
|
|
|
onChange={(event) => {
|
|
|
|
handleActiveStorageServiceChanged(Number(event.target.value));
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
<Radio value={"0"} label={t("setting.storage-section.type-database")} />
|
|
|
|
<div className="w-full mt-2 flex flex-row justify-start items-center gap-x-2">
|
|
|
|
<Radio value={"-1"} label={t("setting.storage-section.type-local")} />
|
|
|
|
<IconButton size="sm" onClick={() => showUpdateLocalStorageDialog(systemStatus.localStoragePath)}>
|
|
|
|
<Icon.PenBox className="w-4 h-auto" />
|
|
|
|
</IconButton>
|
|
|
|
</div>
|
|
|
|
{storageList.map((storage) => (
|
|
|
|
<Radio key={storage.id} value={storage.id} label={storage.name} />
|
|
|
|
))}
|
|
|
|
</RadioGroup>
|
|
|
|
<Divider className="!my-4" />
|
|
|
|
<div className="mb-2 w-full flex flex-row justify-start items-center gap-1">
|
|
|
|
<span className="font-mono text-sm text-gray-400">{t("setting.storage-section.storage-services-list")}</span>
|
|
|
|
<LearnMore url="https://usememos.com/docs/storage" />
|
|
|
|
<button className="btn-normal px-2 py-0 ml-1" onClick={() => showCreateStorageServiceDialog(undefined, fetchStorageList)}>
|
|
|
|
{t("common.create")}
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
<div className="mt-2 w-full flex flex-col">
|
|
|
|
{storageList.map((storage) => (
|
|
|
|
<div
|
|
|
|
key={storage.id}
|
|
|
|
className="py-2 w-full border-t last:border-b dark:border-zinc-700 flex flex-row items-center justify-between"
|
|
|
|
>
|
|
|
|
<div className="flex flex-row items-center">
|
|
|
|
<p className="ml-2">{storage.name}</p>
|
|
|
|
</div>
|
|
|
|
<div className="flex flex-row items-center">
|
|
|
|
<Dropdown
|
|
|
|
actionsClassName="!w-28"
|
|
|
|
actions={
|
|
|
|
<>
|
|
|
|
<button
|
|
|
|
className="w-full text-left text-sm leading-6 py-1 px-3 cursor-pointer rounded hover:bg-gray-100 dark:hover:bg-zinc-600"
|
|
|
|
onClick={() => showCreateStorageServiceDialog(storage, fetchStorageList)}
|
|
|
|
>
|
|
|
|
{t("common.edit")}
|
|
|
|
</button>
|
|
|
|
<button
|
|
|
|
className="w-full text-left text-sm leading-6 py-1 px-3 cursor-pointer rounded text-red-600 hover:bg-gray-100 dark:hover:bg-zinc-600"
|
|
|
|
onClick={() => handleDeleteStorage(storage)}
|
|
|
|
>
|
|
|
|
{t("common.delete")}
|
|
|
|
</button>
|
|
|
|
</>
|
|
|
|
}
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
))}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
export default StorageSection;
|