mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 23:11:23 +08:00
CHANGE checkRef api to merge stories data & meta data
This commit is contained in:
parent
2c2f23e1ae
commit
0a4d447a67
@ -94,13 +94,13 @@ export const init: ModuleFn = ({ store, provider }) => {
|
||||
const { ok } = response;
|
||||
|
||||
if (ok) {
|
||||
const data: SetRefData = await response.json().catch((error: Error) => ({ error }));
|
||||
|
||||
api.setRef(id, { id, url, ...data });
|
||||
return response.json().catch((error: Error) => ({ error }));
|
||||
}
|
||||
} else {
|
||||
logger.warn('an auto-injected ref threw a cors-error');
|
||||
}
|
||||
|
||||
return false;
|
||||
};
|
||||
|
||||
const [stories, metadata] = await Promise.all([
|
||||
@ -112,9 +112,13 @@ export const init: ModuleFn = ({ store, provider }) => {
|
||||
.then(handler),
|
||||
]);
|
||||
|
||||
if (!stories && !metadata) {
|
||||
api.setRef(id, { id, url, startInjected: true });
|
||||
}
|
||||
api.setRef(id, {
|
||||
id,
|
||||
url,
|
||||
...(stories || {}),
|
||||
...(metadata || {}),
|
||||
startInjected: !stories && !metadata,
|
||||
});
|
||||
},
|
||||
|
||||
getRefs: () => {
|
||||
|
Loading…
x
Reference in New Issue
Block a user