Skip to content

Commit

Permalink
[docs] Add storybook for testing
Browse files Browse the repository at this point in the history
NOTE: I strongly prefer storybook over the docs site for testing the animation, as the docs site causes a ton of page jumping that makes it hard to click the button easily
  • Loading branch information
cee-chen committed Oct 4, 2023
1 parent f23dbbf commit 36bc48b
Showing 1 changed file with 102 additions and 0 deletions.
102 changes: 102 additions & 0 deletions src/components/flyout/flyout.stories.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,102 @@
/*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the Elastic License
* 2.0 and the Server Side Public License, v 1; you may not use this file except
* in compliance with, at your election, the Elastic License 2.0 or the Server
* Side Public License, v 1.
*/

import type { Meta, StoryObj } from '@storybook/react';
import React, { useState } from 'react';
import { hideStorybookControls } from '../../../.storybook/utils';

import { EuiButton, EuiText } from '../index';

import { EuiFlyout, EuiFlyoutProps, EuiFlyoutBody } from './index';

const meta: Meta<EuiFlyoutProps> = {
title: 'EuiFlyout',
component: EuiFlyout,
args: {
// Component defaults
type: 'overlay',
side: 'right',
size: 'm',
paddingSize: 'l',
pushMinBreakpoint: 'l',
closeButtonPosition: 'inside',
hideCloseButton: false,
ownFocus: true,
},
};

export default meta;
type Story = StoryObj<EuiFlyoutProps>;

const StatefulFlyout = (props: Partial<EuiFlyoutProps>) => {
const [isOpen, setIsOpen] = useState(true);
return (
<>
<EuiButton size="s" onClick={() => setIsOpen(!isOpen)}>
Toggle flyout
</EuiButton>
{isOpen && <EuiFlyout {...props} onClose={() => setIsOpen(false)} />}
</>
);
};

export const Playground: Story = {
render: ({ ...args }) => <StatefulFlyout {...args} />,
};

export const PushFlyouts: Story = {
render: ({ ...args }) => {
const fillerText = (
<EuiText>
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed eu
condimentum ipsum, nec ornare metus. Sed egestas elit nec placerat
suscipit. Cras pulvinar nisi eget enim sodales fringilla. Aliquam
lobortis lorem at ornare aliquet. Mauris laoreet laoreet mollis.
Pellentesque aliquet tortor dui, non luctus turpis pulvinar vitae.
Nunc ultrices scelerisque erat eu rutrum. Nam at ligula enim. Ut nec
nisl faucibus, euismod neque ut, aliquam nisl. Donec eu ante ut arcu
rutrum blandit nec ac nisl. In elementum id enim vitae aliquam. In
sagittis, neque vitae ultricies interdum, sapien justo efficitur
ligula, sit amet fermentum nisl magna sit amet turpis. Nulla facilisi.
Proin nec viverra mi. Morbi dolor arcu, ornare non consequat et,
viverra dapibus tellus.
</p>
</EuiText>
);
return (
<>
<StatefulFlyout {...args}>
<EuiFlyoutBody>{fillerText}</EuiFlyoutBody>
</StatefulFlyout>
{fillerText}
</>
);
},
args: {
type: 'push',
pushAnimation: false,
pushMinBreakpoint: 'xs',
},
argTypes: hideStorybookControls([
'onClose',
'aria-label',
'as',
'closeButtonPosition',
'closeButtonProps',
'focusTrapProps',
'hideCloseButton',
'includeFixedHeadersInFocusTrap',
'maskProps',
'maxWidth',
'outsideClickCloses',
'ownFocus',
'paddingSize',
'style',
]),
};

0 comments on commit 36bc48b

Please sign in to comment.