chore: better Prettier config for easier reviews
This commit is contained in:
@ -1,16 +1,16 @@
|
||||
import type { NextPage } from 'next'
|
||||
import type { NextPage } from "next"
|
||||
|
||||
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 { UserProfile } from '../../../../components/Application/UserProfile'
|
||||
import { GuildsProvider } from '../../../../contexts/Guilds'
|
||||
import type { UserPublic } from '../../../../models/User'
|
||||
import type { Guild } from '../../../../models/Guild'
|
||||
AuthenticationProvider,
|
||||
} from "../../../../tools/authentication"
|
||||
import { UserProfile } from "../../../../components/Application/UserProfile"
|
||||
import { GuildsProvider } from "../../../../contexts/Guilds"
|
||||
import type { UserPublic } from "../../../../models/User"
|
||||
import type { Guild } from "../../../../models/Guild"
|
||||
|
||||
export interface UserProfilePageProps extends PagePropsWithAuthentication {
|
||||
user: UserPublic
|
||||
@ -35,18 +35,18 @@ const UserProfilePage: NextPage<UserProfilePageProps> = (props) => {
|
||||
export const getServerSideProps = authenticationFromServerSide({
|
||||
shouldBeAuthenticated: true,
|
||||
fetchData: async (context, api) => {
|
||||
const userId = Number(context?.params?.['userId'])
|
||||
const userId = Number(context?.params?.["userId"])
|
||||
if (Number.isNaN(userId)) {
|
||||
return {
|
||||
notFound: true
|
||||
notFound: true,
|
||||
}
|
||||
}
|
||||
const { data } = await api.get(`/users/${userId}`)
|
||||
return {
|
||||
user: data.user,
|
||||
guilds: data.guilds
|
||||
guilds: data.guilds,
|
||||
}
|
||||
}
|
||||
},
|
||||
})
|
||||
|
||||
export default UserProfilePage
|
||||
|
@ -1,15 +1,15 @@
|
||||
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 { UserSettings } from '../../../components/Application/UserSettings'
|
||||
import { GuildsProvider } from '../../../contexts/Guilds'
|
||||
AuthenticationProvider,
|
||||
} from "../../../tools/authentication"
|
||||
import { UserSettings } from "../../../components/Application/UserSettings"
|
||||
import { GuildsProvider } from "../../../contexts/Guilds"
|
||||
|
||||
const UserSettingsPage: NextPage<PagePropsWithAuthentication> = (props) => {
|
||||
const { t } = useTranslation()
|
||||
@ -17,10 +17,10 @@ const UserSettingsPage: NextPage<PagePropsWithAuthentication> = (props) => {
|
||||
return (
|
||||
<AuthenticationProvider authentication={props.authentication}>
|
||||
<GuildsProvider>
|
||||
<Head title={`Thream | ${t('application:user-settings')}`} />
|
||||
<Head title={`Thream | ${t("application:user-settings")}`} />
|
||||
<Application
|
||||
path='/application/users/settings'
|
||||
title={t('application:user-settings')}
|
||||
path="/application/users/settings"
|
||||
title={t("application:user-settings")}
|
||||
>
|
||||
<UserSettings />
|
||||
</Application>
|
||||
@ -30,7 +30,7 @@ const UserSettingsPage: NextPage<PagePropsWithAuthentication> = (props) => {
|
||||
}
|
||||
|
||||
export const getServerSideProps = authenticationFromServerSide({
|
||||
shouldBeAuthenticated: true
|
||||
shouldBeAuthenticated: true,
|
||||
})
|
||||
|
||||
export default UserSettingsPage
|
||||
|
Reference in New Issue
Block a user