react-use/stories/useSearchParam.story.tsx
Anton Zinovyev 2832b7a37e
chore: move all stories from src directory. (#715)
chore: clean tsconfig.json;

feat: updated webpack config to export a function to achieve full-control mode, instead of deprecated Extend Mode;
2019-12-09 23:36:40 +03:00

32 lines
929 B
TypeScript

import { storiesOf } from '@storybook/react';
import * as React from 'react';
import { useSearchParam } from '../src';
import ShowDocs from './util/ShowDocs';
const Demo = () => {
const edit = useSearchParam('edit');
return (
<div>
<div>edit: {edit || '🤷‍♂️'}</div>
<div>
<button onClick={() => history.pushState({}, '', location.pathname + '?edit=123')}>
Edit post 123 (?edit=123)
</button>
</div>
<div>
<button onClick={() => history.pushState({}, '', location.pathname + '?edit=999')}>
Edit post 999 (?edit=999)
</button>
</div>
<div>
<button onClick={() => history.pushState({}, '', location.pathname)}>Close modal</button>
</div>
</div>
);
};
storiesOf('Sensors|useSearchParam', module)
.add('Docs', () => <ShowDocs md={require('../docs/useSearchParam.md')} />)
.add('Demo', () => <Demo />);