50 lines
1.1 KiB
TypeScript
50 lines
1.1 KiB
TypeScript
import { currentProfile } from "@/lib/current-profile";
|
|
import { db } from "@/lib/db";
|
|
import { redirectToSignIn } from "@clerk/nextjs";
|
|
import { redirect } from "next/navigation";
|
|
|
|
interface ServerIdPageProps {
|
|
params: {
|
|
serverId: string;
|
|
};
|
|
};
|
|
|
|
const ServerIdPage = async ({
|
|
params
|
|
}: ServerIdPageProps) => {
|
|
const profile = await currentProfile();
|
|
|
|
if (!profile) {
|
|
return redirectToSignIn();
|
|
}
|
|
|
|
const server = await db.server.findUnique({
|
|
where: {
|
|
id: params.serverId,
|
|
members: {
|
|
some: {
|
|
profileId: profile.id,
|
|
},
|
|
},
|
|
},
|
|
include: {
|
|
channels: {
|
|
where: {
|
|
name: "general"
|
|
},
|
|
orderBy: {
|
|
createdAt: "asc"
|
|
}
|
|
},
|
|
},
|
|
});
|
|
|
|
const inistailChannel = server?.channels[0];
|
|
|
|
if (inistailChannel?.name !== "general") {
|
|
return null;
|
|
}
|
|
|
|
return redirect(`/servers/${params?.serverId}/channels/${inistailChannel?.id}`);
|
|
}
|
|
export default ServerIdPage; |