I'm working with Angular 2 and Ionic 2 and I would like to get a property from a parent component.
So my parent composent is a class named "ServicesPage", and my child component is named "AddonCell".
ServicesPage.html
<ion-content>
<ul *ngIf='savedAddons'>
<addon-cell [type]="addon" *ngFor="let addon of savedAddons"></addon-cell>
</ul>
</ion-content>
ServicesPage.ts
@Component({
selector: 'page-services',
templateUrl: 'services.html'
})
export class ServicesPage {
// [...]
refreshInstalledAddons() : void {
console.log("[+] Getting properties of all addon-cell ...");
// I would like a for loop here to get all AddonCell objects
// and access properties like : myAddon.myVar
}
}
AddonCell.ts
@Component({
selector: 'addon-cell',
template: `<div #target></div>`
})
export class AddonCell {
@ViewChild('target', {read: ViewContainerRef}) target;
@Input() type;
myVar = false; // <---- Trying to get this variable
//[...]
}
UPDATE
AddonModule
// Angular core component
import { NgModule } from '@angular/core';
import { AddonCell } from './components/system/common/cell.component';
// Importing and exporting all addons
export { MeteoAddon } from './components/meteo/meteo.addon';
import { MeteoAddon } from './components/meteo/meteo.addon';
import { MeteoPagesModule } from './components/meteo/pages/meteo.module';
// Creating an array containg addons class names
// Please note, it's used for further instanciations
export let classNameArray = ["MeteoAddon"];
export let addonsMap = {
'MeteoAddon' : MeteoAddon };
@NgModule({
declarations: [
AddonCell,
MeteoAddon],
imports: [ MeteoPagesModule ], // Importing all addon's pages
entryComponents: [ MeteoAddon ],
exports: [
AddonCell,
MeteoAddon]
})
export class AddonModule {}
Note: savedAddons is an array containing string instance name.
So the main problem is how to get all the instanciated object AddonCell in order to access properties ?