Skip to content
This repository was archived by the owner on Dec 16, 2021. It is now read-only.
This repository was archived by the owner on Dec 16, 2021. It is now read-only.

componentDidMount is not fired for portals #512

@1999

Description

@1999

I'm having a very awkward issue at the moment: my render() function returns a portal:

render() {
    const {
      children,
      overrideStyle = {},
    } = this.props;

    const portal = (
      <PortalContainer>
        <Text innerRef={this.textRef}>
          <Overlay style={overrideStyle}>
            <OverlayContent>
              {children}
            </OverlayContent>
          </Overlay>
        </Text>
      </PortalContainer>
    );

    return createPortal(portal, this.domNode);
  }

But when the component is rendered for the first time "render" is called, but "componentDidMount" doesn't get executed. On the second render everything works fine and component actually renders and componentDidMount is fired. Is here anything I can help?

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions