chore: better Prettier config for easier reviews
This commit is contained in:
@ -1,17 +1,17 @@
|
||||
import type { NextPage } from 'next'
|
||||
import useTranslation from 'next-translate/useTranslation'
|
||||
import type { NextPage } from "next"
|
||||
import useTranslation from "next-translate/useTranslation"
|
||||
|
||||
import { Head } from '../../../../components/Head'
|
||||
import { Application } from '../../../../components/Application'
|
||||
import type { PagePropsWithAuthentication } from '../../../../tools/authentication'
|
||||
import { Head } from "../../../../components/Head"
|
||||
import { Application } from "../../../../components/Application"
|
||||
import type { PagePropsWithAuthentication } from "../../../../tools/authentication"
|
||||
import {
|
||||
authenticationFromServerSide,
|
||||
AuthenticationProvider
|
||||
} from '../../../../tools/authentication'
|
||||
import { CreateChannel } from '../../../../components/Application/CreateChannel'
|
||||
import { GuildsProvider } from '../../../../contexts/Guilds'
|
||||
import type { GuildMember } from '../../../../contexts/GuildMember'
|
||||
import { GuildMemberProvider } from '../../../../contexts/GuildMember'
|
||||
AuthenticationProvider,
|
||||
} from "../../../../tools/authentication"
|
||||
import { CreateChannel } from "../../../../components/Application/CreateChannel"
|
||||
import { GuildsProvider } from "../../../../contexts/Guilds"
|
||||
import type { GuildMember } from "../../../../contexts/GuildMember"
|
||||
import { GuildMemberProvider } from "../../../../contexts/GuildMember"
|
||||
|
||||
export interface CreateChannelPageProps extends PagePropsWithAuthentication {
|
||||
guildId: number
|
||||
@ -29,10 +29,10 @@ const CreateChannelPage: NextPage<CreateChannelPageProps> = (props) => {
|
||||
<GuildsProvider>
|
||||
<GuildMemberProvider guildMember={guildMember} path={path}>
|
||||
<Head
|
||||
title={`Thream | ${t('application:create-a-channel')}`}
|
||||
description={t('application:create-a-channel')}
|
||||
title={`Thream | ${t("application:create-a-channel")}`}
|
||||
description={t("application:create-a-channel")}
|
||||
/>
|
||||
<Application path={path} title={t('application:create-a-channel')}>
|
||||
<Application path={path} title={t("application:create-a-channel")}>
|
||||
<CreateChannel />
|
||||
</Application>
|
||||
</GuildMemberProvider>
|
||||
@ -44,18 +44,18 @@ const CreateChannelPage: NextPage<CreateChannelPageProps> = (props) => {
|
||||
export const getServerSideProps = authenticationFromServerSide({
|
||||
shouldBeAuthenticated: true,
|
||||
fetchData: async (context, api) => {
|
||||
const guildId = Number(context?.params?.['guildId'])
|
||||
const guildId = Number(context?.params?.["guildId"])
|
||||
if (Number.isNaN(guildId)) {
|
||||
return {
|
||||
notFound: true
|
||||
notFound: true,
|
||||
}
|
||||
}
|
||||
const { data: guildMember } = await api.get(`/guilds/${guildId}`)
|
||||
return {
|
||||
guildId,
|
||||
guildMember
|
||||
guildMember,
|
||||
}
|
||||
}
|
||||
},
|
||||
})
|
||||
|
||||
export default CreateChannelPage
|
||||
|
Reference in New Issue
Block a user