mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 21:11:07 +08:00
Merge branch 'tech/add-dual-theme-rendering' into tech/revert-theming-greys-flip
This commit is contained in:
commit
10de49977e
42
lib/ui/src/components/sidebar/Tree/ListItem.stories.tsx
Normal file
42
lib/ui/src/components/sidebar/Tree/ListItem.stories.tsx
Normal file
@ -0,0 +1,42 @@
|
||||
import React, { ComponentProps, Fragment } from 'react';
|
||||
|
||||
import { ListItem } from './ListItem';
|
||||
|
||||
export default {
|
||||
component: ListItem,
|
||||
title: 'UI/Sidebar/ListItem',
|
||||
decorators: [(storyFn: any) => <div style={{ width: '240px' }}>{storyFn()}</div>],
|
||||
};
|
||||
|
||||
const baseProps: ComponentProps<typeof ListItem> = {
|
||||
depth: 0,
|
||||
id: 'foo-bar',
|
||||
isComponent: false,
|
||||
isLeaf: false,
|
||||
isExpanded: false,
|
||||
isSelected: false,
|
||||
kind: 'foo',
|
||||
name: 'bar',
|
||||
parameters: {},
|
||||
refId: '',
|
||||
};
|
||||
|
||||
export const Group = () => <ListItem {...baseProps} />;
|
||||
export const Component = () => <ListItem {...baseProps} isComponent />;
|
||||
export const ComponentExpanded = () => <ListItem {...baseProps} isComponent isExpanded />;
|
||||
export const Story = () => <ListItem {...baseProps} isLeaf />;
|
||||
export const StorySelected = () => <ListItem {...baseProps} isLeaf isSelected />;
|
||||
export const WithLongName = () => (
|
||||
<ListItem
|
||||
{...baseProps}
|
||||
name="Holy cow this is a very very very long name to be in this tiny area."
|
||||
/>
|
||||
);
|
||||
export const NestedDepths = () => (
|
||||
<Fragment>
|
||||
<ListItem {...baseProps} depth={1} />
|
||||
<ListItem {...baseProps} depth={2} />
|
||||
<ListItem {...baseProps} depth={3} />
|
||||
<ListItem {...baseProps} depth={4} />
|
||||
</Fragment>
|
||||
);
|
Loading…
x
Reference in New Issue
Block a user