mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 21:41:21 +08:00
Merge pull request #5428 from storybooks/add-preview-stories
Added iframe stories
This commit is contained in:
commit
fe825ec0e1
@ -1,5 +1,35 @@
|
||||
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||||
|
||||
exports[`Storyshots Components|Preview/Iframe errorStory 1`] = `
|
||||
<iframe
|
||||
allowfullscreen=""
|
||||
id="iframe"
|
||||
src="/iframe.html?id=core-errors--story-throws-exception"
|
||||
style="width:100%;height:500px"
|
||||
title="Missing"
|
||||
/>
|
||||
`;
|
||||
|
||||
exports[`Storyshots Components|Preview/Iframe missingStory 1`] = `
|
||||
<iframe
|
||||
allowfullscreen=""
|
||||
id="iframe"
|
||||
src="/iframe.html?id=missing"
|
||||
style="width:100%;height:500px"
|
||||
title="Missing"
|
||||
/>
|
||||
`;
|
||||
|
||||
exports[`Storyshots Components|Preview/Iframe workingStory 1`] = `
|
||||
<iframe
|
||||
allowfullscreen=""
|
||||
id="iframe"
|
||||
src="/iframe.html?id=ui-panel--default"
|
||||
style="width:100%;height:500px"
|
||||
title="Missing"
|
||||
/>
|
||||
`;
|
||||
|
||||
exports[`Storyshots Core|Events Force re-render 1`] = `
|
||||
.emotion-0 {
|
||||
padding: 0 10px;
|
||||
|
39
lib/components/src/preview/iframe.stories.js
Normal file
39
lib/components/src/preview/iframe.stories.js
Normal file
@ -0,0 +1,39 @@
|
||||
import React from 'react';
|
||||
|
||||
import { IFrame } from './iframe';
|
||||
|
||||
export default {
|
||||
Component: IFrame,
|
||||
title: 'Components|Preview/Iframe',
|
||||
};
|
||||
|
||||
const style = { width: '100%', height: '500px' };
|
||||
|
||||
export const workingStory = () => (
|
||||
<IFrame
|
||||
id="iframe"
|
||||
title="Missing"
|
||||
src="/iframe.html?id=ui-panel--default"
|
||||
allowFullScreen
|
||||
style={style}
|
||||
/>
|
||||
);
|
||||
|
||||
export const missingStory = () => (
|
||||
<IFrame id="iframe" title="Missing" src="/iframe.html?id=missing" allowFullScreen style={style} />
|
||||
);
|
||||
|
||||
export const errorStory = () => (
|
||||
<IFrame
|
||||
id="iframe"
|
||||
title="Missing"
|
||||
src="/iframe.html?id=core-errors--story-throws-exception"
|
||||
allowFullScreen
|
||||
style={style}
|
||||
/>
|
||||
);
|
||||
// We need to disable this one in Chromatic because the screenshot includes the uploaded URL sadly:
|
||||
// eg. https://www.chromaticqa.com/snapshot?appId=5a375b97f4b14f0020b0cda3&id=5c52edb4323f9000249aae72
|
||||
errorStory.parameters = {
|
||||
chromatic: { disable: true },
|
||||
};
|
Loading…
x
Reference in New Issue
Block a user