如何确定插槽中的子代数

时间:2018-12-15 19:35:39

标签: slots stenciljs

是否总有一个命名槽包含多少个孩子?在我的Stencil组件中,我的渲染函数中有类似以下内容:

<div class="content">
  <slot name="content"></slot>
</div>

我想要做的是根据插槽中有多少个子项来对div.content进行不同的样式设置。如果插槽中没有子项,则为div.content的style.display ='none',否则,我将一堆样式应用于div.content,以使子项正确显示在屏幕上。

我尝试做:

  const divEl = root.querySelector( 'div.content' );
  if( divEl instanceof HTMLElement ) {
    const slotEl = divEl.firstElementChild;
    const hasChildren = slotEl && slotEl.childElementCount > 0;
    if( !hasChildren ) {
      divEl.style.display = 'none';
    }
  }

但是,即使我在插槽中插入了物品,这始终会报告hasChildren = false。

1 个答案:

答案 0 :(得分:1)

如果要查询host元素,您将在其中获得所有带槽的内容。这意味着宿主元素的子元素将是将注入插槽中的所有内容。 例如,尝试使用以下代码查看其运行情况:

import {Component, Element, State} from '@stencil/core';

@Component({
  tag: 'my-component',
  styleUrl: 'my-component.css',
  shadow: true
})
export class MyComponent {
  @Element() host: HTMLElement;
  @State() childrenData: any = {};

  componentDidLoad() {
    let slotted = this.host.children;
    this.childrenData = { hasChildren: slotted && slotted.length > 0, numberOfChildren: slotted && slotted.length };
  }

  render() {
    return (
    <div class="content">
      <slot name="content"></slot>
      <div>
        Slot has children: {this.childrenData.hasChildren ? 'true' : 'false'}
      </div>
      <div>
        Number of children: {this.childrenData.numberOfChildren}
      </div>
    </div>);
  }
}