make the html components more feature complete

This commit is contained in:
Norbert de Langen 2022-10-10 16:40:59 +02:00
parent 35114dd5d8
commit fa9b2aad23
No known key found for this signature in database
GPG Key ID: FD0E78AF9A837762
5 changed files with 39 additions and 5 deletions

View File

@ -31,6 +31,9 @@ export const render: ArgsStoryFn<HtmlFramework> = (args, context) => {
return output;
}
if (typeof Component === 'function') {
return Component(args, context);
}
console.warn(dedent`
Storybook's HTML renderer only supports rendering DOM elements and strings.

View File

@ -1,4 +1,4 @@
import type { StoryContext as DefaultStoryContext } from '@storybook/csf';
import type { ArgsStoryFn, StoryContext as DefaultStoryContext } from '@storybook/csf';
import { parameters } from './config';
export type { RenderContext } from '@storybook/core-client';
@ -21,7 +21,7 @@ export interface ShowErrorArgs {
}
export type HtmlFramework = {
component: string | HTMLElement;
component: string | HTMLElement | ArgsStoryFn<HtmlFramework>;
storyResult: StoryFnHtmlReturnType;
};

View File

@ -1 +1,9 @@
export const Button = `<button>Click me</button>`;
/* eslint-disable no-undef */
export const Button = (args) => {
const button = document.createElement('button');
button.innerHTML = args.children;
button.addEventListener('click', args.onClick);
return button;
};

View File

@ -1 +1,24 @@
export const Form = `<form></form>`;
/* eslint-disable no-undef */
export const Form = ({ complete, value, setValue, onSubmit }) => {
const container = document.createElement('div');
container.innerHTML = `
<form id="interaction-test-form" @submit.prevent="onSubmit">
<label>
Enter Value
<input type="text" data-testid="value" required />
</label>
<button type="submit">Submit</button>
${complete ? '<p>Completed!!</p>' : ''}
</form>
`;
const form = container.querySelector('form');
form.onSubmit = (e) => onSubmit();
const input = container.querySelector('[data-testid="value"]');
input.value = value;
input.onInput = (e) => setValue(e.target.value);
return container;
};

View File

@ -1 +1 @@
export const Pre = `<pre></pre>`;
export const Pre = (args) => `<pre>${JSON.stringify(args, null, 2)}</pre>`;