From 58876529c38ee279e935c1cf3e204d2017a37a2e Mon Sep 17 00:00:00 2001 From: Pinapelz Date: Wed, 12 Nov 2025 03:05:47 -0800 Subject: taiko: add TAL/EGTS import script --- frontend/src/pages/Import.tsx | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) (limited to 'frontend/src/pages') diff --git a/frontend/src/pages/Import.tsx b/frontend/src/pages/Import.tsx index b4d80a8..21bc580 100644 --- a/frontend/src/pages/Import.tsx +++ b/frontend/src/pages/Import.tsx @@ -8,13 +8,14 @@ import { uploadScore } from "../utils/scoreUpload"; import { NavBar } from "../components/NavBar"; import { EamusementUserscriptCard } from "../components/modals/EamusementUserscriptModal"; import { FlowerUserscriptCard } from "../components/modals/FlowerUserscriptModal"; -import TaikoDonderHirobaModal from "../components/modals/TaikoDonderHirobaModal"; const JsonUploadModal = lazy(() => import("../components/modals/JsonUploadModal")); const EamusementUserscriptModal = lazy(() => import("../components/modals/EamusementUserscriptModal")); const DivaNetModal = lazy(() => import("../components/modals/DivaNetModal")); const MusicDiverModal = lazy(() => import("../components/modals/MusicDiverModal")); const FlowerUserscriptModal = lazy(() => import("../components/modals/FlowerUserscriptModal")); +const TaikoDonderHirobaModal = lazy(() => import("../components/modals/TaikoDonderHirobaModal")); +const TaikoEGTSModal = lazy(() => import("../components/modals/TaikoEGTSModal")); type ModalType = 'json' | 'dancerush' | 'dancearound' | 'divanet' | 'musicdiver' | 'nostalgia' | 'reflecbeat' | 'taiko'; @@ -207,6 +208,12 @@ const Import = () => { game={supportedGames.find((g) => g.internalName === selectedGame)} renderAsCard={() => setOpenModal('taiko')} /> + {}} + game={supportedGames.find((g) => g.internalName === selectedGame)} + renderAsCard={() => setOpenModal('taiko')} + /> ); default: @@ -405,6 +412,16 @@ const Import = () => { } /> )} + {openModal === 'taiko' && ( + setOpenModal(null)} + game={ + supportedGames.find((g) => g.internalName === selectedGame) || + undefined + } + /> + )} ); -- cgit v1.2.3