feat(ssr): add sitemap generator

This commit is contained in:
Lee
2023-11-07 23:05:11 +00:00
parent 4b966aaaae
commit 41d1d5f1d7
16 changed files with 129 additions and 16 deletions

View File

@ -2,7 +2,7 @@ import AnalyticsChart from "@/components/AnalyticsChart";
import Card from "@/components/Card";
import Container from "@/components/Container";
import { ScoresaberMetricsHistory } from "@/schemas/fascinated/scoresaberMetricsHistory";
import { ssrSettings } from "@/ssrSettings";
import ssrSettings from "@/ssrSettings.json";
import { formatNumber } from "@/utils/numberUtils";
import { isProduction } from "@/utils/utils";
import { Metadata } from "next";

View File

@ -1,5 +1,5 @@
import AppProvider from "@/components/AppProvider";
import { ssrSettings } from "@/ssrSettings";
import ssrSettings from "@/ssrSettings.json";
import clsx from "clsx";
import { Metadata } from "next";
import { Inter } from "next/font/google";

View File

@ -1,5 +1,5 @@
import PlayerPage from "@/components/player/PlayerPage";
import { ssrSettings } from "@/ssrSettings";
import ssrSettings from "@/ssrSettings.json";
import { formatNumber } from "@/utils/numberUtils";
import { ScoreSaberAPI } from "@/utils/scoresaber/api";
import { normalizedRegionName } from "@/utils/utils";

View File

@ -1,4 +1,4 @@
import { ssrSettings } from "@/ssrSettings";
import ssrSettings from "@/ssrSettings.json";
import { isProduction } from "@/utils/utils";
import Link from "next/link";
import Card from "./Card";

View File

@ -125,7 +125,8 @@ export default function GlobalRanking({ page, country }: GlobalRankingProps) {
<p>
You are viewing{" "}
{country
? "scores from " + normalizedRegionName(country)
? "scores from " +
normalizedRegionName(country.toUpperCase())
: "Global scores"}
</p>
</div>

6
src/ssrSettings.json Normal file
View File

@ -0,0 +1,6 @@
{
"siteName": "ScoreSaber Reloaded",
"description": "Scoresaber Reloaded is a new way to view your scores and get more stats about your and your plays",
"siteUrl": "https://ssr.fascinated.cc",
"proxy": "https://proxy.fascinated.cc"
}

View File

@ -1,7 +0,0 @@
export const ssrSettings = {
siteName: "ScoreSaber Reloaded",
description:
"Scoresaber Reloaded is a new way to view your scores and get more stats about your and your plays",
siteUrl: "https://ssr.fascinated.cc",
proxy: "https://proxy.fascinated.cc",
};

View File

@ -1,6 +1,6 @@
import { BeatLeaderPlayer } from "@/schemas/beatleader/player";
import { BeatleaderScore } from "@/schemas/beatleader/score";
import { ssrSettings } from "@/ssrSettings";
import ssrSettings from "@/ssrSettings.json";
import { FetchQueue } from "../fetchWithQueue";
import { formatString } from "../string";

View File

@ -1,5 +1,5 @@
import { BeatsaverMap } from "@/schemas/beatsaver/BeatsaverMap";
import { ssrSettings } from "@/ssrSettings";
import ssrSettings from "@/ssrSettings.json";
import { FetchQueue } from "../fetchWithQueue";
import { formatString } from "../string";

View File

@ -2,7 +2,7 @@ import { ScoresaberLeaderboardInfo } from "@/schemas/scoresaber/leaderboard";
import { ScoresaberPlayer } from "@/schemas/scoresaber/player";
import { ScoresaberPlayerScore } from "@/schemas/scoresaber/playerScore";
import { ScoresaberScore } from "@/schemas/scoresaber/score";
import { ssrSettings } from "@/ssrSettings";
import ssrSettings from "@/ssrSettings.json";
import { FetchQueue } from "../fetchWithQueue";
import { formatString } from "../string";