/** * @file * @copyright 2020 Aleksej Komarov * @license MIT */ import { BooleanLike, classes, pureComponentHooks } from 'common/react'; import { BoxProps, computeBoxClassName, computeBoxProps, unit } from './Box'; export type FlexProps = BoxProps & { direction?: string | BooleanLike; wrap?: string | BooleanLike; align?: string | BooleanLike; alignContent?: string | BooleanLike; // VOREStation Addition justify?: string | BooleanLike; inline?: BooleanLike; }; export const computeFlexClassName = (props: FlexProps) => { return classes([ 'Flex', props.inline && 'Flex--inline', Byond.IS_LTE_IE10 && 'Flex--iefix', Byond.IS_LTE_IE10 && props.direction === 'column' && 'Flex--iefix--column', computeBoxClassName(props), ]); }; export const computeFlexProps = (props: FlexProps) => { const { className, direction, wrap, align, alignContent, // VOREStation Addition justify, inline, ...rest } = props; return computeBoxProps({ style: { ...rest.style, 'flex-direction': direction, 'flex-wrap': wrap === true ? 'wrap' : wrap, 'align-items': align, 'align-content': alignContent, // VOREStation Addition 'justify-content': justify, }, ...rest, }); }; export const Flex = (props) => { const { className, ...rest } = props; return
; }; Flex.defaultHooks = pureComponentHooks; export type FlexItemProps = BoxProps & { grow?: number; order?: number; shrink?: number; basis?: string | BooleanLike; align?: string | BooleanLike; }; export const computeFlexItemClassName = (props: FlexItemProps) => { return classes(['Flex__item', Byond.IS_LTE_IE10 && 'Flex__item--iefix', computeBoxClassName(props)]); }; export const computeFlexItemProps = (props: FlexItemProps) => { const { className, style, grow, order, shrink, // IE11: Always set basis to specified width, which fixes certain // bugs when rendering tables inside the flex. basis = props.width, align, ...rest } = props; return computeBoxProps({ style: { ...style, 'flex-grow': grow !== undefined && Number(grow), 'flex-shrink': shrink !== undefined && Number(shrink), 'flex-basis': unit(basis), 'order': order, 'align-self': align, }, ...rest, }); }; const FlexItem = (props) => { const { className, ...rest } = props; return (
); }; FlexItem.defaultHooks = pureComponentHooks; Flex.Item = FlexItem;