[WIP] Add PB field to NC support tool

Just for clarity!
This commit is contained in:
Emi Matchu 2021-02-22 19:24:33 -08:00
parent 0ae26a6633
commit 9b16cb8f91

View file

@ -221,19 +221,7 @@ function ItemKindBadgeWithSupportTools({ item }) {
<Portal> <Portal>
<PopoverContent padding="4"> <PopoverContent padding="4">
<PopoverArrow /> <PopoverArrow />
<Badge colorScheme="pink" position="absolute" right="4" top="4">
Support <span aria-hidden="true">💖</span>
</Badge>
<VStack spacing="2" align="flex-start"> <VStack spacing="2" align="flex-start">
<Flex align="center">
<Box as="span" fontWeight="600" marginRight="1">
Rarity:
</Box>
<Box>
{item.rarityIndex} (
{isNcAutoDetectedFromRarity ? "NC" : "not NC"})
</Box>
</Flex>
<Flex align="center"> <Flex align="center">
<Box as="span" fontWeight="600" marginRight="2"> <Box as="span" fontWeight="600" marginRight="2">
NC: NC:
@ -244,11 +232,33 @@ function ItemKindBadgeWithSupportTools({ item }) {
value={item.isManuallyNc ? "true" : "false"} value={item.isManuallyNc ? "true" : "false"}
> >
<option value="false"> <option value="false">
Auto-detect ({isNcAutoDetectedFromRarity ? "Yes" : "No"}) Auto-detect: {isNcAutoDetectedFromRarity ? "Yes" : "No"}.{" "}
(Rarity {item.rarityIndex})
</option> </option>
<option value="true">Always NC (ignore rarity)</option> <option value="true">Manually set: Yes.</option>
</Select> </Select>
</Flex> </Flex>
<Flex align="center">
<Box as="span" fontWeight="600" marginRight="1">
PB:
</Box>
<Select size="xs" isReadOnly value="auto-detect">
<option value="auto-detect">
Auto-detect: {item.isPb ? "Yes" : "No"}. (from description)
</option>
<option style={{ fontStyle: "italic" }}>
(This cannot be manually set.)
</option>
</Select>
</Flex>
<Badge
colorScheme="pink"
alignSelf="flex-end"
marginBottom="-2"
marginRight="-2"
>
Support <span aria-hidden="true">💖</span>
</Badge>
</VStack> </VStack>
</PopoverContent> </PopoverContent>
</Portal> </Portal>