forked from EVOgeek/Vmeda.Online
123 lines
5.1 KiB
TypeScript
123 lines
5.1 KiB
TypeScript
// (C) Copyright 2015 Martin Dougiamas
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
import {
|
|
Component, Input, OnInit, OnChanges, OnDestroy, ViewContainerRef, ViewChild, ComponentRef, SimpleChange, ChangeDetectorRef,
|
|
ElementRef, Optional
|
|
} from '@angular/core';
|
|
import { NavController } from 'ionic-angular';
|
|
import { CoreCompileProvider } from '../../providers/compile';
|
|
import { BehaviorSubject } from 'rxjs';
|
|
|
|
/**
|
|
* This component has a behaviour similar to $compile for AngularJS. Given an HTML code, it will compile it so all its
|
|
* components and directives are instantiated.
|
|
*
|
|
* IMPORTANT: Use this component only if it is a must. It will create and compile a new component and module everytime this
|
|
* component is used, so it can slow down the app.
|
|
*
|
|
* This component has its own module to prevent circular dependencies. If you want to use it,
|
|
* you need to import CoreCompileHtmlComponentModule.
|
|
*
|
|
* You can provide some Javascript code (as text) to be executed inside the component. The context of the javascript code (this)
|
|
* will be the component instance created to compile the template. This means your javascript code can interact with the template.
|
|
* The component instance will have most of the providers so you can use them in the javascript code. E.g. if you want to use
|
|
* CoreAppProvider, you can do it with "this.CoreAppProvider".
|
|
*/
|
|
@Component({
|
|
selector: 'core-compile-html',
|
|
template: '<ng-container #dynamicComponent></ng-container>'
|
|
})
|
|
export class CoreCompileHtmlComponent implements OnChanges, OnDestroy {
|
|
@Input() text: string; // The HTML text to display.
|
|
@Input() javascript: string; // The Javascript to execute in the component.
|
|
@Input() jsData: any; // Data to pass to the fake component.
|
|
|
|
// Get the container where to put the content.
|
|
@ViewChild('dynamicComponent', { read: ViewContainerRef }) container: ViewContainerRef;
|
|
|
|
protected componentRef: ComponentRef<any>;
|
|
protected element;
|
|
componentObservable: BehaviorSubject<any>; // An observable to notify observers when the component is instantiated.
|
|
|
|
constructor(protected compileProvider: CoreCompileProvider, protected cdr: ChangeDetectorRef, element: ElementRef,
|
|
@Optional() protected navCtrl: NavController) {
|
|
this.element = element.nativeElement;
|
|
this.componentObservable = new BehaviorSubject<any>(null);
|
|
}
|
|
|
|
/**
|
|
* Detect changes on input properties.
|
|
*/
|
|
ngOnChanges(changes: { [name: string]: SimpleChange }): void {
|
|
if ((changes.text || changes.javascript) && this.text) {
|
|
// Create a new component and a new module.
|
|
this.compileProvider.createAndCompileComponent(this.text, this.getComponentClass()).then((factory) => {
|
|
// Destroy previous components.
|
|
this.componentRef && this.componentRef.destroy();
|
|
|
|
if (factory) {
|
|
// Create the component.
|
|
this.componentRef = this.container.createComponent(factory);
|
|
this.componentObservable.next(this.componentRef.instance);
|
|
}
|
|
});
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Component destroyed.
|
|
*/
|
|
ngOnDestroy(): void {
|
|
this.componentRef && this.componentRef.destroy();
|
|
}
|
|
|
|
/**
|
|
* Get a class that defines the dynamic component.
|
|
*
|
|
* @return {any} The component class.
|
|
*/
|
|
protected getComponentClass(): any {
|
|
// tslint:disable: no-this-assignment
|
|
const compileInstance = this;
|
|
|
|
// Create the component, using the text as the template.
|
|
return class CoreCompileHtmlFakeComponent implements OnInit {
|
|
constructor() {
|
|
// If there is some javascript to run, prepare the instance.
|
|
if (compileInstance.javascript) {
|
|
compileInstance.compileProvider.injectLibraries(this);
|
|
}
|
|
|
|
// Always add these elements, they could be needed on component init (componentObservable).
|
|
this['ChangeDetectorRef'] = compileInstance.cdr;
|
|
this['NavController'] = compileInstance.navCtrl;
|
|
this['componentContainer'] = compileInstance.element;
|
|
|
|
// Add the data passed to the component.
|
|
for (const name in compileInstance.jsData) {
|
|
this[name] = compileInstance.jsData[name];
|
|
}
|
|
}
|
|
|
|
ngOnInit(): void {
|
|
// If there is some javascript to run, do it now.
|
|
if (compileInstance.javascript) {
|
|
compileInstance.compileProvider.executeJavascript(this, compileInstance.javascript);
|
|
}
|
|
}
|
|
};
|
|
}
|
|
}
|