mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 01:31:06 +08:00
FIX some bs
This commit is contained in:
parent
ebfe200386
commit
c74334065f
@ -1,5 +1,7 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
"baseUrl": ".",
|
||||
"paths": { "*": ["types/*"] },
|
||||
"target": "es5",
|
||||
"module": "esnext",
|
||||
"lib" : ["esnext", "dom"],
|
||||
|
8
examples/cra-ts-kitchen-sink/types/@storybook/react.d.ts
vendored
Normal file
8
examples/cra-ts-kitchen-sink/types/@storybook/react.d.ts
vendored
Normal file
@ -0,0 +1,8 @@
|
||||
export const addDecorator: any;
|
||||
export const addParameters: any;
|
||||
export const configure: any;
|
||||
export const forceReRender: any;
|
||||
export const getStorybook: any;
|
||||
export const raw: any;
|
||||
export const setAddon: any;
|
||||
export const storiesOf: any;
|
@ -1,34 +0,0 @@
|
||||
/* eslint-disable import/no-extraneous-dependencies */
|
||||
// This is allows us to test whether the link works via the actions addon
|
||||
import React, { Children, FunctionComponent, ReactElement, ReactNode } from 'react';
|
||||
import PropTypes from 'prop-types';
|
||||
import { action } from '@storybook/addon-actions';
|
||||
|
||||
const onLinkClick = action('onLinkClick');
|
||||
|
||||
interface StoryLinkWrapperProps {
|
||||
href: string;
|
||||
passHref?: boolean;
|
||||
}
|
||||
|
||||
const StoryLinkWrapper: FunctionComponent<StoryLinkWrapperProps> = ({
|
||||
href,
|
||||
passHref,
|
||||
children,
|
||||
}) => {
|
||||
const child = Children.only(children) as ReactElement;
|
||||
|
||||
return React.cloneElement(child, {
|
||||
href: passHref && href,
|
||||
onClick: (e: React.MouseEvent) => {
|
||||
e.preventDefault();
|
||||
onLinkClick(href);
|
||||
},
|
||||
});
|
||||
};
|
||||
|
||||
StoryLinkWrapper.defaultProps = {
|
||||
passHref: false,
|
||||
};
|
||||
|
||||
export default StoryLinkWrapper;
|
@ -1,10 +1,36 @@
|
||||
import React from 'react';
|
||||
import React, { Children, FunctionComponent, ReactElement, ReactNode } from 'react';
|
||||
import { storiesOf } from '@storybook/react';
|
||||
import { action } from '@storybook/addon-actions';
|
||||
import { WithTooltip } from './WithTooltip';
|
||||
|
||||
import { TooltipLinkList } from './TooltipLinkList';
|
||||
import StoryLinkWrapper from '../StoryLinkWrapper';
|
||||
|
||||
const onLinkClick = action('onLinkClick');
|
||||
|
||||
interface StoryLinkWrapperProps {
|
||||
href: string;
|
||||
passHref?: boolean;
|
||||
}
|
||||
|
||||
const StoryLinkWrapper: FunctionComponent<StoryLinkWrapperProps> = ({
|
||||
href,
|
||||
passHref,
|
||||
children,
|
||||
}) => {
|
||||
const child = Children.only(children) as ReactElement;
|
||||
|
||||
return React.cloneElement(child, {
|
||||
href: passHref && href,
|
||||
onClick: (e: React.MouseEvent) => {
|
||||
e.preventDefault();
|
||||
onLinkClick(href);
|
||||
},
|
||||
});
|
||||
};
|
||||
|
||||
StoryLinkWrapper.defaultProps = {
|
||||
passHref: false,
|
||||
};
|
||||
|
||||
export const links = [
|
||||
{ id: '1', title: 'Link', href: 'http://google.com' },
|
||||
|
Loading…
x
Reference in New Issue
Block a user