App-html: align types with addon, angular and react

This commit is contained in:
Emilio Martinez 2019-07-11 06:14:11 -07:00
parent 948f507e0a
commit c70c1a9920
6 changed files with 65 additions and 45 deletions

View File

@ -26,6 +26,7 @@
"prepare": "node ../../scripts/prepare.js"
},
"dependencies": {
"@storybook/addons": "5.2.0-alpha.41",
"@storybook/core": "5.2.0-alpha.41",
"common-tags": "^1.8.0",
"core-js": "^3.0.1",

View File

@ -1,34 +1,37 @@
/* eslint-disable prefer-destructuring */
import { start } from '@storybook/core/client';
import { ClientStoryApi } from '@storybook/addons';
import './globals';
import render from './render';
export type StoriesOfArgs = [string, typeof module];
export type LoadFnArgs = [RequireContext, typeof module, string];
export interface RequireContext {
keys(): string[];
(id: string): any;
<T>(id: string): T;
resolve(id: string): string;
}
const { load: coreLoad, clientApi, configApi, forceReRender } = start(render);
export const {
setAddon,
addDecorator,
addParameters,
clearDecorators,
getStorybook,
raw,
} = clientApi;
import { StoryFnHtmlReturnType, IStorybookSection } from './types';
const framework = 'html';
export const storiesOf = (...args: StoriesOfArgs) =>
clientApi.storiesOf(...args).addParameters({ framework });
export const load = (...args: LoadFnArgs) => coreLoad(...args, framework);
export const { configure } = configApi;
export { forceReRender };
interface ClientApi extends ClientStoryApi<StoryFnHtmlReturnType> {
setAddon(addon: any): void;
configure(loaders: () => void, module: NodeModule): void;
getStorybook(): IStorybookSection[];
clearDecorators(): void;
forceReRender(): void;
raw: () => any; // todo add type
load: (req: any, m: NodeModule, framework: string) => void;
}
const api = start(render);
export const storiesOf: ClientApi['storiesOf'] = (kind, m) => {
return (api.clientApi.storiesOf(kind, m) as ReturnType<ClientApi['storiesOf']>).addParameters({
framework,
});
};
export const load: ClientApi['load'] = (...args) => api.load(...args, framework);
export const addDecorator: ClientApi['addDecorator'] = api.clientApi.addDecorator;
export const addParameters: ClientApi['addParameters'] = api.clientApi.addParameters;
export const clearDecorators: ClientApi['clearDecorators'] = api.clientApi.clearDecorators;
export const setAddon: ClientApi['setAddon'] = api.clientApi.setAddon;
export const configure: ClientApi['configure'] = api.configApi.configure;
export const forceReRender: ClientApi['forceReRender'] = api.forceReRender;
export const getStorybook: ClientApi['getStorybook'] = api.clientApi.getStorybook;
export const raw: ClientApi['raw'] = api.clientApi.raw;

View File

@ -1,19 +1,6 @@
import { document, Node } from 'global';
import { stripIndents } from 'common-tags';
export interface ShowErrorArgs {
title: string;
description: string;
}
export interface RenderMainArgs {
storyFn: () => string | Node | undefined;
selectedKind: string;
selectedStory: string;
showMain: () => void;
showError: (args: ShowErrorArgs) => void;
forceRender: boolean;
}
import { RenderMainArgs } from './types';
const rootElement = document.getElementById('root');

View File

@ -0,0 +1,27 @@
import { StoryFn } from '@storybook/addons';
export type StoryFnHtmlReturnType = string | Node;
export interface IStorybookStory {
name: string;
render: () => any;
}
export interface IStorybookSection {
kind: string;
stories: IStorybookStory[];
}
export interface ShowErrorArgs {
title: string;
description: string;
}
export interface RenderMainArgs {
storyFn: () => StoryFn<StoryFnHtmlReturnType>;
selectedKind: string;
selectedStory: string;
showMain: () => void;
showError: (args: ShowErrorArgs) => void;
forceRender: boolean;
}

View File

@ -1,4 +1,5 @@
import packageJson from '../../package.json';
// tslint:disable-next-line: no-var-requires
const packageJson = require('../../package.json');
export default {
packageJson,

View File

@ -1,4 +1,5 @@
declare module '@storybook/core/*';
declare module 'global';
declare module '*.json';
declare module '@storybook/core/client';
declare module '@storybook/core/server';
// will be provided by the webpack define plugin
declare var NODE_ENV: string | undefined;