import React from "react"; import { Flex, Box, Label, Input, Checkbox, IconButton } from "theme-ui"; import ExpandMoreIcon from "../../icons/ExpandMoreIcon"; import { isEmpty } from "../../helpers/shared"; import Divider from "../Divider"; import Select from "../Select"; const qualitySettings = [ { value: "low", label: "Low" }, { value: "medium", label: "Medium" }, { value: "high", label: "High" }, { value: "ultra", label: "Ultra High" }, { value: "original", label: "Original" }, ]; function MapSettings({ map, mapState, onSettingsChange, onStateSettingsChange, showMore, onShowMoreChange, }) { function handleFlagChange(event, flag) { if (event.target.checked) { onStateSettingsChange("editFlags", [...mapState.editFlags, flag]); } else { onStateSettingsChange( "editFlags", mapState.editFlags.filter((f) => f !== flag) ); } } function handleGridSizeXChange(event) { const value = parseInt(event.target.value) || 0; const gridY = map.grid.size.y; let inset = map.grid.inset; if (value > 0) { const gridScale = ((inset.bottomRight.x - inset.topLeft.x) * map.width) / value; inset.bottomRight.y = inset.topLeft.y + (gridY * gridScale) / map.height; } onSettingsChange("grid", { ...map.grid, inset, size: { ...map.grid.size, x: value, }, }); } function handleGridSizeYChange(event) { const value = parseInt(event.target.value) || 0; const gridX = map.grid.size.x; let inset = map.grid.inset; if (gridX > 0) { const gridScale = ((inset.bottomRight.x - inset.topLeft.x) * map.width) / gridX; inset.bottomRight.y = inset.topLeft.y + (value * gridScale) / map.height; } onSettingsChange("grid", { ...map.grid, inset, size: { ...map.grid.size, y: value, }, }); } function getMapSize() { let size = 0; if (map.quality === "original") { size = map.file.length; } else { size = map.resolutions[map.quality].file.length; } size /= 1000000; // Bytes to Megabytes return `${size.toFixed(2)}MB`; } const mapEmpty = !map || isEmpty(map); const mapStateEmpty = !mapState || isEmpty(mapState); return ( onSettingsChange("name", e.target.value)} disabled={mapEmpty || map.type === "default"} my={1} /> {showMore && ( <> s.value === map.quality) } isDisabled={mapEmpty} onChange={(option) => onSettingsChange("quality", option.value) } isOptionDisabled={(option) => mapEmpty || (option.value !== "original" && !map.resolutions[option.value]) } isSearchable={false} /> )} )} { e.stopPropagation(); e.preventDefault(); onShowMoreChange(!showMore); }} sx={{ transform: `rotate(${showMore ? "180deg" : "0"})`, alignSelf: "center", }} aria-label={showMore ? "Show Less" : "Show More"} title={showMore ? "Show Less" : "Show More"} > ); } export default MapSettings;