import React, { useEffect } from "react"; import useSWRImmutable from "swr/immutable"; import { useAppDispatch, useAppSelector } from "../lib/hooks"; import { setFetchedPlugin, PluginFile, PluginsByHashWithMods, } from "../slices/plugins"; import ModList from "./ModList"; import CellList from "./CellList"; import type { CellCoord } from "./ModData"; import PluginData, { Plugin as PluginProps } from "./PluginData"; import styles from "../styles/PluginData.module.css"; import { jsonFetcher } from "../lib/api"; const buildPluginProps = ( data?: PluginsByHashWithMods | null, plugin?: PluginFile ): PluginProps => { const dataPlugin = data && data.plugins.length > 0 && data.plugins[0]; return { hash: (plugin && plugin.hash) || (dataPlugin && dataPlugin.hash.toString(36)) || "", size: plugin?.size || (dataPlugin && dataPlugin.size) || 0, author: plugin?.parsed?.header.author || (dataPlugin && dataPlugin.author) || undefined, description: plugin?.parsed?.header.description || (dataPlugin && dataPlugin.description) || undefined, masters: plugin?.parsed?.header.masters || (dataPlugin && dataPlugin.masters) || [], file_name: plugin?.filename || (dataPlugin && dataPlugin.file_name) || "", cell_count: plugin?.parsed?.cells.length || (data && data.cells.length) || 0, }; }; type Props = { hash: string; counts: Record | null; }; const PluginDetail: React.FC = ({ hash, counts }) => { const { data, error } = useSWRImmutable( `https://plugins.modmapper.com/${hash}.json`, (_) => jsonFetcher(_) ); const dispatch = useAppDispatch(); const plugins = useAppSelector((state) => state.plugins.plugins); const fetchedPlugin = useAppSelector((state) => state.plugins.fetchedPlugin); const plugin = plugins.find((plugin) => plugin.hash === hash); useEffect(() => { if (data) { dispatch(setFetchedPlugin(data)); } }, [dispatch, data, fetchedPlugin]); if (!plugin && error && error.status === 404) { return

Plugin could not be found.

; } else if (!plugin && error) { return
{`Error loading plugin data: ${error.message}`}
; } if (!plugin && data === undefined) return
Loading...
; if (!plugin && data === null) return
Plugin could not be found.
; return ( <> {data && } cell.x !== undefined && cell.y !== undefined && cell.world_form_id === 60 ) as CellCoord[]) || data?.cells || [] } /> ); }; export default PluginDetail;