@storybook/addon-docs
Version:
Document component usage and properties in Markdown
40 lines (36 loc) • 1.04 kB
JavaScript
import React from 'react';
import Vue from 'vue';
// Inspired by https://github.com/egoist/vue-to-react,
// modified to store args as props in the root store
// FIXME get this from @storybook/vue
const COMPONENT = 'STORYBOOK_COMPONENT';
const VALUES = 'STORYBOOK_VALUES';
export const prepareForInline = (storyFn, {
args
}) => {
const component = storyFn();
const el = React.useRef(null); // FIXME: This recreates the Vue instance every time, which should be optimized
React.useEffect(() => {
const root = new Vue({
el: el.current,
data() {
return {
[COMPONENT]: component,
[VALUES]: args
};
},
render(h) {
const children = this[COMPONENT] ? [h(this[COMPONENT])] : undefined;
return h('div', {
attrs: {
id: 'root'
}
}, children);
}
});
return () => root.$destroy();
});
return /*#__PURE__*/React.createElement('div', null, /*#__PURE__*/React.createElement('div', {
ref: el
}));
};