Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 | 1x 1x 1x 1x 1x 1x | import React from 'react';
import Resizer, { IResizerProps } from './Resizer';
import { Meta, Story } from '@storybook/react';
export default {
title: 'Utility/Resizer',
component: Resizer,
parameters: {
docs: {
description: {
component: Resizer.peek.description,
},
},
},
} as Meta;
/* Basic */
export const Basic: Story<IResizerProps> = (args) => {
return (
<Resizer>
{(width, height) => (
<div>
<div>Width: {width}</div>
<div>Height: {height}</div>
</div>
)}
</Resizer>
);
};
/* With Flex */
export const WithFlex: Story<IResizerProps> = (args) => {
return (
<section
style={{
display: 'flex',
}}
>
<div>Other content</div>
<Resizer
style={{
flexGrow: 1,
overflow: 'hidden',
}}
>
{(width) => (
<div
style={{
width,
height: width * 0.3,
border: '1px solid black',
}}
>
<div>
When using Resizer within a flexed container, its critical to add{' '}
<code>flexGrow: 1, overflow: 'hidden'</code> to its styles so it
will behave correctly.
</div>
<div>Width: {width}</div>
<div>Height: {width * 0.3}</div>
</div>
)}
</Resizer>
</section>
);
};
|