Coder Social home page Coder Social logo

Comments (2)

ksrb avatar ksrb commented on June 5, 2024 1

Yeah it was on my end the conditional wasn't being flipped at the right time leading to the component never properly mounting 😅 thanks closing issue.

Specifically I was relying on something in the handler to change the conditional, and since it was never being mounted obviously the conditional would never change.

from resium.

rot1024 avatar rot1024 commented on June 5, 2024

I tried, but could not reproduce the issue...

test

The code is based on src/stories/ScreenSpaceEventHandler.tsx,

import React from "react";
import { ScreenSpaceEventType } from "cesium";
import { storiesOf } from "@storybook/react";

import Viewer from "../Viewer";
import ScreenSpaceEvent from "../ScreenSpaceEvent";
import ScreenSpaceEventHandler from "../ScreenSpaceEventHandler";

export default () => {
  storiesOf("ScreenSpaceEventHandler", module)
    .add("default", () => (
      <Viewer full>
        <Test />
      </Viewer>
    ));
};

class Test extends React.Component<{}, { condition: boolean }> {
  public state = { condition: false };

  public render() {
    return (
      <div>
        <button
          style={{ top: 0, left: 0, zIndex: 1000, position: "absolute" }}
          onClick={this.handleClick}>
          toggle condition
        </button>
        <Test2 condition={this.state.condition} />
      </div>
    );
  }

  private handleClick = () => {
    this.setState({ condition: !this.state.condition });
  };
}

class Test2 extends React.Component<{ condition: boolean }> {
  public render() {
    if (this.props.condition) {
      return null;
    }

    return (
      <div>
        <ScreenSpaceEventHandler>
          <ScreenSpaceEvent action={this.handleLeftClick} type={ScreenSpaceEventType.LEFT_CLICK} />
        </ScreenSpaceEventHandler>
      </div>
    );
  }

  private handleLeftClick = () => {
    console.log("hogehoge");
  };
}

from resium.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.