Don't try to access the devtools hook if we are cross-origin

This throws an exception and kills storybook in non-standard cases (like Chromatic's live mode). cc @ndelangen -- I think you saw this.
This commit is contained in:
Tom Coleman 2018-04-25 11:19:40 +10:00
parent 18f65211b8
commit e894c33056

View File

@ -1,8 +1,12 @@
import { window } from 'global';
if (window.parent !== window) {
// eslint-disable-next-line no-underscore-dangle
window.__REACT_DEVTOOLS_GLOBAL_HOOK__ = window.parent.__REACT_DEVTOOLS_GLOBAL_HOOK__;
try {
// eslint-disable-next-line no-underscore-dangle
window.__REACT_DEVTOOLS_GLOBAL_HOOK__ = window.parent.__REACT_DEVTOOLS_GLOBAL_HOOK__;
} catch (error) {
// The above line can throw if we do not have access to the parent frame -- i.e. cross origin
}
}
window.STORYBOOK_REACT_CLASSES = {};
window.STORYBOOK_ENV = 'react';