storybook/lib/components/src/bar/separator.js
Michael Shilman ba8142f13c Merge pull request #5650 from storybooks/v5-style-qa
Styling bug fixes, story updates, and more QA
2019-02-19 19:06:57 +08:00

43 lines
954 B
JavaScript

import React, { Fragment } from 'react';
import { styled } from '@storybook/theming';
export const interleaveSeparators = list =>
list.reduce(
(acc, item, index) =>
item ? (
<Fragment key={item.id || item.key || `f-${index}`}>
{acc}
{/* eslint-disable-next-line react/no-array-index-key */}
{index > 0 ? <Separator key={`s-${index}`} /> : null}
{item.render() || item}
</Fragment>
) : (
acc
),
null
);
export const Separator = styled.span(
({ theme }) => ({
width: 1,
height: 24,
background: theme.appBorderColor,
marginTop: 8,
}),
({ force }) =>
force
? {}
: {
'& + &': {
display: 'none',
},
'&:first-of-type': {
display: 'none',
},
'&:last-of-type': {
display: 'none',
},
}
);
Separator.displayName = 'Separator';