Abort controller fallback for IE

This commit is contained in:
Tom Coleman 2021-09-08 15:26:01 +10:00
parent abbd38f69c
commit 2ab56b22d1

View File

@ -370,7 +370,15 @@ export class PreviewWeb<TFramework extends AnyFramework> {
}) {
const { id, applyLoaders, unboundStoryFn, runPlayFunction } = story;
const controller = new AbortController();
// IE11 doesn't support AbortController, so we either need to polyfill or just not support it
const controller = AbortController
? new AbortController()
: {
signal: { aborted: false },
abort() {
this.signal.aborted = true;
},
};
let initialRenderPhase: InitialRenderPhase = 'init';
let renderContext: RenderContext<TFramework>;
const initialRender = async () => {