mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 16:41:08 +08:00
32 lines
1017 B
TypeScript
32 lines
1017 B
TypeScript
/// <reference types="webpack-env" />
|
|
|
|
// @ts-expect-error (Converted from ts-ignore)
|
|
import global from 'global';
|
|
|
|
const { window, EventSource } = global;
|
|
|
|
export * from './globals';
|
|
|
|
export * from './public-types';
|
|
export * from './public-api';
|
|
export * from './framework-api';
|
|
|
|
// TODO: disable HMR and do full page loads because of customElements.define
|
|
if (module && module.hot && module.hot.decline) {
|
|
module.hot.decline();
|
|
|
|
// forcing full reloads for customElements as elements can only be defined once per page
|
|
const hmr = new EventSource('__webpack_hmr');
|
|
hmr.addEventListener('message', function fullPageReload(event: { data: string }) {
|
|
try {
|
|
// Only care for built events. Heartbeats are not parsable so we ignore those
|
|
const { action } = JSON.parse(event.data);
|
|
if (action === 'built') {
|
|
window.location.reload();
|
|
}
|
|
} catch (error) {
|
|
// Most part we only get here from the data in the server-sent event not being parsable which is ok
|
|
}
|
|
});
|
|
}
|