Files
flipper/desktop/app/src/ui/components/ButtonGroupChain.tsx
Pascal Hartig 69c7876be9 Enforce react/jsx-boolean-value
Summary: yarn fix results.

Reviewed By: nikoant

Differential Revision: D28329714

fbshipit-source-id: 564aa24bcdb4bc6cdea67dfad10a077a9c817a2d
2021-05-11 10:14:05 -07:00

94 lines
2.3 KiB
TypeScript

/**
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* @format
*/
import React from 'react';
import styled from '@emotion/styled';
import Glyph from './Glyph';
import {ButtonGroupContext} from './ButtonGroup';
const IconContainer = styled.div({
width: 0,
zIndex: 1,
display: 'inline-flex',
alignItems: 'center',
pointerEvents: 'none',
});
IconContainer.displayName = 'ButtonGroupChain:IconContainer';
const ButtonGroupChainContainer = styled.div<{iconSize: number}>((props) => ({
display: 'inline-flex',
marginLeft: 10,
'&:first-child>*:not(:first-child):nth-child(odd)': {
paddingLeft: props.iconSize + 6,
},
'&:first-child>*': {
borderRightStyle: 'none',
borderLeftStyle: 'none',
},
'&:first-child>:first-child': {
borderLeftStyle: 'solid',
},
'&:first-child>:last-child': {
borderRightStyle: 'solid',
},
}));
IconContainer.displayName = 'ButtonGroupChain:ButtonGroupChainContainer';
type Props = {
/**
* Children.
*/
children: React.ReactNode;
/**
* Size of the button seperator icon in pixels.
*/
iconSize: 8 | 10 | 12 | 16 | 18 | 20 | 24 | 32;
/**
* Name of the icon seperating the buttons. Defaults to 'chevron-right'.
*/
icon?: string;
};
/**
* Groups a series of buttons together with
* a right-chevron icon to seperate them.
* Used to create a navigation heirarchy.
*
* ```jsx
* <ButtonGroupChain iconSize={12}>
* <Button>One</Button>
* <Button>Two</Button>
* <Button>Three</Button>
* </ButtonGroupChain>
* ```
*
* @deprecated use Layout.Horizontal with flags: gap pad wrap
*/
export default function ButtonGroupChain({children, iconSize, icon}: Props) {
return (
<ButtonGroupContext.Provider value>
<ButtonGroupChainContainer iconSize={iconSize}>
{React.Children.map(children, (child, idx) => {
if (idx === 0) {
return child;
}
return (
<>
<IconContainer>
<Glyph name={icon || 'chevron-right'} size={iconSize} />
</IconContainer>
{child}
</>
);
})}
</ButtonGroupChainContainer>
</ButtonGroupContext.Provider>
);
}