Merge branch 'develop'
This commit is contained in:
commit
188193938e
|
@ -424,7 +424,7 @@ SELECT
|
|||
i.payout_hash AS payout_hash,
|
||||
i.payout_receipt AS payout_receipt,
|
||||
i.updated AS updated,
|
||||
i.winner_login AS winner_login
|
||||
i.winner_login AS winner_login,
|
||||
r.repo AS repo_name,
|
||||
o.address AS owner_address
|
||||
FROM issues i, users o, repositories r
|
||||
|
|
|
@ -182,7 +182,7 @@
|
|||
(reg-event-fx
|
||||
:load-owner-bounties
|
||||
(fn [{:keys [db]} [_]]
|
||||
{:db db
|
||||
{:db (assoc db :owner-bounties-loading? true)
|
||||
:http {:method GET
|
||||
:url "/api/user/bounties"
|
||||
:on-success #(dispatch [:set-owner-bounties %])}}))
|
||||
|
@ -190,7 +190,9 @@
|
|||
(reg-event-db
|
||||
:set-owner-bounties
|
||||
(fn [db [_ issues]]
|
||||
(assoc db :owner-bounties issues)))
|
||||
(assoc db
|
||||
:owner-bounties issues
|
||||
:owner-bounties-loading? false)))
|
||||
|
||||
(defn get-ls-token [db token]
|
||||
(let [login (get-in db [:user :login])]
|
||||
|
|
|
@ -59,8 +59,13 @@
|
|||
|
||||
|
||||
(defn manage-payouts-page []
|
||||
(let [owner-bounties (rf/subscribe [:owner-bounties])]
|
||||
(let [owner-bounties (rf/subscribe [:owner-bounties])
|
||||
owner-bounties-loading? (rf/subscribe [:get-in [:owner-bounties-loading?]])]
|
||||
(fn []
|
||||
(if @owner-bounties-loading?
|
||||
[:container
|
||||
[:div.ui.active.inverted.dimmer
|
||||
[:div.ui.text.loader "Loading"]]]
|
||||
(let [web3 (.-web3 js/window)
|
||||
bounties (vals @owner-bounties)
|
||||
unpaid? #(empty? (:payout_hash %))
|
||||
|
@ -75,4 +80,4 @@
|
|||
[:h3 "New claims"]
|
||||
[claim-list unpaid-bounties]
|
||||
[:h3 "Old claims"]
|
||||
[claim-list paid-bounties]]))))
|
||||
[claim-list paid-bounties]])))))
|
||||
|
|
Loading…
Reference in New Issue