简体   繁体   中英

Wysiwyg with Angular2 and two-way binding

I need advice on how to run a two-way binding using a WYSIWYG editor (in my case specifically CKEditor). Data is loaded into the editor correctly, but when I modify text, so do not show immediately in the model. I tried to manually call events (change, onchange, keypress, keyup, textInput etc ...) and failed.

CKEditor directive:

import {Directive, ElementRef} from "angular2/core";

@Directive({
    selector: 'textarea.cke-editor'
})

export class CkePlugin{
    constructor(elementRef:ElementRef) {
        CKEDITOR.replace(elementRef.nativeElement);
    }
}

Component:

import {Component} from "angular2/core";
import {RouterLink} from 'angular2/router';
import {ProductEntity} from "../../../entity/product.entity";
import {ProductProvider} from "../../../providers/product.provider";
import {CkePlugin} from "../../../plugins/cke.plugin";

@Component({
    templateUrl: '/templates/productshopdetailbasic',
    directives: [RouterLink, CkePlugin]
})

export class ProductShopDetailBasicComponent{

    product:ProductEntity;

    private _productProvider:ProductProvider;

    constructor(productProvider:ProductProvider){
        this.product = productProvider.product;
        this._productProvider = productProvider;
    }
    saveProduct(){
        this._productProvider.saveChanges();
    }
}

Template:

            <div class="form-group">
                <label class="col-sm-2 control-label">Description</label>
                <div class="col-sm-7">
                    <textarea
                    cols="80"
                    id="editor1"
                    name="editor1"
                    rows="10"
                    class="cke-editor"
                    [(ngModel)]="product.productShop.description"
                    ngControl="description" #description="ngForm"
                    >
                    </textarea>
                </div>
            </div>

I found a solution, but not good.If someone thought to do it cleanly, I'm welcome.

import {Directive, ElementRef, EventEmitter, OnInit} from "angular2/core";

@Directive({
    selector: 'textarea.cke',
})

export class CkePlugin implements OnInit{


    private _elementRef:ElementRef;
    private _editor;
    private _valueChange = new EventEmitter();

    constructor(elementRef:ElementRef) {
        this._elementRef = elementRef;
        this._editor = CKEDITOR.replace(this._elementRef.nativeElement);

        //Total s**t
        this._elementRef.nativeElement.style.visibility = 'visible';
        this._elementRef.nativeElement.style.display = 'inline';
        this._elementRef.nativeElement.style.setProperty("display", "inline", "important");
        this._elementRef.nativeElement.style.setProperty("visibility", "visible", "important");
        this._elementRef.nativeElement.style.setProperty("width", "0px", "important");
        this._elementRef.nativeElement.style.setProperty("height", "0px", "important");
        this._elementRef.nativeElement.style.setProperty("background", "none", "important");
        this._elementRef.nativeElement.style.setProperty("border", "none", "important");
        this._elementRef.nativeElement.style.setProperty("opacity", "0", "important");

        this._valueChange.subscribe(res => {

            var focused = document.activeElement;
            $(this._elementRef.nativeElement).focus();
            $(this._elementRef.nativeElement).val(res);
            var textEvent = document.createEvent('TextEvent');
            textEvent.initTextEvent ('textInput', true, true, null, "\0", 9, "en-US");
            this._elementRef.nativeElement.dispatchEvent(textEvent);
            $(focused).focus();

        });
    }

    ngOnInit():any {
        var base = this;
        this._editor.on('change', function(){
            base._valueChange.emit(base._editor.getData());
        });
    }


}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM