FIX ref getSourceType for paths with */index.html

* Fixes #10324
* Visiting <storybook-path>/index.html?path=/story/* will return "local" in getSourceType and will not throw an exception by going to 'external' switch case block.
This commit is contained in:
Will Farley 2020-04-14 01:54:18 -07:00
parent 5f6480aec5
commit 544572d40a

View File

@ -47,7 +47,11 @@ export type RefUrl = string;
export const getSourceType = (source: string) => {
const { origin, pathname } = location;
if (source === origin || source === `${origin + pathname}iframe.html`) {
if (
source === origin ||
source === `${origin + pathname}iframe.html` ||
source === `${origin + pathname.replace(/(?!.*\/).*\.html$/, '')}iframe.html`
) {
return 'local';
}
return 'external';