我有一个应用程序,我想在其中使用PhotoEditorSDK组件。他们的角度实现演示表明他们希望我使用
@Component({
selector: 'app-photo-editor',
template: `<ngui-react [reactComponent]="reactComponent" [reactProps]="reactProps"></ngui-react>`,
styleUrls: ['./photo-editor.component.scss']
})
export class PhotoEditorComponent implements OnInit {
@Input() src: string;
image = new Image();
defaultProps = {
license: license,
assets: {
baseUrl: '/assets/photoeditorsdk' // see angular-cli.json for configuraton
},
responsive: true,
style:{
width: '100%',
height: '100%'
},
editor: {
image: this.image
}
};
reactComponent: React.Component = PhotoEditorDesktopUI.ReactComponent;
reactProps: any = {...this.defaultProps};
constructor(private el: ElementRef, private translate: TranslateService) { }
ngOnInit() {
this.image.src = this.src;
}
}
这工作正常。我在我的 Angular 应用程序中获得了渲染的 React 组件。现在我想在渲染对象上注册一个事件监听器。他们的文档声明他们至少公开了一个export
事件:
editor.on('export', (result) => {
console.log('User clicked export, resulting image / dataurl:', result)
})
但我不创造editor
自己。此对象是通过将组件类型传输到 来ngui-react
创建的,并在此指令中创建。如何获取创建的 PhotoEditorSDK 对象,以便在其上放置事件侦听器?
我试过设置事件监听器
this.reactComponent.on(....)
但是PhotoEditorDesktopUI !== this.reactComponent
。reactComponent
是创建PhotoEditorDesktopUI
对象的容器。