All files / src/components/elements Modals.tsx

0% Statements 0/10
0% Branches 0/2
0% Functions 0/3
0% Lines 0/10

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62                                                                                                                           
import * as React from "react";
import styled from "styled-components";
import { Box, Button, Card, Flex, Modal } from "rimble-ui";
import { H3 } from "../layouts";
import { baseColors } from "../../themes";
 
const IconButton = styled(Button.Text)`
  color: ${baseColors.black};
  &:hover {
    color: ${baseColors.blurple};
  }
`;
 
export interface ModalWithXProps {
  isOpen?: boolean;
  hideX?: boolean;
  close(): any;
  /** Any additional props will be passed to Rimble `Card` component around the modal: */
  [key: string]: any;
}
export const ModalWithX: React.FunctionComponent<ModalWithXProps> = (props) => {
  return (
    <Modal isOpen={props.isOpen}>
      <Card p={0} pb={3} pt="48px" {...props}>
        {!props.hideX && (
          <Button.Text icononly icon="Close" position="absolute" top={1} right={2} onClick={props.close} />
        )}
        <Flex flexDirection="column" minHeight="0" maxHeight="calc(95vh - 48px)">
          {props.children}
        </Flex>
      </Card>
    </Modal>
  );
};
 
export interface ModalBackProps {
  onClick(e: MouseEvent): any;
}
export const ModalBack: React.FunctionComponent<ModalBackProps> = (props) => {
  return <IconButton icononly icon="ArrowBack" position="absolute" top={2} left={2} onClick={props.onClick} />;
};
 
export const ModalHeader: React.FunctionComponent<any> = (props) => (
  <H3 px={4} mt={1} mb={3} color={baseColors.black} {...props} />
);
 
export const ModalContent = styled(Box)`
  flex-grow: 1;
  min-height: 0;
  overflow: auto;
  padding: 0 24px 16px;
`;
 
export const ModalContentFullWidth = styled(ModalContent)`
  padding-left: 0;
  padding-right: 0;
`;
 
export const ModalFooter = styled(Box)`
  padding: 0 24px;
`;