![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
@ngxd/core
Advanced tools
Best way to quickly use Dynamic Components with Angular
Use like NgComponentOutlet
but with @Input/@Output
auto bindings:
<!-- host component -->
<app-dynamic
<!-- dynamic component -->
[ngxComponentOutlet]="component"
<!-- regular input -->
[entity]="entity"
<!-- regular output -->
(action)="onAction($event)">
</app-dynamic>
Feature | NgxComponentOutlet | ComponentFactoryResolver | NgComponentOutlet |
---|---|---|---|
Friendliness | ⭐⭐⭐ | ⭐ | ⭐⭐ |
Dynamic Components | ✅ | ✅ | ✅ |
AOT support | ✅ | ✅ | ✅ |
Reactivity | ✅ | ✅ | ✅ |
Injector | ✅ | ✅ | ✅ |
NgModule | ✅ | ✅ | ✅ |
projectionNodes | ✅ | ✅ | ✅ |
Component Access | ✅ | ✅ | ❌ |
Lifecycle OnChanges | ✅ | ⭕️ manually | ❌ |
Binding @Input() | ✅ | ⭕️ manually | ❌ |
Binding @Output() | ✅ | ⭕️ manually | ❌ |
Activate Event | ✅ | ⭕️ manually | ❌ |
Deactivate Event | ✅ | ⭕️ manually | ❌ |
List of heroes
Table of heroes with table schema form
ngx-component-outlet
:npm install --save ngx-component-outlet
yarn add ngx-component-outlet
import { NgxComponentOutletModule } from 'ngx-component-outlet';
@NgModule({
declarations: [ AppComponent ],
imports: [ NgxComponentOutletModule.forRoot() ],
bootstrap: [ AppComponent ]
})
export class AppModule {}
@Component({
selector: 'app-dynamic-comp-a',
template: `I'm Dynamic Component A. Hello, {{ name }}!`
})
export class CompAComponent {
@Input() name: string;
}
@Component({
selector: 'app-dynamic-comp-b',
template: `I'm Dynamic Component B. Hello, {{ name }}!`
})
export class CompBComponent {
@Input() name: string;
}
declarations
and entryComponents
:@NgModule({
...
declarations: [ ..., CompAComponent, CompBComponent ],
entryComponents: [ CompAComponent, CompBComponent ]
})
export class AppModule {}
@Component({
selector: 'app-host-for-dynamic',
template: ''
})
export class HostComponent {
@Input() name: string;
}
declarations
:@NgModule({
...
declarations: [ ..., HostComponent ],
...
})
export class AppModule {}
import { Component } from '@angular/core';
@Component({
selector: 'app-root',
template: `
<app-host-for-dynamic [ngxComponentOutlet]="componentA"
[name]="'Angular 5!'"></app-host-for-dynamic>
<app-host-for-dynamic [ngxComponentOutlet]="componentB"
[name]="'Angular 6?'"></app-host-for-dynamic>
`
})
export class AppComponent {
componentA = CompAComponent;
componentB = CompBComponent;
}
import { NgxComponentOutletModule } from 'ngx-component-outlet';
@NgModule({
imports: [ NgxComponentOutletModule.forRoot() ],
declarations: [ AppComponent, CompAComponent, CompBComponent, HostComponent ],
entryComponents: [ CompAComponent, CompBComponent ],
bootstrap: [ AppComponent ]
})
export class AppModule {}
Input | Type | Default | Required | Description |
---|---|---|---|---|
[ngxComponentOutlet] | Type<any> | n/a | yes | |
[ngxComponentOutletInjector] | Injector | n/a | no | |
[ngxComponentOutletContent] | any[][] | n/a | no | |
[ngxComponentOutletNgModuleFactory] | NgModuleFactory<any> | n/a | no |
Output | Type | Description |
---|---|---|
(ngxComponentOutletActivate) | any | |
(ngxComponentOutletDeactivate) | any |
Here is a demo repository showing ngx-component-outlet and Angular in action.
FAQs
NGXD is a dynamic pattern + library for Angular
The npm package @ngxd/core receives a total of 3,208 weekly downloads. As such, @ngxd/core popularity was classified as popular.
We found that @ngxd/core demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.