FIX bugs with event source & removing the fileName & error handling & loading of refs

This commit is contained in:
Norbert de Langen 2020-04-21 16:38:28 +02:00
parent f769b3478d
commit 182244f13d
No known key found for this signature in database
GPG Key ID: 976651DA156C2825
4 changed files with 21 additions and 8 deletions

View File

@ -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]) => {

View File

@ -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;

View File

@ -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(

View File

@ -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,