2023-10-23 23:33:39 +02:00
|
|
|
import type { NextPage } from "next"
|
2021-12-28 16:06:58 +01:00
|
|
|
|
2023-10-23 23:33:39 +02:00
|
|
|
import { Head } from "../../../../components/Head"
|
|
|
|
import { Application } from "../../../../components/Application"
|
|
|
|
import { Messages } from "../../../../components/Application/Messages"
|
|
|
|
import { SendMessage } from "../../../../components/Application/SendMessage"
|
|
|
|
import type { PagePropsWithAuthentication } from "../../../../tools/authentication"
|
2021-10-24 06:09:43 +02:00
|
|
|
import {
|
|
|
|
authenticationFromServerSide,
|
2023-10-23 23:33:39 +02:00
|
|
|
AuthenticationProvider,
|
|
|
|
} from "../../../../tools/authentication"
|
|
|
|
import type { GuildMember } from "../../../../contexts/GuildMember"
|
|
|
|
import { GuildMemberProvider } from "../../../../contexts/GuildMember"
|
|
|
|
import { GuildLeftSidebar } from "../../../../components/Application/GuildLeftSidebar"
|
|
|
|
import { ChannelsProvider } from "../../../../contexts/Channels"
|
|
|
|
import { GuildsProvider } from "../../../../contexts/Guilds"
|
|
|
|
import type { Channel } from "../../../../models/Channel"
|
|
|
|
import { MessagesProvider } from "../../../../contexts/Messages"
|
|
|
|
import { MembersProviders } from "../../../../contexts/Members"
|
2021-10-24 06:09:43 +02:00
|
|
|
|
|
|
|
export interface ChannelPageProps extends PagePropsWithAuthentication {
|
|
|
|
channelId: number
|
|
|
|
guildId: number
|
2022-01-01 20:42:25 +01:00
|
|
|
guildMember: GuildMember
|
|
|
|
selectedChannel: Channel
|
2021-10-24 06:09:43 +02:00
|
|
|
}
|
|
|
|
|
2021-12-28 16:06:58 +01:00
|
|
|
const ChannelPage: NextPage<ChannelPageProps> = (props) => {
|
2022-01-01 20:42:25 +01:00
|
|
|
const { channelId, guildId, authentication, guildMember, selectedChannel } =
|
|
|
|
props
|
|
|
|
|
|
|
|
const path = {
|
|
|
|
channelId,
|
2023-10-23 23:33:39 +02:00
|
|
|
guildId,
|
2022-01-01 20:42:25 +01:00
|
|
|
}
|
2021-10-24 06:09:43 +02:00
|
|
|
|
|
|
|
return (
|
|
|
|
<AuthenticationProvider authentication={authentication}>
|
2022-01-01 20:42:25 +01:00
|
|
|
<GuildsProvider>
|
|
|
|
<GuildMemberProvider guildMember={guildMember} path={path}>
|
|
|
|
<MembersProviders path={path}>
|
|
|
|
<ChannelsProvider path={path}>
|
|
|
|
<MessagesProvider path={path}>
|
2022-04-09 11:33:28 +02:00
|
|
|
<Head title={`Thream | ${selectedChannel.name}`} />
|
2022-01-01 20:42:25 +01:00
|
|
|
<Application
|
|
|
|
path={path}
|
|
|
|
guildLeftSidebar={<GuildLeftSidebar path={path} />}
|
|
|
|
title={`# ${selectedChannel.name}`}
|
|
|
|
>
|
|
|
|
<Messages />
|
2022-01-13 18:21:45 +01:00
|
|
|
<SendMessage path={path} />
|
2022-01-01 20:42:25 +01:00
|
|
|
</Application>
|
|
|
|
</MessagesProvider>
|
|
|
|
</ChannelsProvider>
|
|
|
|
</MembersProviders>
|
|
|
|
</GuildMemberProvider>
|
|
|
|
</GuildsProvider>
|
2021-10-24 06:09:43 +02:00
|
|
|
</AuthenticationProvider>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
export const getServerSideProps = authenticationFromServerSide({
|
|
|
|
shouldBeAuthenticated: true,
|
2022-01-01 20:42:25 +01:00
|
|
|
fetchData: async (context, api) => {
|
2023-10-23 23:33:39 +02:00
|
|
|
const channelId = Number(context?.params?.["channelId"])
|
|
|
|
const guildId = Number(context?.params?.["guildId"])
|
2023-07-22 16:34:23 +02:00
|
|
|
if (Number.isNaN(channelId) || Number.isNaN(guildId)) {
|
2021-10-24 06:09:43 +02:00
|
|
|
return {
|
2023-10-23 23:33:39 +02:00
|
|
|
notFound: true,
|
2021-10-24 06:09:43 +02:00
|
|
|
}
|
|
|
|
}
|
2022-01-01 20:42:25 +01:00
|
|
|
const { data: guildMember } = await api.get(`/guilds/${guildId}`)
|
|
|
|
const { data: selectedChannelData } = await api.get(
|
2023-10-23 23:33:39 +02:00
|
|
|
`/channels/${channelId}`,
|
2022-01-01 20:42:25 +01:00
|
|
|
)
|
2021-10-24 06:09:43 +02:00
|
|
|
return {
|
|
|
|
channelId,
|
2022-01-01 20:42:25 +01:00
|
|
|
guildId,
|
|
|
|
guildMember,
|
2023-10-23 23:33:39 +02:00
|
|
|
selectedChannel: selectedChannelData.channel,
|
2021-10-24 06:09:43 +02:00
|
|
|
}
|
2023-10-23 23:33:39 +02:00
|
|
|
},
|
2021-10-24 06:09:43 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
export default ChannelPage
|