Quick intro: Hi, I am part of the team that will be migrating old front end of the web application (js, written in 2012) to Angular framework. We've been suggested to use NativeScript because the app will be used both on desktop and mobile devices and it would be nice to provide native app experience to users.
To the point: One of the functionalities of the app is to edit pages using WYSWIG editor. Currently we use CK Editor for that. I know there is CKEditor support for Angular. But there obviously is no "native" control for this in NativeScript. The idea that I've been thinking of to provide this functionality is to use WebView control of NativeScript and bind editor events using nativescript-webview-interface. From what I've researched so far it appreas that it would be possible to use javascript CKEDitor for example inside plain (not angular template) html file.
But I would highly prefer to be consistent and use CKEditor angular component for both the web view and mobile view.
Question: Would it be possible to reuse angular html based component containing CKEditor inside of WebView? Or in general is it possible to instantiate (and interact wtih) Angular html components inside of NS' WebView? Is Angular 6+ Elements support applicable here?
Thank you in advance.