lazy load some components
All checks were successful
deploy / deploy (push) Successful in 59s

This commit is contained in:
Lee
2023-11-08 09:55:20 +00:00
parent 26490bbad4
commit fb0e8a7ea1
3 changed files with 33 additions and 6 deletions

View File

@ -1,6 +1,5 @@
import Card from "@/components/Card";
import Container from "@/components/Container";
import PlayerChart from "@/components/player/PlayerChart";
import PlayerInfo from "@/components/player/PlayerInfo";
import Scores from "@/components/player/Scores";
import {
@ -15,7 +14,11 @@ import { ScoreSaberAPI } from "@/utils/scoresaber/api";
import { normalizedRegionName } from "@/utils/utils";
import clsx from "clsx";
import { Metadata } from "next";
import dynamic from "next/dynamic";
import Image from "next/image";
import { Fragment, Suspense } from "react";
const PlayerChart = dynamic(() => import("@/components/player/PlayerChart"));
const DEFAULT_SORT_TYPE = SortTypes.top;
@ -129,7 +132,11 @@ export default async function Player({ params: { id, sort, page } }: Props) {
})}
</div>
<div className="h-[320px] w-full">
<PlayerChart scoresaber={player} />
<Fragment>
<Suspense>
<PlayerChart scoresaber={player} />
</Suspense>
</Fragment>
</div>
</Card>
<Scores