fix(storyshots): vue3 render with the vue app

This commit is contained in:
Sasanfarrokh 2021-09-05 01:25:52 +04:30
parent 167fb9eef8
commit 949c6317a3
4 changed files with 11 additions and 15 deletions

View File

@ -1,12 +1,14 @@
import * as Vue from 'vue'; import * as Vue from 'vue';
import global from 'global'; import global from 'global';
import dedent from 'ts-dedent'; import dedent from 'ts-dedent';
import { app, activeStoryComponent } from '@storybook/vue3';
const { document } = global; const { document } = global;
// This is cast as `any` to workaround type errors caused by Vue 2 types // This is cast as `any` to workaround type errors caused by Vue 2 types
const { render, h } = Vue as any; const { h } = Vue as any;
let vm: any;
function getRenderedTree(story: any) { function getRenderedTree(story: any) {
const component = story.render(); const component = story.render();
@ -14,20 +16,12 @@ function getRenderedTree(story: any) {
// Vue 3's Jest renderer throws if all of the required props aren't specified // Vue 3's Jest renderer throws if all of the required props aren't specified
// So we try/catch and warn the user if they forgot to specify one in their args // So we try/catch and warn the user if they forgot to specify one in their args
try { activeStoryComponent.value = vnode;
render(vnode, document.createElement('div')); if (!vm) {
} catch (err) { vm = app.mount(document.createElement('div'));
// Jest throws an error when you call `console.error`
// eslint-disable-next-line no-console
console.error(
dedent`
Storyshots encountered an error while rendering Vue 3 story: ${story.id}
Did you remember to define every prop you are using in the story?
`
);
} }
vm.$forceUpdate();
return vnode.el; return vm.$el;
} }
export default getRenderedTree; export default getRenderedTree;

View File

@ -8,6 +8,7 @@ export {
forceReRender, forceReRender,
raw, raw,
app, app,
activeStoryComponent,
} from './preview'; } from './preview';
export * from './preview/types-6-0'; export * from './preview/types-6-0';

View File

@ -117,3 +117,4 @@ export const { forceReRender } = api;
export const { getStorybook } = api.clientApi; export const { getStorybook } = api.clientApi;
export const { raw } = api.clientApi; export const { raw } = api.clientApi;
export const app: ClientApi['app'] = storybookApp; export const app: ClientApi['app'] = storybookApp;
export { activeStoryComponent } from './render';

View File

@ -2,7 +2,7 @@ import dedent from 'ts-dedent';
import { createApp, h, shallowRef, ComponentPublicInstance } from 'vue'; import { createApp, h, shallowRef, ComponentPublicInstance } from 'vue';
import { RenderContext, StoryFnVueReturnType } from './types'; import { RenderContext, StoryFnVueReturnType } from './types';
const activeStoryComponent = shallowRef<StoryFnVueReturnType | null>(null); export const activeStoryComponent = shallowRef<StoryFnVueReturnType | null>(null);
let root: ComponentPublicInstance | null = null; let root: ComponentPublicInstance | null = null;