mirror of
https://github.com/usememos/memos.git
synced 2025-10-27 06:46:00 +08:00
* Added missing translations strings (filters, about page, ...) * Forgot one translation string. * Fixed PR issues and added Access Token related missing translation strings. * Fixed eslint issues. * Fixed eslint issues #2. * Fixed access token dialog translations, added missing webhook dialog translations.
147 lines
4.7 KiB
TypeScript
147 lines
4.7 KiB
TypeScript
import { Radio, RadioGroup } from "@mui/joy";
|
|
import { Button, Input } from "@usememos/mui";
|
|
import { XIcon } from "lucide-react";
|
|
import React, { useState } from "react";
|
|
import { toast } from "react-hot-toast";
|
|
import { userServiceClient } from "@/grpcweb";
|
|
import useCurrentUser from "@/hooks/useCurrentUser";
|
|
import useLoading from "@/hooks/useLoading";
|
|
import { useTranslate } from "@/utils/i18n";
|
|
import { generateDialog } from "./Dialog";
|
|
|
|
interface Props extends DialogProps {
|
|
onConfirm: () => void;
|
|
}
|
|
|
|
interface State {
|
|
description: string;
|
|
expiration: number;
|
|
}
|
|
|
|
const CreateAccessTokenDialog: React.FC<Props> = (props: Props) => {
|
|
const { destroy, onConfirm } = props;
|
|
const t = useTranslate();
|
|
const currentUser = useCurrentUser();
|
|
const [state, setState] = useState({
|
|
description: "",
|
|
expiration: 3600 * 8,
|
|
});
|
|
const requestState = useLoading(false);
|
|
|
|
const expirationOptions = [
|
|
{
|
|
label: t("setting.access-token-section.create-dialog.duration-8h"),
|
|
value: 3600 * 8,
|
|
},
|
|
{
|
|
label: t("setting.access-token-section.create-dialog.duration-1m"),
|
|
value: 3600 * 24 * 30,
|
|
},
|
|
{
|
|
label: t("setting.access-token-section.create-dialog.duration-never"),
|
|
value: 0,
|
|
},
|
|
];
|
|
|
|
const setPartialState = (partialState: Partial<State>) => {
|
|
setState({
|
|
...state,
|
|
...partialState,
|
|
});
|
|
};
|
|
|
|
const handleDescriptionInputChange = (e: React.ChangeEvent<HTMLInputElement>) => {
|
|
setPartialState({
|
|
description: e.target.value,
|
|
});
|
|
};
|
|
|
|
const handleRoleInputChange = (e: React.ChangeEvent<HTMLInputElement>) => {
|
|
setPartialState({
|
|
expiration: Number(e.target.value),
|
|
});
|
|
};
|
|
|
|
const handleSaveBtnClick = async () => {
|
|
if (!state.description) {
|
|
toast.error(t("message.description-is-required"));
|
|
return;
|
|
}
|
|
|
|
try {
|
|
await userServiceClient.createUserAccessToken({
|
|
name: currentUser.name,
|
|
description: state.description,
|
|
expiresAt: state.expiration ? new Date(Date.now() + state.expiration * 1000) : undefined,
|
|
});
|
|
|
|
onConfirm();
|
|
destroy();
|
|
} catch (error: any) {
|
|
toast.error(error.details);
|
|
console.error(error);
|
|
}
|
|
};
|
|
|
|
return (
|
|
<>
|
|
<div className="dialog-header-container">
|
|
<p className="title-text">{t("setting.access-token-section.create-dialog.create-access-token")}</p>
|
|
<Button size="sm" variant="plain" onClick={() => destroy()}>
|
|
<XIcon className="w-5 h-auto" />
|
|
</Button>
|
|
</div>
|
|
<div className="dialog-content-container !w-80">
|
|
<div className="w-full flex flex-col justify-start items-start mb-3">
|
|
<span className="mb-2">
|
|
{t("setting.access-token-section.create-dialog.description")} <span className="text-red-600">*</span>
|
|
</span>
|
|
<div className="relative w-full">
|
|
<Input
|
|
className="w-full"
|
|
type="text"
|
|
placeholder={t("setting.access-token-section.create-dialog.some-description")}
|
|
value={state.description}
|
|
onChange={handleDescriptionInputChange}
|
|
/>
|
|
</div>
|
|
</div>
|
|
<div className="w-full flex flex-col justify-start items-start mb-3">
|
|
<span className="mb-2">
|
|
{t("setting.access-token-section.create-dialog.expiration")} <span className="text-red-600">*</span>
|
|
</span>
|
|
<div className="w-full flex flex-row justify-start items-center text-base">
|
|
<RadioGroup orientation="horizontal" value={state.expiration} onChange={handleRoleInputChange}>
|
|
{expirationOptions.map((option) => (
|
|
<Radio key={option.value} value={option.value} checked={state.expiration === option.value} label={option.label} />
|
|
))}
|
|
</RadioGroup>
|
|
</div>
|
|
</div>
|
|
<div className="w-full flex flex-row justify-end items-center mt-4 space-x-2">
|
|
<Button variant="plain" disabled={requestState.isLoading} onClick={destroy}>
|
|
{t("common.cancel")}
|
|
</Button>
|
|
<Button color="primary" disabled={requestState.isLoading} onClick={handleSaveBtnClick}>
|
|
{t("common.create")}
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
</>
|
|
);
|
|
};
|
|
|
|
function showCreateAccessTokenDialog(onConfirm: () => void) {
|
|
generateDialog(
|
|
{
|
|
className: "create-access-token-dialog",
|
|
dialogName: "create-access-token-dialog",
|
|
},
|
|
CreateAccessTokenDialog,
|
|
{
|
|
onConfirm,
|
|
},
|
|
);
|
|
}
|
|
|
|
export default showCreateAccessTokenDialog;
|