ckeditor5のドキュメントに記載されているテキスト配置プラグインのインストール手順に従いました。
以下のように配置プラグインを追加しました
'@ckeditor/ckeditor5-alignment/src/alignment' からアライメントをインポートします。ClassicEditor .create(this.element.nativeElement, { プラグイン: [配置], ツールバー: ['配置'] })
以下のエラーが表示されます。
TypeError: Cannot read property 'getAttribute' of null
at IconView._updateXMLContent (iconview.js:100)
at IconView.render (iconview.js:76)
at IconView.on (observablemixin.js:241)
at IconView.fire (emittermixin.js:196)
at IconView.(anonymous function) [as render] (webpack-internal:///./node_modules/@ckeditor/ckeditor5-utils/src/observablemixin.js:249:16)
at ViewCollection.on (viewcollection.js:68)
at ViewCollection.fire (emittermixin.js:196)
at ViewCollection.add (collection.js:182)
at ButtonView.render (buttonview.js:160)
at ButtonView.on (observablemixin.js:241)
誰かがこれに取り組む方法を手伝ってもらえますか? ドキュメントに記載されている手順に従いましたが、まだこの問題が発生しています。
ckeditor の完全な angular5 コンポーネント コードは次のとおりです。
import { Component, OnInit, OnDestroy, NgZone, ElementRef, ChangeDetectionStrategy, forwardRef } from '@angular/core';
import * as ClassicEditor from '@ckeditor/ckeditor5-build-classic';
import Alignment from '@ckeditor/ckeditor5-alignment/src/alignment';
import { ControlValueAccessor, NG_VALUE_ACCESSOR } from '@angular/forms';
@Component({
selector: 'ck-editor',
template: '<textarea></textarea>',
styleUrls: ['./ck-editor.component.scss'],
providers: [{
provide: NG_VALUE_ACCESSOR,
useExisting: forwardRef(() => CkEditorComponent),
multi: true
}],
changeDetection: ChangeDetectionStrategy.OnPush
})
export class CkEditorComponent implements ControlValueAccessor, OnInit, OnDestroy {
onChange: Function;
onTouched: Function;
model: string;
editor;
constructor(private ngZone: NgZone,
private element: ElementRef) {
}
ngOnInit() {
ClassicEditor
.create(this.element.nativeElement, {
plugins: [Alignment],
toolbar: [
'heading', '|', 'bulletedList', 'numberedList', 'alignment', 'undo', 'redo'
]
})
.then(editor => {
this.editor = editor;
editor.model.document.on('change', () => {
if (editor.model.document.differ.getChanges().length > 0) {
this.ngZone.run(() => this.onChange(editor.getData()));
}
});
editor.model.document.on('blur', () => {
this.ngZone.run(() => this.onTouched());
});
this.editor.setData(this.model ? this.model : '');
})
.catch(error => {
console.error(error);
});
}
ngOnDestroy() {
if (this.editor) {
return this.editor.destroy();
}
}
writeValue(value) {
this.model = value;
}
registerOnChange(fn) {
this.onChange = fn;
}
registerOnTouched(fn) {
this.onTouched = fn;
}
}