1

私のアプリは、車の価格が変わるたびにユーザーに通知を送信します。これは、1 時間ごとに実行されるコードで行われます。

コードは次のとおりです。

  backgroundData(){
      BackgroundTimer.setInterval(() => {

        AsyncStorage.getItem('key').then(JSON.parse).then(items => {
          this.setState({value: items});
        })

        if(!this.state.value == 0 || !this.state.value == null){
          const promises = this.state.value.map((item, index) =>
            fetch(`URL/GetDetalhesViatura?CarID=${item[0]}`)
             .then(response => response.json())
          )
          Promise.all(promises).then(viaturas => this.setState({viaturas: flatten(viaturas)}))

          const newItem = []
          this.state.viaturas.map((item, index) =>
            newItem.push([item.Preco, item.CodViatura]),
            this.setState({ stateArray: newItem })
          )

          const newItem2 = []
          this.state.value.map((item, index) =>
            newItem2.push([item[1], item[0]]),
            this.setState({stateArray2: newItem2})
          )

          var results = new Array();
          //CODE TO CHECK ARRAYS FOR DIFFERENT PRICES
          this.setState({results: results})

          if(!this.state.results == 0 || !this.state.results == null){
            const promises = this.state.results.map((item, index) =>
              fetch(`URL/GetDetalhesViatura?CarID=${item[1]}`)
               .then(response => response.json())
            )
            Promise.all(promises).then(viaturas2 => this.setState({viaturas2: flatten(viaturas2)}))

            this.state.viaturas2.map((item, index) =>
              PushNotification.localNotification({
                message: "Notification",
              })
            )
          }
        } else {
          console.log('empty')
        }
      }, 9999999);
  }

まず、AsyncStorage の現在のデータを取得します。データがある場合は、API から新しいデータを取得し、その後、両方のデータを比較して、価格が異なる場合はユーザーに通知を送信します。

問題は、'key'各車 (価格が変更された場合) を新しい価格で更新する必要があることです。そうしないと、アプリがユーザーに通知を送信し続けます。

4

1 に答える 1