mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 09:21:05 +08:00
FIX bugs with event source & removing the fileName & error handling & loading of refs
This commit is contained in:
parent
f769b3478d
commit
182244f13d
@ -54,7 +54,10 @@ export const getSourceType = (source: string) => {
|
||||
) {
|
||||
return 'local';
|
||||
}
|
||||
return 'external';
|
||||
if (source) {
|
||||
return 'external';
|
||||
}
|
||||
return null;
|
||||
};
|
||||
|
||||
export const defaultMapper: Mapper = (b, a) => {
|
||||
@ -82,7 +85,7 @@ export const init: ModuleFn = ({ store, provider }) => {
|
||||
findRef: (source) => {
|
||||
const refs = api.getRefs();
|
||||
|
||||
return Object.values(refs).find(({ url }) => `${url}/iframe.html`.match(source));
|
||||
return Object.values(refs).find(({ url }) => url.match(source));
|
||||
},
|
||||
changeRefVersion: (id, url) => {
|
||||
const previous = api.getRefs()[id];
|
||||
@ -156,6 +159,7 @@ export const init: ModuleFn = ({ store, provider }) => {
|
||||
};
|
||||
|
||||
const refs = provider.getConfig().refs || {};
|
||||
|
||||
const initialState: SubState['refs'] = refs;
|
||||
|
||||
Object.entries(refs).forEach(([k, v]) => {
|
||||
|
@ -319,11 +319,15 @@ export const init: ModuleFn = ({
|
||||
// if it's a ref, we need to map the incoming stories to a prefixed version, so it cannot conflict with others
|
||||
case 'external': {
|
||||
const ref = fullAPI.findRef(source);
|
||||
fullAPI.setRef(ref.id, { ...ref, ...data }, true);
|
||||
break;
|
||||
|
||||
if (ref) {
|
||||
fullAPI.setRef(ref.id, { ...ref, ...data }, true);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
// if we couldn't find the source, something risky happened, we ignore the input, and log a warning
|
||||
// eslint-disable-next-line no-fallthrough
|
||||
default: {
|
||||
logger.warn('received a SET_STORIES frame that was not configured as a ref');
|
||||
break;
|
||||
|
@ -170,8 +170,13 @@ export class PostmsgTransport {
|
||||
? `<span style="color: #FF4785">${event.type}</span>`
|
||||
: `<span style="color: #FFAE00">${event.type}</span>`;
|
||||
|
||||
event.source =
|
||||
source || this.config.page === 'preview' ? rawEvent.origin : getEventSourceUrl(rawEvent);
|
||||
if (source) {
|
||||
const { origin, pathname } = new URL(source, document.location);
|
||||
event.source = origin + pathname;
|
||||
} else {
|
||||
event.source =
|
||||
this.config.page === 'preview' ? rawEvent.origin : getEventSourceUrl(rawEvent);
|
||||
}
|
||||
|
||||
if (!event.source) {
|
||||
pretty.error(
|
||||
|
@ -55,8 +55,8 @@ export default ({
|
||||
refs
|
||||
? new VirtualModulePlugin({
|
||||
[path.resolve(path.join(configDir, `generated-refs.js`))]: refsTemplate.replace(
|
||||
'{{refs}}',
|
||||
refs
|
||||
`'{{refs}}'`,
|
||||
JSON.stringify(refs)
|
||||
),
|
||||
})
|
||||
: null,
|
||||
|
Loading…
x
Reference in New Issue
Block a user