mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
Merge pull request #14582 from avendiart/next
Storyshots: Preserve authentication information in Storybook URL
This commit is contained in:
commit
6d9079f68f
@ -21,25 +21,39 @@ describe('Construct URL for Storyshots', () => {
|
||||
|
||||
it('can use a url without path and with query params', () => {
|
||||
expect(constructUrl('http://localhost:9001?hello=world', id)).toEqual(
|
||||
'http://localhost:9001/iframe.html?id=somekind--somestory&hello=world'
|
||||
'http://localhost:9001/iframe.html?hello=world&id=somekind--somestory'
|
||||
);
|
||||
});
|
||||
|
||||
it('can use a url without path (buth slash) and with query params', () => {
|
||||
expect(constructUrl('http://localhost:9001/?hello=world', id)).toEqual(
|
||||
'http://localhost:9001/iframe.html?id=somekind--somestory&hello=world'
|
||||
'http://localhost:9001/iframe.html?hello=world&id=somekind--somestory'
|
||||
);
|
||||
});
|
||||
|
||||
it('can use a url with some path and query params', () => {
|
||||
expect(constructUrl('http://localhost:9001/nice-path?hello=world', id)).toEqual(
|
||||
'http://localhost:9001/nice-path/iframe.html?id=somekind--somestory&hello=world'
|
||||
'http://localhost:9001/nice-path/iframe.html?hello=world&id=somekind--somestory'
|
||||
);
|
||||
});
|
||||
|
||||
it('can use a url with some path (slash) and query params', () => {
|
||||
expect(constructUrl('http://localhost:9001/nice-path/?hello=world', id)).toEqual(
|
||||
'http://localhost:9001/nice-path/iframe.html?id=somekind--somestory&hello=world'
|
||||
'http://localhost:9001/nice-path/iframe.html?hello=world&id=somekind--somestory'
|
||||
);
|
||||
});
|
||||
|
||||
it('can use a url with username and password and query params', () => {
|
||||
expect(
|
||||
constructUrl('http://username:password@localhost:9001/nice-path/?hello=world', id)
|
||||
).toEqual(
|
||||
'http://username:password@localhost:9001/nice-path/iframe.html?hello=world&id=somekind--somestory'
|
||||
);
|
||||
});
|
||||
|
||||
it('can use a url with username and query params', () => {
|
||||
expect(constructUrl('http://username@localhost:9001/nice-path/?hello=world', id)).toEqual(
|
||||
'http://username@localhost:9001/nice-path/iframe.html?hello=world&id=somekind--somestory'
|
||||
);
|
||||
});
|
||||
|
||||
|
@ -1,9 +1,8 @@
|
||||
import { URL } from 'url';
|
||||
|
||||
export const constructUrl = (storybookUrl: string, id: string) => {
|
||||
const storyUrl = `/iframe.html?id=${id}`;
|
||||
const { protocol, host, pathname, search } = new URL(storybookUrl);
|
||||
const pname = pathname.replace(/\/$/, ''); // removes trailing /
|
||||
const query = search.replace('?', '&'); // convert leading ? to &
|
||||
return `${protocol}//${host}${pname}${storyUrl}${query}`;
|
||||
const url = new URL(storybookUrl);
|
||||
url.pathname = url.pathname.replace(/\/$/, '').concat('/iframe.html');
|
||||
url.searchParams.append('id', id);
|
||||
return url.toString();
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user