[Fix #1785] Handle timeout for network failure in utils.utils/http-get and http-post
Signed-off-by: Julien Eluard <julien.eluard@gmail.com>
This commit is contained in:
parent
1b5b6e33b4
commit
27e777d1bd
|
@ -48,7 +48,8 @@
|
|||
"rn-snoopy/stream/filter",
|
||||
"rn-snoopy/stream/buffer",
|
||||
"react-native/Libraries/vendor/emitter/EventEmitter",
|
||||
"react-native-background-timer"
|
||||
"react-native-background-timer",
|
||||
"react-native-fetch-polyfill"
|
||||
],
|
||||
"imageDirs": [
|
||||
"resources/images"
|
||||
|
|
|
@ -8088,6 +8088,11 @@
|
|||
"resolved": "https://registry.npmjs.org/react-native-fcm/-/react-native-fcm-10.0.3.tgz",
|
||||
"integrity": "sha1-HcU47YifkLelvB0FMMxRbmmwnow="
|
||||
},
|
||||
"react-native-fetch-polyfill": {
|
||||
"version": "1.1.2",
|
||||
"resolved": "https://registry.npmjs.org/react-native-fetch-polyfill/-/react-native-fetch-polyfill-1.1.2.tgz",
|
||||
"integrity": "sha1-JWtaCr14zEmS96fPglQ9ovISSnM="
|
||||
},
|
||||
"react-native-fs": {
|
||||
"version": "2.8.1",
|
||||
"resolved": "https://registry.npmjs.org/react-native-fs/-/react-native-fs-2.8.1.tgz",
|
||||
|
|
|
@ -53,6 +53,7 @@
|
|||
"react-native-crypto": "2.1.1",
|
||||
"react-native-dialogs": "0.0.20",
|
||||
"react-native-fcm": "10.0.3",
|
||||
"react-native-fetch-polyfill": "1.1.2",
|
||||
"react-native-fs": "2.8.1",
|
||||
"react-native-http": "github:tradle/react-native-http#834492d",
|
||||
"react-native-http-bridge": "github:status-im/react-native-http-bridge",
|
||||
|
|
|
@ -30,3 +30,4 @@
|
|||
(def snoopy-buffer (js/require "rn-snoopy/stream/buffer"))
|
||||
(def EventEmmiter (js/require "react-native/Libraries/vendor/emitter/EventEmitter"))
|
||||
(def background-timer (.-default (js/require "react-native-background-timer")))
|
||||
(def fetch (.-default (js/require "react-native-fetch-polyfill")))
|
||||
|
|
|
@ -109,21 +109,18 @@
|
|||
|
||||
(re-frame/reg-fx
|
||||
:http-post
|
||||
(fn [{:keys [action data success-event-creator failure-event-creator]}]
|
||||
(utils/http-post action
|
||||
data
|
||||
#(re-frame/dispatch (success-event-creator %))
|
||||
#(re-frame/dispatch (failure-event-creator %)))))
|
||||
(fn [{:keys [action data success-event-creator failure-event-creator timeout-ms]}]
|
||||
(let [on-success #(re-frame/dispatch (success-event-creator %))
|
||||
on-error #(re-frame/dispatch (failure-event-creator %))
|
||||
opts {:timeout-ms timeout-ms}]
|
||||
(utils/http-post action data on-success on-error opts))))
|
||||
|
||||
(defn- http-get [{:keys [url response-validator success-event-creator failure-event-creator]}]
|
||||
(if response-validator
|
||||
(utils/http-get url
|
||||
response-validator
|
||||
#(re-frame/dispatch (success-event-creator %))
|
||||
#(re-frame/dispatch (failure-event-creator %)))
|
||||
(utils/http-get url
|
||||
#(re-frame/dispatch (success-event-creator %))
|
||||
#(re-frame/dispatch (failure-event-creator %)))))
|
||||
(defn- http-get [{:keys [url response-validator success-event-creator failure-event-creator timeout-ms]}]
|
||||
(let [on-success #(re-frame/dispatch (success-event-creator %))
|
||||
on-error #(re-frame/dispatch (failure-event-creator %))
|
||||
opts {:valid-response? response-validator
|
||||
:timeout-ms timeout-ms}]
|
||||
(utils/http-get url on-success on-error opts)))
|
||||
|
||||
(re-frame/reg-fx
|
||||
:http-get
|
||||
|
|
|
@ -119,7 +119,7 @@
|
|||
:success-event :update-transactions-success
|
||||
:error-event :update-transactions-fail}
|
||||
:db (-> db
|
||||
(clear-error-message :transaction-update)
|
||||
(clear-error-message :transactions-update)
|
||||
(assoc-in [:wallet :transactions-loading?] true))})))
|
||||
|
||||
(handlers/register-handler-db
|
||||
|
@ -219,3 +219,8 @@
|
|||
:wallet/update-gas-price-success
|
||||
(fn [db [_ price edit?]]
|
||||
(assoc-in db [:wallet (if edit? :edit :send-transaction) :gas-price] price)))
|
||||
|
||||
(handlers/register-handler-fx
|
||||
:wallet/show-error
|
||||
(fn []
|
||||
{:show-error (i18n/label :t/wallet-error)}))
|
||||
|
|
|
@ -38,3 +38,9 @@
|
|||
:<- [:wallet]
|
||||
(fn [wallet]
|
||||
(:balance-loading? wallet)))
|
||||
|
||||
(reg-sub :wallet/error-message?
|
||||
:<- [:wallet]
|
||||
(fn [wallet]
|
||||
(or (get-in wallet [:errors :balance-update])
|
||||
(get-in wallet [:errors :prices-update]))))
|
||||
|
|
|
@ -159,3 +159,8 @@
|
|||
(reg-sub :wallet.transactions/filters
|
||||
(fn [db]
|
||||
(get-in db [:wallet.transactions :filters])))
|
||||
|
||||
(reg-sub :wallet.transactions/error-message?
|
||||
:<- [:wallet]
|
||||
(fn [wallet]
|
||||
(get-in wallet [:errors :transactions-update])))
|
||||
|
|
|
@ -102,8 +102,11 @@
|
|||
(defview history-list []
|
||||
(letsubs [transactions-history-list [:wallet.transactions/transactions-history-list]
|
||||
transactions-loading? [:wallet.transactions/transactions-loading?]
|
||||
error-message? [:wallet.transactions/error-message?]
|
||||
filter-data [:wallet.transactions/filters]]
|
||||
[react/view components.styles/flex
|
||||
(when error-message?
|
||||
(re-frame/dispatch [:wallet/show-error]))
|
||||
[list/section-list {:sections (map #(update-transactions % filter-data) transactions-history-list)
|
||||
:render-fn render-transaction
|
||||
:empty-component [react/text {:style styles/empty-text}
|
||||
|
|
|
@ -58,7 +58,7 @@
|
|||
(defn current-tokens [visible-tokens network]
|
||||
(filter #(contains? visible-tokens (:symbol %)) (tokens/tokens-for (ethereum/network->chain-keyword network))))
|
||||
|
||||
(defn- asset-section [network balance visible-tokens prices-loading? balance-loading?]
|
||||
(defn- asset-section [network balance visible-tokens refreshing?]
|
||||
(let [tokens (current-tokens visible-tokens network)
|
||||
assets (map #(assoc % :amount (get balance (:symbol %))) (concat [tokens/ethereum] tokens))]
|
||||
[react/view styles/asset-section
|
||||
|
@ -68,7 +68,7 @@
|
|||
:data assets
|
||||
:render-fn render-asset
|
||||
:on-refresh #(re-frame/dispatch [:update-wallet (map :symbol tokens)])
|
||||
:refreshing (boolean (or prices-loading? balance-loading?))}]]))
|
||||
:refreshing refreshing?}]]))
|
||||
|
||||
(defview wallet []
|
||||
(letsubs [network [:network]
|
||||
|
@ -76,11 +76,16 @@
|
|||
visible-tokens [:wallet.settings/visible-tokens]
|
||||
portfolio-value [:portfolio-value]
|
||||
prices-loading? [:prices-loading?]
|
||||
balance-loading? [:wallet/balance-loading?]]
|
||||
balance-loading? [:wallet/balance-loading?]
|
||||
error-message? [:wallet/error-message?]]
|
||||
[react/view {:style components.styles/flex}
|
||||
(when error-message?
|
||||
(re-frame/dispatch [:wallet/show-error]))
|
||||
[toolbar-view]
|
||||
[react/view components.styles/flex
|
||||
[total-section portfolio-value]
|
||||
[list/action-list actions
|
||||
{:container-style styles/action-section}]
|
||||
[asset-section network balance visible-tokens prices-loading? balance-loading?]]]))
|
||||
[asset-section network balance visible-tokens
|
||||
(and (or prices-loading? balance-loading?)
|
||||
(not error-message?))]]]))
|
||||
|
|
|
@ -1,8 +1,12 @@
|
|||
(ns status-im.utils.utils
|
||||
(:require [status-im.constants :as const]
|
||||
[status-im.i18n :as i18n]
|
||||
[clojure.string :as str]
|
||||
[status-im.react-native.js-dependencies :as rn-dependencies]))
|
||||
|
||||
;; Default HTTP request timeout ms
|
||||
(def http-request-default-timeout-ms 3000)
|
||||
|
||||
(defn show-popup [title content]
|
||||
(.alert (.-Alert rn-dependencies/react-native)
|
||||
title
|
||||
|
@ -38,15 +42,18 @@
|
|||
{:text (i18n/label :t/yes) :onPress on-accept})))))
|
||||
|
||||
(defn http-post
|
||||
"Performs an HTTP POST request"
|
||||
([action data on-success]
|
||||
(http-post action data on-success nil))
|
||||
([action data on-success on-error]
|
||||
(-> (.fetch js/window
|
||||
(str const/server-address action)
|
||||
(http-post action data on-success on-error nil))
|
||||
([action data on-success on-error {:keys [timeout-ms] :as opts}]
|
||||
(-> (rn-dependencies/fetch (str const/server-address action)
|
||||
(clj->js {:method "POST"
|
||||
:headers {:accept "application/json"
|
||||
:content-type "application/json"}
|
||||
:body (.stringify js/JSON (clj->js data))}))
|
||||
:body (.stringify js/JSON (clj->js data))
|
||||
:timeout (or timeout-ms http-request-default-timeout-ms)}))
|
||||
(.then (fn [response]
|
||||
(.text response)))
|
||||
(.then (fn [text]
|
||||
|
@ -58,11 +65,14 @@
|
|||
(show-popup "Error" (str error))))))))
|
||||
|
||||
(defn http-get
|
||||
"Performs an HTTP GET request"
|
||||
([url on-success on-error]
|
||||
(http-get url nil on-success on-error))
|
||||
([url valid-response? on-success on-error]
|
||||
(-> (.fetch js/window url (clj->js {:method "GET"
|
||||
:headers {"Cache-Control" "no-cache"}}))
|
||||
(http-get url on-success on-error nil))
|
||||
([url on-success on-error {:keys [valid-response? timeout-ms] :as opts}]
|
||||
(-> (rn-dependencies/fetch url
|
||||
(clj->js {:method "GET"
|
||||
:headers {"Cache-Control" "no-cache"}
|
||||
:timeout (or timeout-ms http-request-default-timeout-ms)}))
|
||||
(.then (fn [response]
|
||||
(let [ok? (.-ok response)
|
||||
ok?' (if valid-response?
|
||||
|
|
Loading…
Reference in New Issue