1

我正在使用 code-push 来更新我的 react-native 应用程序。如果我进行更新,我不想每次都将其上传到 App Store,我想将其直接推送到用户设备。

它工作正常,应用程序已更新,但如果更新成功,我会尝试显示通知。

文档中,他们这样做如下:

codePush.sync({ updateDialog: true },
  (status) => {
      switch (status) {
          case codePush.SyncStatus.DOWNLOADING_PACKAGE:
              // Show "downloading" modal
              break;
          case codePush.SyncStatus.INSTALLING_UPDATE:
              // Hide "downloading" modal
              break;
      }
  },
  ({ receivedBytes, totalBytes, }) => {
    /* Update download modal progress */
  }
);

如果更新成功,我正在尝试更新状态并显示模式,并带有一个按钮以在单击时将其隐藏。因此我的代码如下:

constructor() {
        super();
        this.state = {
            modalVisible: false,
            status: ""
        }
    }

    componentDidMount() {
        let self = this;
        codePush.sync({
                updateDialog: true,
                installMode: codePush.InstallMode.IMMEDIATE
            }, (status) => {
                switch (status) {
                    case codePush.SyncStatus.UPDATE_INSTALLED:
                        self.setState({modalVisible: true});
                        break;
                }
            },
            ({receivedBytes, totalBytes,}) => {
                /* Update download modal progress */
                self.setState({status: "Downloaded " + receivedBytes + " of " + totalBytes});
            }
        );
    }

    renderUpdateNotificationModal(){
        return (
            <Modal
                animationType={"slide"}
                transparent={false}
                visible={this.state.modalVisible}
                onRequestClose={() => {alert("Modal has been closed.")}}
            >
                <View style={{marginTop: 22}}>
                    <View>
                        <Text>Updated</Text>
                        <TouchableHighlight onPress={() => {this.setState({modalVisible: false})}}>
                            <Text>OK</Text>
                        </TouchableHighlight>
                    </View>
                </View>
            </Modal>
        )
    }

    render() {
        return (
            <View style={styles.container}>
                {this.renderUpdateNotificationModal()}
                <Text style={styles.welcome}>
                    Welcome!
                </Text>
                <Text style={styles.instructions}>
                    To get started, edit index.ios.js
                </Text>
                <Text style={styles.instructions}>
                    Press Cmd+R to reload,{'\n'}
                    Cmd+D or shake for dev menu
                </Text>
                <Text style={{fontSize: 18, marginTop: 15, color: "blue", textAlign: "center"}}>{this.state.status}</Text>
            </View>
        );
    }

但问题是模态显示几秒钟然后消失,没有点击按钮。

由于状态设置为true,然后在我几秒钟后变为false

case codePush.SyncStatus.UPDATE_INSTALLED:
     self.setState({modalVisible: true});
     break;

知道如何解决吗?

4

1 回答 1

0

我在加载页面中尝试使用 Codepush 时遇到了同样的问题,我的问题是 codePush 的 updateDialog 显示在下一个屏幕上。因为 codePush.sync 是一个 Promise 函数,你可以使用它的 'then' 功能,它将确保以正确的顺序完成你的工作。

如果您想使用 CodePush,此演示可能会有所帮助。您可以在 codePushStatusDidChange() 中相应地更改组件的状态。

于 2018-07-24T08:07:24.263 回答