mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 06:01:22 +08:00
Merge pull request #19563 from joshwooding/tidy-up-vite-mdx-plugin
Tidy up vite mdx-plugin
This commit is contained in:
commit
26973f232d
@ -1,23 +1,13 @@
|
|||||||
import type { Options } from '@storybook/core-common';
|
|
||||||
import type { Plugin } from 'vite';
|
import type { Plugin } from 'vite';
|
||||||
import { createFilter } from 'vite';
|
import { createFilter } from 'vite';
|
||||||
|
|
||||||
const isStorybookMdx = (id: string) => id.endsWith('stories.mdx') || id.endsWith('story.mdx');
|
const isStorybookMdx = (id: string) => id.endsWith('stories.mdx') || id.endsWith('story.mdx');
|
||||||
|
|
||||||
function injectRenderer(code: string, mdx2: boolean) {
|
function injectRenderer(code: string) {
|
||||||
if (mdx2) {
|
return `
|
||||||
return `
|
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
${code}
|
${code}
|
||||||
`;
|
`;
|
||||||
}
|
|
||||||
|
|
||||||
return `
|
|
||||||
/* @jsx mdx */
|
|
||||||
import React from 'react';
|
|
||||||
import { mdx } from '@mdx-js/react';
|
|
||||||
${code}
|
|
||||||
`;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -28,9 +18,7 @@ function injectRenderer(code: string, mdx2: boolean) {
|
|||||||
*
|
*
|
||||||
* @see https://github.com/storybookjs/storybook/blob/next/addons/docs/docs/recipes.md#csf-stories-with-arbitrary-mdx
|
* @see https://github.com/storybookjs/storybook/blob/next/addons/docs/docs/recipes.md#csf-stories-with-arbitrary-mdx
|
||||||
*/
|
*/
|
||||||
export function mdxPlugin(options: Options): Plugin {
|
export function mdxPlugin(): Plugin {
|
||||||
const { features } = options;
|
|
||||||
|
|
||||||
let reactRefresh: Plugin | undefined;
|
let reactRefresh: Plugin | undefined;
|
||||||
const include = /\.mdx?$/;
|
const include = /\.mdx?$/;
|
||||||
const filter = createFilter(include);
|
const filter = createFilter(include);
|
||||||
@ -60,7 +48,7 @@ export function mdxPlugin(options: Options): Plugin {
|
|||||||
|
|
||||||
const mdxCode = String(await compile(src, { skipCsf: !isStorybookMdx(id) }));
|
const mdxCode = String(await compile(src, { skipCsf: !isStorybookMdx(id) }));
|
||||||
|
|
||||||
const modifiedCode = injectRenderer(mdxCode, true);
|
const modifiedCode = injectRenderer(mdxCode);
|
||||||
|
|
||||||
// Hooks in recent rollup versions can be functions or objects, and though react hasn't changed, the typescript defs have
|
// Hooks in recent rollup versions can be functions or objects, and though react hasn't changed, the typescript defs have
|
||||||
const rTransform = reactRefresh?.transform;
|
const rTransform = reactRefresh?.transform;
|
||||||
|
@ -79,7 +79,7 @@ export async function pluginConfig(options: ExtendedOptions) {
|
|||||||
const plugins = [
|
const plugins = [
|
||||||
codeGeneratorPlugin(options),
|
codeGeneratorPlugin(options),
|
||||||
// sourceLoaderPlugin(options),
|
// sourceLoaderPlugin(options),
|
||||||
mdxPlugin(options),
|
mdxPlugin(),
|
||||||
injectExportOrderPlugin,
|
injectExportOrderPlugin,
|
||||||
stripStoryHMRBoundary(),
|
stripStoryHMRBoundary(),
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user