Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Conditional View does not properly update when the state condition changes #300

Open
schenkty opened this issue Mar 7, 2019 · 1 comment

Comments

@schenkty
Copy link

schenkty commented Mar 7, 2019

  • syr-cli version: latest
  • syr version: 1.7.2

Relevant code.

import { Component, Render, View, Text, Button } from '../../index';

import { Styles } from './style';

class BBApp extends Component {
  constructor() {
    super();
    this.state.paymentOpen = false;
  }

  render() {
    console.log('render executed. payment status: ', this.state.paymentOpen);
    if (this.state.paymentOpen === true) {
      return this.CloseView()
    } else {
      return this.ShowView()
    }
  }

  CloseView() {
   return <View style={Styles.payView}>
      <Button
        onPress={() => {
          this.closePayment();
        }}
        style={Styles.closeButton}>
        Close
      </Button>
    </View>;
  }

  ShowView() {
    return <View style={Styles.mainView}>
      <Button
        onPress={() => {
          this.showPayment();
        }}
        style={Styles.payButton}>
        Pay
      </Button>
    </View>;
  }

  showPayment() {
    console.log('show payment');
    this.setState({
      paymentOpen: true,
    });
  }

  closePayment() {
    console.log('hide payment');
    this.setState({
      paymentOpen: false,
    });
  }
}

Render(BBApp);

What you did:
Pressed the "Pay" Button

What happened:
Browser console reflected that the this.state.paymentOpen updated properly but the view does not change accordingly.

On Safari, I don't see any error but on Google Chrome, I have the following error:

Uncaught TypeError: Cannot read property 'appendChild' of undefined
    at raster.syncState (raster.js:144)
    at raster.update (raster.js:68)
    at raster.parseAST (raster.js:17)
    at domraster.sendMessage (index.js:25)
    at domraster.render (index.js:20)
    at RasterManager.render (rastermanager.js:30)
    at BBApp.Component.setState (component.js:38)
    at BBApp.showPayment (pay.js:46)
    at Button.onPress (pay.js:36)
    at bubbleEvent (events.js:105)
@dmikey
Copy link
Collaborator

dmikey commented Mar 7, 2019

Thanks for opening this, we'll get this fixed right away!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants