0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-04-01 02:41:39 -05:00

Hooked up editor registration in react editor experiment

no issue

- use the `didCreateEditor` hook to register the editor instance as we do with our Ember version of Koenig
- allows for initial handling of focus control for moving cursor between title and body inputs
- disabled card cleanup call because the react editor does not yet have cards or the custom `cleanup()` method
This commit is contained in:
Kevin Ansfield 2022-07-27 11:57:40 +01:00
parent a4a4136c2f
commit 7a9435d524
5 changed files with 8 additions and 4 deletions

View file

@ -37,6 +37,7 @@
<KoenigReactEditor
@mobiledoc={{@body}}
@didCreateEditor={{this.onEditorCreated}}
@onChange={{@onBodyChange}}
/>

View file

@ -119,7 +119,7 @@ export default class GhKoenigEditorReactComponent extends Component {
_setupEditor(koenig) {
let component = this;
this.koenigEditor = koenig.editor;
this.koenigEditor = koenig;
// focus the title when pressing SHIFT+TAB
this.koenigEditor.registerKeyCommand({

View file

@ -9,6 +9,7 @@ export default class KoenigReactEditor extends ReactComponent {
element,
<ReactMobiledocEditor
mobiledoc={this.args.mobiledoc}
didCreateEditor={this.args.didCreateEditor}
onChange={this.args.onChange}
/>
);

View file

@ -77,6 +77,7 @@ const ReactMobiledocEditor = (props) => {
<Suspense fallback={<p>Loading editor...</p>}>
<Koenig
mobiledoc={props.mobiledoc}
didCreateEditor={props.didCreateEditor}
onChange={props.onChange}
/>
</Suspense>

View file

@ -290,9 +290,10 @@ export default class ReactEditorController extends Controller {
// - empty cards may be left in draft posts due to autosave occuring
// whilst an empty card is present then the user closing the browser
// or refreshing the page
if (this.post.isDraft) {
this._koenig.cleanup();
}
// TODO: not yet implemented in react editor
// if (this.post.isDraft) {
// this._koenig.cleanup();
// }
}
@action