Ghost/ghost/admin/app/components/react-mobiledoc-editor.js
Kevin Ansfield bd194f4ccc Fixed loading of react editor in production
no issue

- replaced use of `GhostAdmin` global when it doesn't exist in production by using the `Ember` global and picking the correct namespace
2022-07-28 13:37:20 +01:00

89 lines
2.2 KiB
JavaScript

import React, {Suspense} from 'react';
class ErrorHandler extends React.Component {
state = {
hasError: false
};
static getDerivedStateFromError() {
return {hasError: true};
}
render() {
if (this.state.hasError) {
return (
<p>Loading has failed. Try refreshing the browser!</p>
);
}
return this.props.children;
}
}
const fetchKoenig = function () {
let status = 'pending';
let response;
const fetchPackage = async () => {
if (window.koenigEditor) {
return window.koenigEditor.default;
}
// the removal of `https://` and it's manual addition to the import template string is
// required to work around ember-auto-import complaining about an unknown dynamic import
// during the build step
const GhostAdmin = window.Ember.Namespace.NAMESPACES.find(ns => ns.name === 'ghost-admin');
const url = GhostAdmin.__container__.lookup('service:config').get('editor.url').replace('https://', '');
await import(`https://${url}`);
return window.koenigEditor.default;
};
const suspender = fetchPackage().then(
(res) => {
status = 'success';
response = res;
},
(err) => {
status = 'error';
response = err;
}
);
const read = () => {
switch (status) {
case 'pending':
throw suspender;
case 'error':
throw response;
default:
return response;
}
};
return {read};
};
const editorResource = fetchKoenig();
const Koenig = (props) => {
const KoenigEditor = editorResource.read();
return <KoenigEditor {...props} />;
};
const ReactMobiledocEditor = (props) => {
return (
<ErrorHandler>
<Suspense fallback={<p>Loading editor...</p>}>
<Koenig
mobiledoc={props.mobiledoc}
didCreateEditor={props.didCreateEditor}
onChange={props.onChange}
/>
</Suspense>
</ErrorHandler>
);
};
export default ReactMobiledocEditor;