modmapper-web/components/Sidebar.tsx

32 lines
1.0 KiB
TypeScript

import React, { useEffect, useState } from "react";
import styles from "../styles/Sidebar.module.css";
type Props = {
selectedCell: [number, number] | null;
setSelectedCell: (cell: [number, number] | null) => void;
map: React.MutableRefObject<mapboxgl.Map | null>;
};
const Sidebar: React.FC<Props> = ({ selectedCell, setSelectedCell, map }) => {
const onClose = () => {
setSelectedCell(null);
if (map.current) map.current.removeFeatureState({ source: "grid-source" });
if (map.current && map.current.getLayer("selected-cell-layer")) {
map.current.removeLayer("selected-cell-layer");
}
if (map.current && map.current.getSource("selected-cell-source")) {
map.current.removeSource("selected-cell-source");
}
requestAnimationFrame(() => { if (map.current) map.current.resize() });
}
return selectedCell && (
<div className={styles.sidebar}>
<button className={styles.close} onClick={onClose}></button>
<h1>Cell {selectedCell[0]}, {selectedCell[1]}</h1>
</div>
);
};
export default Sidebar;