mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
43 lines
954 B
JavaScript
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';
|