2020-10-10 02:07:49 -07:00
|
|
|
import React from "react";
|
2020-12-25 09:08:33 -08:00
|
|
|
import { Box, Flex, Tooltip } from "@chakra-ui/react";
|
2020-10-10 02:07:49 -07:00
|
|
|
|
2021-01-03 19:49:08 -08:00
|
|
|
import WIPXweeImg from "../images/wip-xwee.png";
|
|
|
|
import WIPXweeImg2x from "../images/wip-xwee@2x.png";
|
2020-10-10 02:07:49 -07:00
|
|
|
|
2020-10-10 02:17:21 -07:00
|
|
|
function WIPCallout({ children, details }) {
|
|
|
|
let content = (
|
|
|
|
<Flex
|
|
|
|
alignItems="center"
|
|
|
|
border="1px solid"
|
|
|
|
borderColor="green.600"
|
|
|
|
borderRadius="full"
|
|
|
|
boxShadow="md"
|
|
|
|
paddingLeft="2"
|
|
|
|
paddingRight="4"
|
|
|
|
paddingY="1"
|
|
|
|
fontSize="sm"
|
|
|
|
>
|
|
|
|
<Box
|
|
|
|
as="img"
|
|
|
|
src={WIPXweeImg}
|
|
|
|
srcSet={`${WIPXweeImg} 1x, ${WIPXweeImg2x} 2x`}
|
|
|
|
alt=""
|
|
|
|
width="36px"
|
|
|
|
height="36px"
|
|
|
|
marginRight="2"
|
|
|
|
/>
|
|
|
|
{children || (
|
|
|
|
<>
|
|
|
|
<Box display={{ base: "none", md: "block" }}>
|
|
|
|
We're working on this page!
|
|
|
|
</Box>
|
|
|
|
<Box display={{ base: "block", md: "none" }}>WIP!</Box>
|
|
|
|
</>
|
|
|
|
)}
|
|
|
|
</Flex>
|
2020-10-10 02:07:49 -07:00
|
|
|
);
|
2020-10-10 02:17:21 -07:00
|
|
|
|
|
|
|
if (details) {
|
|
|
|
content = (
|
|
|
|
<Tooltip
|
|
|
|
label={<Box textAlign="center">{details}</Box>}
|
|
|
|
placement="bottom"
|
|
|
|
shouldWrapChildren
|
|
|
|
>
|
|
|
|
{content}
|
|
|
|
</Tooltip>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
return content;
|
2020-10-10 02:07:49 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
export default WIPCallout;
|