mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-16 13:13:03 +00:00
111 lines
2.7 KiB
TypeScript
111 lines
2.7 KiB
TypeScript
/**
|
|
* @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 <div className={classes([className, computeFlexClassName(rest)])} {...computeFlexProps(rest)} />;
|
|
};
|
|
|
|
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 (
|
|
<div
|
|
className={classes([className, computeFlexItemClassName(props), computeBoxClassName(props)])}
|
|
{...computeFlexItemProps(rest)}
|
|
/>
|
|
);
|
|
};
|
|
|
|
FlexItem.defaultHooks = pureComponentHooks;
|
|
|
|
Flex.Item = FlexItem;
|