Ghost/ghost/admin/app/modifiers/react-render.js
2023-04-14 16:08:48 +04:00

34 lines
912 B
JavaScript

import Modifier from 'ember-modifier';
import React from 'react';
import ReactDOM from 'react-dom';
import {createRoot} from 'react-dom/client';
import {registerDestructor} from '@ember/destroyable';
// make globals available for any pulled in UMD components
// - avoids external components needing to bundle React and running into multiple version errors
window.React = React;
window.ReactDOM = ReactDOM;
export default class ReactRenderModifier extends Modifier {
constructor(owner, args) {
super(owner, args);
registerDestructor(this, this.cleanup);
}
modify(element, [reactComponent], {props}) {
if (!this.root) {
this.root = createRoot(element);
}
this.root.render(React.createElement(reactComponent, {...props}));
}
cleanup = () => {
if (!this.root) {
return;
}
this.root.unmount();
};
}