Angular4 dynamically creates components

I want to use Directive as a public instruction. When the mouse clicks on the target element, the content of a component is displayed, and the mouse leaves and disappears.
currently I insert the component with ViewContainerRef when I click.
but the inserted component is side by side with the target element, while I want to insert the target element.
for example, the target element is < span appTxt > < span/ >, and the html of the inserted component is hi < span/ >
when I click. Will become < span appTxt > < span/ > hi < span/ >
but what wo wants is < span appTxt > hi < span/ > < span/ >
@ Directive ({
selector:"[appTxt]",
})
export class TxtCopyDirective {

constructor(private el: ElementRef, private renderer2: Renderer2, public viewContainerRef: ViewContainerRef, private componentFactoryResolver: ComponentFactoryResolver) {

}

@ HostListener ("click", [" $event"]) onclick (event: any) {

this.viewContainerRef.clear();
const componentFactory = this.componentFactoryResolver.resolveComponentFactory();
this.viewContainerRef.createComponent(componentFactory);

}

}


can add a ng-container as a dynamic component container under the host element of the instruction, and ng-container will disappear at render time. The
directive can be modified:

@ViewChild('dy',{read:ViewContainerRef}) dyView:ViewContainerRef
MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-7bf419-1dcee.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-7bf419-1dcee.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?