Files
tonePage/tone-page-web/app/console/(with-menu)/web/blog/components/SetPasswordDialog.tsx
2025-06-23 01:29:02 +08:00

99 lines
3.5 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
'use client';
import { Button } from "@/components/ui/button"
import {
Dialog,
DialogClose,
DialogContent,
DialogDescription,
DialogFooter,
DialogHeader,
DialogTitle,
DialogTrigger,
} from "@/components/ui/dialog"
import { Input } from "@/components/ui/input"
import { Label } from "@/components/ui/label"
import { AdminApi } from "@/lib/api";
import { base62 } from "@/lib/utils";
import React, { useEffect, useState } from "react";
import { toast } from "sonner";
interface SetPasswordDialogProps {
id: string;
children: React.ReactNode;
}
export function SetPasswordDialog({ id, children }: SetPasswordDialogProps) {
const [open, setOpen] = useState(false);
const [password, setPassword] = useState('');
const handleSubmit = async () => {
if (!password) {
return toast.error('请输入密码');
}
await AdminApi.web.blog.setPassword(id, password).then(() => {
toast.success('修改成功');
setOpen(false);
}).catch(e => {
toast.error(`${e.message || e || '请求失败'}`)
});
}
useEffect(() => {
if (open) {
setPassword('');
}
}, [open])
const handleCopyShareURL = () => {
if (!password) {
return toast.warning('请先填写新密码');
}
const url = `${window.location.origin}/blog/${base62.encode(Buffer.from(id.replace(/-/g, ''), 'hex'))}?p=${password}`;
navigator.clipboard.writeText(url);
toast.success('分享链接复制成功,请点击保存按钮以提交新密码');
}
return (
<Dialog open={open} onOpenChange={v => setOpen(v)}>
<form>
<DialogTrigger asChild>
{children}
</DialogTrigger>
<DialogContent className="sm:max-w-[425px]">
<DialogHeader>
<DialogTitle></DialogTitle>
<DialogDescription>
访URL需要填写完新密码后再点击
</DialogDescription>
</DialogHeader>
<div className="grid gap-4">
<div className="grid gap-3">
<Label htmlFor="new-password"></Label>
<Input
id="new-password"
name="password"
value={password}
onChange={e => setPassword(e.target.value)}
/>
</div>
</div>
<DialogFooter>
<div className="w-full flex justify-between">
<div>
<Button variant='secondary' onClick={handleCopyShareURL}>URl</Button>
</div>
<div className="flex gap-5">
<DialogClose asChild>
<Button variant="outline"></Button>
</DialogClose>
<Button type="submit" onClick={handleSubmit}></Button>
</div>
</div>
</DialogFooter>
</DialogContent>
</form>
</Dialog>
)
}