2022-01-19 06:06:19 +00:00
|
|
|
import React from "react";
|
2022-01-19 06:07:32 +00:00
|
|
|
import useSWRImmutable from "swr/immutable";
|
2022-01-19 06:06:19 +00:00
|
|
|
|
|
|
|
import styles from "../styles/CellData.module.css";
|
|
|
|
import CellModList from "./CellModList";
|
|
|
|
|
|
|
|
export interface Mod {
|
|
|
|
id: number;
|
|
|
|
name: string;
|
|
|
|
nexus_mod_id: number;
|
|
|
|
author_name: string;
|
|
|
|
author_id: number;
|
2022-01-19 06:07:32 +00:00
|
|
|
category_name: string;
|
|
|
|
category_id: number;
|
|
|
|
description: string;
|
|
|
|
thumbnail_link: string;
|
|
|
|
game_id: number;
|
|
|
|
updated_at: string;
|
|
|
|
created_at: string;
|
2022-01-19 06:06:19 +00:00
|
|
|
last_update_at: string;
|
|
|
|
first_upload_at: string;
|
2022-01-19 06:07:32 +00:00
|
|
|
last_updated_files_at: string;
|
2022-01-19 06:06:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export interface Cell {
|
|
|
|
form_id: number;
|
|
|
|
x: number;
|
|
|
|
y: number;
|
|
|
|
is_persistent: boolean;
|
|
|
|
mods_count: number;
|
|
|
|
files_count: number;
|
|
|
|
plugins_count: number;
|
|
|
|
mods: Mod[];
|
|
|
|
}
|
|
|
|
|
|
|
|
const jsonFetcher = async (url: string): Promise<Cell | null> => {
|
|
|
|
const res = await fetch(url);
|
|
|
|
|
|
|
|
if (!res.ok) {
|
|
|
|
if (res.status === 404) {
|
|
|
|
return null;
|
|
|
|
}
|
2022-01-19 06:07:32 +00:00
|
|
|
const error = new Error("An error occurred while fetching the data.");
|
|
|
|
throw error;
|
2022-01-19 06:06:19 +00:00
|
|
|
}
|
|
|
|
return res.json();
|
2022-01-19 06:07:32 +00:00
|
|
|
};
|
2022-01-19 06:06:19 +00:00
|
|
|
|
|
|
|
type Props = {
|
2022-01-24 05:59:36 +00:00
|
|
|
selectedCell: { x: number; y: number };
|
2022-01-25 05:31:25 +00:00
|
|
|
counts: [number, number, number, number][];
|
2022-01-19 06:06:19 +00:00
|
|
|
};
|
|
|
|
|
2022-01-25 05:31:25 +00:00
|
|
|
const CellData: React.FC<Props> = ({ selectedCell, counts }) => {
|
2022-01-19 06:07:32 +00:00
|
|
|
const { data, error } = useSWRImmutable(
|
2022-01-24 05:59:36 +00:00
|
|
|
`https://cells.modmapper.com/${selectedCell.x}/${selectedCell.y}.json`,
|
2022-01-19 06:07:32 +00:00
|
|
|
jsonFetcher
|
|
|
|
);
|
2022-01-19 06:06:19 +00:00
|
|
|
|
|
|
|
if (error && error.status === 404) {
|
|
|
|
return <div>Cell has no mod edits.</div>;
|
|
|
|
} else if (error) {
|
|
|
|
return <div>{`Error loading cell data: ${error.message}`}</div>;
|
|
|
|
}
|
|
|
|
if (data === undefined) return <div>Loading...</div>;
|
|
|
|
if (data === null) return <div>Cell has no edits.</div>;
|
|
|
|
|
2022-01-19 06:07:32 +00:00
|
|
|
return (
|
|
|
|
selectedCell && (
|
|
|
|
<>
|
2022-01-19 06:06:19 +00:00
|
|
|
<ul className={styles["cell-data-list"]}>
|
2022-01-19 06:07:32 +00:00
|
|
|
<li>
|
|
|
|
<strong>Form ID:</strong> <span>{data.form_id}</span>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<strong>Mods that edit:</strong> <span>{data.mods_count}</span>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<strong>Files that edit:</strong> <span>{data.files_count}</span>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<strong>Plugins that edit:</strong>{" "}
|
|
|
|
<span>{data.plugins_count}</span>
|
|
|
|
</li>
|
2022-01-19 06:06:19 +00:00
|
|
|
</ul>
|
2022-01-25 05:31:25 +00:00
|
|
|
<CellModList mods={data.mods} counts={counts} />
|
2022-01-19 06:07:32 +00:00
|
|
|
</>
|
|
|
|
)
|
2022-01-19 06:06:19 +00:00
|
|
|
);
|
|
|
|
};
|
|
|
|
|
2022-01-19 06:07:32 +00:00
|
|
|
export default CellData;
|