1
0
Code Issues Pull Requests Packages Projects Releases Wiki Activity GitHub Gitee
Files
inke/apps/web/ui/layout/create-room-modal.tsx
2023-11-10 14:59:47 +08:00

197 lines
6.0 KiB
TypeScript

import Modal from "@/ui/shared/modal";
import {
useState,
Dispatch,
SetStateAction,
useCallback,
useMemo,
} from "react";
import { LoadingDots } from "@/ui/shared/icons";
import { fetcher } from "@/lib/utils";
import { Session } from "next-auth";
import { useUserInfoByEmail } from "@/app/post/[id]/request";
import shortid from "shortid";
import { IResponse } from "@/lib/types/response";
import { Collaboration } from "@prisma/client";
import toast from "react-hot-toast";
import { useRouter } from "next/navigation";
import { defaultEditorContent } from "@/lib/consts";
import { v4 as uuidv4 } from "uuid";
import { ContentItem } from "@/lib/types/note";
import { Shapes } from "lucide-react";
import Link from "next/link";
import { addNote } from "@/store/db.model";
const CreatRoomModal = ({
initTitle,
localId,
session,
showEditModal,
setShowEditModal,
}: {
initTitle: string;
localId: string;
session: Session | null;
showEditModal: boolean;
setShowEditModal: Dispatch<SetStateAction<boolean>>;
}) => {
const [title, setTitle] = useState("");
const [loading, setLoading] = useState(false);
const [isSendSuccess, setIsSendSuccess] = useState(false);
const router = useRouter();
const handleSubmit = async () => {
if (!session?.user) {
toast("Please login first");
return;
}
if (!title || title.length < 3 || title.length > 20) {
toast("Invalid space name");
return;
}
setLoading(true);
const new_localId = uuidv4();
const roomId = shortid.generate().replace("_", "A").replace("-", "a");
const res = await fetcher<IResponse<Collaboration | null>>(
"/api/collaboration",
{
method: "POST",
body: JSON.stringify({
roomId,
localId: new_localId, // 本地创建新笔记关联空间
title,
}),
},
);
if (res.code !== 200) {
toast(res.msg, {
icon: "😅",
});
} else {
const date = new Date();
const newItem: ContentItem = {
id: new_localId,
title: `Untitled-${new_localId.slice(0, 6)}-${
date.getMonth() + 1
}/${date.getDate()}`,
content: defaultEditorContent,
tag: "",
created_at: date.getTime(),
updated_at: date.getTime(),
};
addNote(newItem);
toast.success(res.msg, {
icon: "🎉",
});
router.push(`/post/${new_localId}?work=${roomId}`);
}
if (res) {
setLoading(false);
setIsSendSuccess(true);
setShowEditModal(false);
}
};
const handleKeydown = (key: string) => {
if (key === "Enter") {
handleSubmit();
}
};
return (
<Modal showModal={showEditModal} setShowModal={setShowEditModal}>
<div className="w-full overflow-hidden bg-gray-50 shadow-xl md:max-w-md md:rounded-2xl md:border md:border-gray-200">
<div className="flex flex-col items-center justify-center space-y-3 border-b border-gray-200 bg-white px-4 py-6 pt-8 text-center md:px-10">
<Shapes className="inline h-12 w-12 text-cyan-500" />
<h3 className="font-display text-2xl font-bold">
Collaboration space
</h3>
</div>
<div className="px-14 py-10">
<input
className="shadow-blue-gray-200 mb-4 w-full rounded-md border border-slate-200 bg-[#f8f8f8a1] px-3 py-3 text-sm placeholder-gray-400 shadow-inner"
type="text"
placeholder={"Enter space name (3-20 characters)"}
onChange={(e) => setTitle(e.target.value)}
onKeyDown={(e) => handleKeydown(e.key)}
/>
<button
// disabled={loading}
onClick={handleSubmit}
className={`
${
loading
? "border-gray-300 bg-gray-200"
: `${
isSendSuccess
? " border-blue-500 bg-blue-500 hover:text-blue-500"
: "border-black bg-black hover:text-black"
} hover:bg-gray-100`
}
h-10 w-full rounded-md border px-2 py-1 text-sm text-slate-100 transition-all `}
>
{loading ? (
<LoadingDots color="gray" />
) : (
<div className="flex items-center justify-center">
{isSendSuccess && !loading ? "Success!" : "Create"}
</div>
)}
</button>
<p className="mt-6 text-start text-sm text-gray-600">
You are creating a collaboration space, just enter the space name
and click <strong className="text-cyan-500">Create</strong>.
</p>
<p className="text-start text-sm text-gray-600">
Once created successfully, it will automatically jump to your
collaboration space and generate an{" "}
<strong className="text-cyan-500">invitation link</strong>, which
allows you to invite your team to join the collaboration.
</p>
<p className="text-start text-sm text-gray-600">
{" "}
See more about{" "}
<Link
className="text-cyan-500 after:content-['_↗'] hover:opacity-80"
href={`/collaboration`}
target="_blank"
>
collaboration
</Link>{" "}
space.
</p>
</div>
</div>
</Modal>
);
};
export function useCreatRoomModal(
session: Session | null,
initTitle: string,
localId: string,
) {
const [showRoomModal, setShowRoomModal] = useState(false);
const RoomModalCallback = useCallback(() => {
return (
<CreatRoomModal
initTitle={initTitle}
localId={localId}
session={session}
showEditModal={showRoomModal}
setShowEditModal={setShowRoomModal}
/>
);
}, [showRoomModal, setShowRoomModal]);
return useMemo(
() => ({ setShowRoomModal, RoomModal: RoomModalCallback }),
[setShowRoomModal, RoomModalCallback],
);
}