mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-04-01 02:41:39 -05:00
Fixed hooks not being usable inside of react components
no issue - switched to using the `window.ReactDOM` instance that is created when importing the react/react-dom libraries - React stores state/component references inside of the ReactDOM instance when rendering so we need to make sure all renders use the same instance otherwise it loses track of which component a hook belongs to - cleaned up unnecessary vendor shims and `prop-types` import - `react` and `react-dom` vendor shims are unused when using the globals instead of imports - `prop-types` import+shim is not required as it's part of the `@tryghost/koenig-react` build unlike the earlier direct import of `react-mobiledoc-editor`
This commit is contained in:
parent
b1e44dd2f2
commit
a4a4136c2f
6 changed files with 7 additions and 47 deletions
|
@ -1,6 +1,6 @@
|
|||
/* global ReactDOM */
|
||||
import Component from '@glimmer/component';
|
||||
import {action} from '@ember/object';
|
||||
import {createRoot} from 'react-dom/client';
|
||||
|
||||
export default class ReactComponent extends Component {
|
||||
@action
|
||||
|
@ -19,7 +19,7 @@ export default class ReactComponent extends Component {
|
|||
}
|
||||
|
||||
this.elem = element;
|
||||
this.root = createRoot(this.elem);
|
||||
this.root = ReactDOM.createRoot(this.elem);
|
||||
this.root.render(reactComponent);
|
||||
}
|
||||
|
||||
|
|
|
@ -71,7 +71,7 @@ const Koenig = (props) => {
|
|||
return <KoenigEditor {...props} />;
|
||||
};
|
||||
|
||||
export default function ReactMobiledocEditorComponent(props) {
|
||||
const ReactMobiledocEditor = (props) => {
|
||||
return (
|
||||
<ErrorHandler>
|
||||
<Suspense fallback={<p>Loading editor...</p>}>
|
||||
|
@ -82,4 +82,6 @@ export default function ReactMobiledocEditorComponent(props) {
|
|||
</Suspense>
|
||||
</ErrorHandler>
|
||||
);
|
||||
}
|
||||
};
|
||||
|
||||
export default ReactMobiledocEditor;
|
||||
|
|
|
@ -266,7 +266,7 @@ module.exports = function (defaults) {
|
|||
}
|
||||
|
||||
// Support react components
|
||||
// React and ReactDOM globals
|
||||
// adds React and ReactDOM to window.
|
||||
app.import({
|
||||
development: 'node_modules/react/umd/react.development.js',
|
||||
production: 'node_modules/react/umd/react.production.min.js'
|
||||
|
@ -275,12 +275,6 @@ module.exports = function (defaults) {
|
|||
development: 'node_modules/react-dom/umd/react-dom.development.js',
|
||||
production: 'node_modules/react-dom/umd/react-dom.production.min.js'
|
||||
});
|
||||
// support `import React from 'react'`
|
||||
app.import('vendor/shims/react.js');
|
||||
app.import('vendor/shims/react-dom.js');
|
||||
// required dependency for dynamically fetched react-mobiledoc-editor
|
||||
app.import('node_modules/prop-types/prop-types.min.js');
|
||||
app.import('vendor/shims/prop-types.js');
|
||||
|
||||
return app.toTree();
|
||||
};
|
||||
|
|
12
ghost/admin/vendor/shims/prop-types.js
vendored
12
ghost/admin/vendor/shims/prop-types.js
vendored
|
@ -1,12 +0,0 @@
|
|||
(function() {
|
||||
function vendorModule() {
|
||||
'use strict';
|
||||
|
||||
return {
|
||||
'default': self['prop-types'],
|
||||
__esModule: true,
|
||||
};
|
||||
}
|
||||
|
||||
define('prop-types', [], vendorModule);
|
||||
})();
|
12
ghost/admin/vendor/shims/react-dom.js
vendored
12
ghost/admin/vendor/shims/react-dom.js
vendored
|
@ -1,12 +0,0 @@
|
|||
(function() {
|
||||
function vendorModule() {
|
||||
'use strict';
|
||||
|
||||
return {
|
||||
'default': self['react-dom'],
|
||||
__esModule: true,
|
||||
};
|
||||
}
|
||||
|
||||
define('react-dom', [], vendorModule);
|
||||
})();
|
12
ghost/admin/vendor/shims/react.js
vendored
12
ghost/admin/vendor/shims/react.js
vendored
|
@ -1,12 +0,0 @@
|
|||
(function() {
|
||||
function vendorModule() {
|
||||
'use strict';
|
||||
|
||||
return {
|
||||
'default': self['react'],
|
||||
__esModule: true,
|
||||
};
|
||||
}
|
||||
|
||||
define('react', [], vendorModule);
|
||||
})();
|
Loading…
Add table
Reference in a new issue