mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-03-11 21:27:05 +00:00
79 lines
2.5 KiB
JavaScript
79 lines
2.5 KiB
JavaScript
// Copyright (C) 2017-2023 Smart code 203358507
|
|
|
|
const React = require('react');
|
|
const { useServices } = require('stremio/services');
|
|
|
|
const CoreSuspenderContext = React.createContext(null);
|
|
|
|
CoreSuspenderContext.displayName = 'CoreSuspenderContext';
|
|
|
|
function wrapPromise(promise) {
|
|
let status = 'pending';
|
|
let result;
|
|
const suspender = promise.then(
|
|
(resp) => {
|
|
status = 'success';
|
|
result = resp;
|
|
},
|
|
(error) => {
|
|
status = 'error';
|
|
result = error;
|
|
}
|
|
);
|
|
return {
|
|
read() {
|
|
if (status === 'pending') {
|
|
throw suspender;
|
|
} else if (status === 'error') {
|
|
throw result;
|
|
} else if (status === 'success') {
|
|
return result;
|
|
}
|
|
}
|
|
};
|
|
}
|
|
|
|
const useCoreSuspender = () => {
|
|
return React.useContext(CoreSuspenderContext);
|
|
};
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-empty-function
|
|
const withCoreSuspender = (Component, Fallback = () => { }) => {
|
|
return function withCoreSuspender(props) {
|
|
const { core } = useServices();
|
|
const parentSuspender = useCoreSuspender();
|
|
const [render, setRender] = React.useState(parentSuspender === null);
|
|
const statesRef = React.useRef({});
|
|
const streamsRef = React.useRef({});
|
|
const getState = React.useCallback((model) => {
|
|
if (!statesRef.current[model]) {
|
|
statesRef.current[model] = wrapPromise(core.transport.getState(model));
|
|
}
|
|
|
|
return statesRef.current[model].read();
|
|
}, []);
|
|
const decodeStream = React.useCallback((stream) => {
|
|
if (!streamsRef.current[stream]) {
|
|
streamsRef.current[stream] = wrapPromise(core.transport.decodeStream(stream));
|
|
}
|
|
|
|
return streamsRef.current[stream].read();
|
|
}, []);
|
|
const suspender = React.useMemo(() => ({ getState, decodeStream }), []);
|
|
React.useLayoutEffect(() => {
|
|
if (!render) {
|
|
setRender(true);
|
|
}
|
|
}, []);
|
|
return render ?
|
|
<React.Suspense fallback={<Fallback {...props} />}>
|
|
<CoreSuspenderContext.Provider value={suspender}>
|
|
<Component {...props} />
|
|
</CoreSuspenderContext.Provider>
|
|
</React.Suspense>
|
|
:
|
|
null;
|
|
};
|
|
};
|
|
|
|
module.exports = { withCoreSuspender, useCoreSuspender };
|