show DTI ID in item support drawer
helps make looking stuff up easier!
This commit is contained in:
parent
a2f5dcd498
commit
b23f64ad53
3 changed files with 50 additions and 37 deletions
|
@ -24,6 +24,7 @@ import {
|
||||||
import { ChevronRightIcon, ExternalLinkIcon } from "@chakra-ui/icons";
|
import { ChevronRightIcon, ExternalLinkIcon } from "@chakra-ui/icons";
|
||||||
|
|
||||||
import ItemLayerSupportUploadModal from "./ItemLayerSupportUploadModal";
|
import ItemLayerSupportUploadModal from "./ItemLayerSupportUploadModal";
|
||||||
|
import Metadata, { MetadataLabel, MetadataValue } from "./Metadata";
|
||||||
import { OutfitLayers } from "../../components/OutfitPreview";
|
import { OutfitLayers } from "../../components/OutfitPreview";
|
||||||
import SpeciesColorPicker from "../../components/SpeciesColorPicker";
|
import SpeciesColorPicker from "../../components/SpeciesColorPicker";
|
||||||
import useOutfitAppearance, {
|
import useOutfitAppearance, {
|
||||||
|
@ -341,34 +342,4 @@ function ItemLayerSupportPetCompatibilityFields({
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
function Metadata({ children }) {
|
|
||||||
return (
|
|
||||||
<Box
|
|
||||||
as="dl"
|
|
||||||
display="grid"
|
|
||||||
gridTemplateColumns="max-content auto"
|
|
||||||
gridRowGap="1"
|
|
||||||
gridColumnGap="2"
|
|
||||||
>
|
|
||||||
{children}
|
|
||||||
</Box>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
function MetadataLabel({ children }) {
|
|
||||||
return (
|
|
||||||
<Box as="dt" gridColumn="1" fontWeight="bold">
|
|
||||||
{children}
|
|
||||||
</Box>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
function MetadataValue({ children }) {
|
|
||||||
return (
|
|
||||||
<Box as="dd" gridColumn="2">
|
|
||||||
{children}
|
|
||||||
</Box>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
export default ItemLayerSupportModal;
|
export default ItemLayerSupportModal;
|
||||||
|
|
|
@ -27,6 +27,7 @@ import {
|
||||||
import { CheckCircleIcon, EditIcon, ExternalLinkIcon } from "@chakra-ui/icons";
|
import { CheckCircleIcon, EditIcon, ExternalLinkIcon } from "@chakra-ui/icons";
|
||||||
|
|
||||||
import ItemLayerSupportModal from "./ItemLayerSupportModal";
|
import ItemLayerSupportModal from "./ItemLayerSupportModal";
|
||||||
|
import Metadata, { MetadataLabel, MetadataValue } from "./Metadata";
|
||||||
import { OutfitLayers } from "../../components/OutfitPreview";
|
import { OutfitLayers } from "../../components/OutfitPreview";
|
||||||
import useOutfitAppearance from "../../components/useOutfitAppearance";
|
import useOutfitAppearance from "../../components/useOutfitAppearance";
|
||||||
import { OutfitStateContext } from "../useOutfitState";
|
import { OutfitStateContext } from "../useOutfitState";
|
||||||
|
@ -73,13 +74,15 @@ function ItemSupportDrawer({ item, isOpen, onClose }) {
|
||||||
Support <span aria-hidden="true">💖</span>
|
Support <span aria-hidden="true">💖</span>
|
||||||
</Badge>
|
</Badge>
|
||||||
</DrawerHeader>
|
</DrawerHeader>
|
||||||
<DrawerBody>
|
<DrawerBody paddingBottom="5">
|
||||||
<Box paddingBottom="5">
|
<Metadata>
|
||||||
<Stack spacing="8">
|
<MetadataLabel>DTI ID:</MetadataLabel>
|
||||||
|
<MetadataValue>{item.id}</MetadataValue>
|
||||||
|
</Metadata>
|
||||||
|
<Stack spacing="8" marginTop="6">
|
||||||
<ItemSupportFields item={item} />
|
<ItemSupportFields item={item} />
|
||||||
<ItemSupportAppearanceLayers item={item} />
|
<ItemSupportAppearanceLayers item={item} />
|
||||||
</Stack>
|
</Stack>
|
||||||
</Box>
|
|
||||||
</DrawerBody>
|
</DrawerBody>
|
||||||
</DrawerContent>
|
</DrawerContent>
|
||||||
</DrawerOverlay>
|
</DrawerOverlay>
|
||||||
|
|
39
src/app/WardrobePage/support/Metadata.js
Normal file
39
src/app/WardrobePage/support/Metadata.js
Normal file
|
@ -0,0 +1,39 @@
|
||||||
|
import * as React from "react";
|
||||||
|
import { Box } from "@chakra-ui/core";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Metadata is a UI component for showing metadata about something, as labels
|
||||||
|
* and their values.
|
||||||
|
*/
|
||||||
|
function Metadata({ children }) {
|
||||||
|
return (
|
||||||
|
<Box
|
||||||
|
as="dl"
|
||||||
|
display="grid"
|
||||||
|
gridTemplateColumns="max-content auto"
|
||||||
|
gridRowGap="1"
|
||||||
|
gridColumnGap="2"
|
||||||
|
>
|
||||||
|
{children}
|
||||||
|
</Box>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
function MetadataLabel({ children }) {
|
||||||
|
return (
|
||||||
|
<Box as="dt" gridColumn="1" fontWeight="bold">
|
||||||
|
{children}
|
||||||
|
</Box>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
function MetadataValue({ children }) {
|
||||||
|
return (
|
||||||
|
<Box as="dd" gridColumn="2">
|
||||||
|
{children}
|
||||||
|
</Box>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
export default Metadata;
|
||||||
|
export { MetadataLabel, MetadataValue };
|
Loading…
Reference in a new issue