Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
591 views
in Technique[技术] by (71.8m points)

angular8 - Angular 8x - Directive dynamic parent not occupies the parent dimensions

I am appending the component with dynamic element i create. it appending correctly. but the dynamic element is not resizing to component dimensions. as a general it's not aware of it's child. any one help me to fix this issue?

here in the image, the red bordered element one is I am creating. but the width is not extended with component underneath.

Dynamic Element

source code on browser:

Browser source code

my directive:

import { DOCUMENT } from "@angular/common";
import {
  Directive,
  ElementRef,
  EventEmitter,
  HostListener,
  Inject,
  Input,
  OnInit,
  Renderer2,
  ViewContainerRef,
  ViewChild,
} from "@angular/core";
import { Subscription } from "rxjs";
import { ComponentLoaderService } from "../services/component-loader.service";
export interface LoaderConfig {
  componentName: string;
  action: string;
  data: any;
}
@Directive({
  selector: "[ibo--ComponentLoader]",
})
export class ComponentLoaderDirective implements OnInit {
  @Input() loaderConfig: LoaderConfig;
  childElement;
  elementId = "host-wrap";
  rectParent;

  fileExport = new EventEmitter();
  actionMenu = new EventEmitter();

  emitterSub: Subscription;

  @ViewChild("container", { static: false })
  viewContainerRef: ViewContainerRef;

  private _loaderActive = false;

  constructor(
    private componentLoader: ComponentLoaderService,
    private elementRef: ElementRef,
    private renderer: Renderer2,
    @Inject(DOCUMENT) private document,
    private vr: ViewContainerRef
  ) {}

  ngOnInit() {
    this.childElement = document.createElement("div");
    this.childElement.setAttribute("class", "tooltip");
    this.childElement.setAttribute("id", "tooltip");

    this.childElement.style.display = "inline-block";
    this.childElement.style.position = "absolute";
    this.childElement.style.border = "1px solid red";
  }

  @HostListener("mouseenter") mouseover() {
    if (this.loaderConfig.action === "mouseenter") {
      this.embedComponent();
    } else {
      return;
    }
  }

  @HostListener("mouseleave") mouseleave() {
    if (this.loaderConfig.action === "mouseenter") {
      this.removeComponent();
    } else return;
  }

  @HostListener("click") onClick() {
    this.removeElement();
    if (this.loaderConfig.action === "click") {
      this.renderer.appendChild(window.document.body, this.childElement);
      this.toggleLoader();
    } else {
      return;
    }
  }

  removeElement() {
    const childrens = document.querySelectorAll(".tooltip");
    console.log("removeElement", childrens, childrens.length);
    if (childrens.length) {
      childrens.forEach((el) => el.remove());
    }
  }

  embedComponent() {
    const componentRef = this.componentLoader.loadComponent(
      this.loaderConfig.componentName
    );

    if (componentRef) {
      this.vr.clear();
      const ref = this.vr.createComponent(componentRef);
      ref.instance["data"] = this.loaderConfig.data;
      this.subscribetoComponentEvents(ref);
      this.renderer.appendChild(this.childElement, ref.location.nativeElement);
    }

  }
}

Thanks in advance.

question from:https://stackoverflow.com/questions/65661664/angular-8x-directive-dynamic-parent-not-occupies-the-parent-dimensions

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share

2.1m questions

2.1m answers

63 comments

56.7k users

...