make urls look less awful (remove query params)
All checks were successful
deploy / deploy (push) Successful in 53s
All checks were successful
deploy / deploy (push) Successful in 53s
This commit is contained in:
@ -6,7 +6,7 @@ import { normalizedRegionName } from "@/utils/utils";
|
||||
import { Metadata } from "next";
|
||||
|
||||
type Props = {
|
||||
params: { id: string };
|
||||
params: { id: string; sort: string; page: string };
|
||||
};
|
||||
|
||||
export async function generateMetadata({
|
||||
@ -47,6 +47,6 @@ export async function generateMetadata({
|
||||
};
|
||||
}
|
||||
|
||||
export default function Player({ params: { id } }: Props) {
|
||||
return <PlayerPage id={id} />;
|
||||
export default function Player({ params: { id, sort, page } }: Props) {
|
||||
return <PlayerPage id={id} sort={sort} page={page} />;
|
||||
}
|
9
src/app/ranking/country/[country]/[page]/page.tsx
Normal file
9
src/app/ranking/country/[country]/[page]/page.tsx
Normal file
@ -0,0 +1,9 @@
|
||||
import GlobalRanking from "@/components/player/GlobalRanking";
|
||||
|
||||
type Props = {
|
||||
params: { page: string; country: string };
|
||||
};
|
||||
|
||||
export default function RankingGlobal({ params: { page, country } }: Props) {
|
||||
return <GlobalRanking page={Number(page)} country={country} />;
|
||||
}
|
@ -1,14 +0,0 @@
|
||||
import GlobalRanking from "@/components/player/GlobalRanking";
|
||||
import { getPageFromSearchQuery } from "@/utils/utils";
|
||||
import { headers } from "next/headers";
|
||||
|
||||
type RankingCountryProps = {
|
||||
params: { country: string };
|
||||
};
|
||||
|
||||
export default function RankingCountry({ params }: RankingCountryProps) {
|
||||
const page = getPageFromSearchQuery(headers());
|
||||
const country = params.country;
|
||||
|
||||
return <GlobalRanking page={page} country={country} />;
|
||||
}
|
9
src/app/ranking/global/[page]/page.tsx
Normal file
9
src/app/ranking/global/[page]/page.tsx
Normal file
@ -0,0 +1,9 @@
|
||||
import GlobalRanking from "@/components/player/GlobalRanking";
|
||||
|
||||
type Props = {
|
||||
params: { page: string };
|
||||
};
|
||||
|
||||
export default function RankingGlobal({ params: { page } }: Props) {
|
||||
return <GlobalRanking page={Number(page)} />;
|
||||
}
|
@ -1,9 +0,0 @@
|
||||
import GlobalRanking from "@/components/player/GlobalRanking";
|
||||
import { getPageFromSearchQuery } from "@/utils/utils";
|
||||
import { headers } from "next/headers";
|
||||
|
||||
export default function RankingGlobal() {
|
||||
const page = getPageFromSearchQuery(headers());
|
||||
|
||||
return <GlobalRanking page={page} />;
|
||||
}
|
Reference in New Issue
Block a user