mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 06:31:19 +08:00
escape the url of the addon file for the browser
This commit is contained in:
parent
ca7dd1dc32
commit
662e2510da
@ -4,16 +4,16 @@ test('sanatizePath', () => {
|
||||
const addonsDir = '/Users/username/Projects/projectname/storybook';
|
||||
const text = 'demo text';
|
||||
const file = {
|
||||
path: '/Users/username/Projects/projectname/storybook/node_modules/@storybook/addon-x/dist/manager.mjs',
|
||||
path: '/Users/username/Projects/projectname/storybook/node_modules/@storybook/addon-x+y/dist/manager.mjs',
|
||||
contents: Uint8Array.from(Array.from(text).map((letter) => letter.charCodeAt(0))),
|
||||
text,
|
||||
};
|
||||
const { location, url } = sanatizePath(file, addonsDir);
|
||||
|
||||
expect(location).toMatchInlineSnapshot(
|
||||
`"/Users/username/Projects/projectname/storybook/node-modules-storybook-addon-x-dist-manager.mjs"`
|
||||
`"/Users/username/Projects/projectname/storybook/node_modules/@storybook/addon-x+y/dist/manager.mjs"`
|
||||
);
|
||||
expect(url).toMatchInlineSnapshot(
|
||||
`"./sb-addons/node-modules-storybook-addon-x-dist-manager.mjs"`
|
||||
`"./sb-addons/node_modules/%40storybook/addon-x%2By/dist/manager.mjs"`
|
||||
);
|
||||
});
|
||||
|
@ -3,7 +3,10 @@ import { writeFile, ensureFile } from 'fs-extra';
|
||||
import { join } from 'path';
|
||||
import { Compilation } from '../types';
|
||||
|
||||
export async function readOrderedFiles(addonsDir: string, outputFiles: Compilation['outputFiles'] | undefined) {
|
||||
export async function readOrderedFiles(
|
||||
addonsDir: string,
|
||||
outputFiles: Compilation['outputFiles'] | undefined
|
||||
) {
|
||||
const files = await Promise.all(
|
||||
outputFiles?.map(async (file) => {
|
||||
// convert deeply nested paths to a single level, also remove special characters
|
||||
@ -20,11 +23,8 @@ export async function readOrderedFiles(addonsDir: string, outputFiles: Compilati
|
||||
}
|
||||
|
||||
export function sanatizePath(file: OutputFile, addonsDir: string) {
|
||||
const filePath = file.path
|
||||
.replace(addonsDir, '')
|
||||
.replace(/[^a-z0-9\-.]+/g, '-')
|
||||
.replace(/^-/, '/');
|
||||
const filePath = file.path.replace(addonsDir, '');
|
||||
const location = join(addonsDir, filePath);
|
||||
const url = `./sb-addons${filePath}`;
|
||||
const url = `./sb-addons${filePath.split('/').map(encodeURIComponent).join('/')}`;
|
||||
return { location, url };
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user