-
-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: more chunithm import methods (#976)
- Loading branch information
Showing
4 changed files
with
86 additions
and
0 deletions.
There are no files selected for viewing
27 changes: 27 additions & 0 deletions
27
client/src/app/pages/dashboard/import/AquaArtemisExportPage.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
import useSetSubheader from "components/layout/header/useSetSubheader"; | ||
import Divider from "components/util/Divider"; | ||
import ExternalLink from "components/util/ExternalLink"; | ||
import { TachiConfig } from "lib/config"; | ||
import React from "react"; | ||
|
||
export default function AquaArtemisExport() { | ||
useSetSubheader(["Import Scores", "Aqua/ARTEMiS Exporter"]); | ||
|
||
return ( | ||
<div> | ||
<h1 className="text-center mb-4">What is the Aqua/ARTEMiS Exporter?</h1> | ||
<div> | ||
The Aqua/Artemis Exporter is a script that will export your CHUNITHM scores from an | ||
Aqua/ARTEMiS instance to a BATCH-MANUAL JSON for import to {TachiConfig.name}. You | ||
will need direct access to the server instance. | ||
</div> | ||
<Divider /> | ||
<h1 className="text-center my-4">Setup Instructions</h1> | ||
Instructions are available on{" "} | ||
<ExternalLink href="https://gist.github.com/beerpiss/52b0d0c85e20262ae3ab9b2c65effdda"> | ||
the GitHub gist | ||
</ExternalLink> | ||
. | ||
</div> | ||
); | ||
} |
26 changes: 26 additions & 0 deletions
26
client/src/app/pages/dashboard/import/ChunithmMYTExportPage.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
import useSetSubheader from "components/layout/header/useSetSubheader"; | ||
import Divider from "components/util/Divider"; | ||
import ExternalLink from "components/util/ExternalLink"; | ||
import { TachiConfig } from "lib/config"; | ||
import React from "react"; | ||
|
||
export default function ChunithmMYTExport() { | ||
useSetSubheader(["Import Scores", "CHUNITHM MYT Exporter"]); | ||
|
||
return ( | ||
<div> | ||
<h1 className="text-center mb-4">What is the CHUNITHM Mythos Exporter?</h1> | ||
<div> | ||
The CHUNITHM Mythos Exporter is an userscript that will export your CHUNITHM scores | ||
from MYT to a BATCH-MANUAL JSON for import to {TachiConfig.name}. | ||
</div> | ||
<Divider /> | ||
<h1 className="text-center my-4">Setup Instructions</h1> | ||
Instructions are available on{" "} | ||
<ExternalLink href="https://gist.github.com/beerpiss/90e7df9c6aacc5a295eb5a90dbd8d537"> | ||
the GitHub gist | ||
</ExternalLink> | ||
. | ||
</div> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters