FIX some bs

This commit is contained in:
Norbert de Langen 2019-05-17 22:03:47 +02:00
parent ebfe200386
commit c74334065f
4 changed files with 38 additions and 36 deletions

View File

@ -1,5 +1,7 @@
{
"compilerOptions": {
"baseUrl": ".",
"paths": { "*": ["types/*"] },
"target": "es5",
"module": "esnext",
"lib" : ["esnext", "dom"],

View 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;

View File

@ -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;

View File

@ -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' },