transactions work good.
This commit is contained in:
@@ -5,7 +5,8 @@
|
|||||||
[:a.button {:class class
|
[:a.button {:class class
|
||||||
:on-click (dispatch-event event)} [:span.icon [:i.fa {:class icon}]]])
|
:on-click (dispatch-event event)} [:span.icon [:i.fa {:class icon}]]])
|
||||||
|
|
||||||
(defn sl-icon [{:keys [event icon class]}]
|
(defn sl-icon [{:keys [event icon class] :as params}]
|
||||||
[:a.button {:class class
|
[:a.button (-> params
|
||||||
:on-click (dispatch-event event)}
|
(dissoc :event :icon)
|
||||||
|
(assoc :on-click (dispatch-event event)))
|
||||||
[:span.icon [:span {:class icon :style {:font-weight "400"}}]]])
|
[:span.icon [:span {:class icon :style {:font-weight "400"}}]]])
|
||||||
|
|||||||
@@ -24,7 +24,9 @@
|
|||||||
[goog.string :as gstring]
|
[goog.string :as gstring]
|
||||||
[re-frame.core :as re-frame]
|
[re-frame.core :as re-frame]
|
||||||
[auto-ap.views.pages.transactions.side-bar :as side-bar]
|
[auto-ap.views.pages.transactions.side-bar :as side-bar]
|
||||||
[reagent.core :as reagent]))
|
[reagent.core :as reagent]
|
||||||
|
[auto-ap.status :as status]
|
||||||
|
[vimsical.re-frame.fx.track :as track]))
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -48,34 +50,24 @@
|
|||||||
(fn [db]
|
(fn [db]
|
||||||
(-> db ::transaction-page)))
|
(-> db ::transaction-page)))
|
||||||
|
|
||||||
(re-frame/reg-sub
|
|
||||||
::last-params
|
|
||||||
(fn [db]
|
|
||||||
(::last-params db)))
|
|
||||||
|
|
||||||
(re-frame/reg-sub
|
(re-frame/reg-sub
|
||||||
::params
|
::params
|
||||||
:<- [::last-params]
|
|
||||||
:<- [::subs/client]
|
:<- [::subs/client]
|
||||||
:<- [::side-bar/filter-params]
|
:<- [::side-bar/filter-params]
|
||||||
:<- [::table/table-params]
|
:<- [::table/table-params]
|
||||||
(fn [[last-params client filter-params table-params]]
|
(fn [[client filter-params table-params]]
|
||||||
(let [params (cond-> {}
|
(cond-> {}
|
||||||
client (assoc :client-id (:id client))
|
client (assoc :client-id (:id client))
|
||||||
(seq filter-params) (merge filter-params)
|
(seq filter-params) (merge filter-params)
|
||||||
(seq table-params) (merge table-params))]
|
(seq table-params) (merge table-params))))
|
||||||
(when (not= last-params params)
|
|
||||||
(re-frame/dispatch [::params-change]))
|
|
||||||
params)))
|
|
||||||
|
|
||||||
(re-frame/reg-event-fx
|
(re-frame/reg-event-fx
|
||||||
::params-change
|
::params-change
|
||||||
[with-user (re-frame/inject-cofx ::inject/sub [::params])]
|
[with-user]
|
||||||
(fn [{:keys [user db ] ::keys [params]} _]
|
(fn [{:keys [user db ]} [_ params]]
|
||||||
{:db (-> db
|
{:graphql {:token user
|
||||||
(assoc-in [:status :loading] true)
|
:owns-state {:single ::page}
|
||||||
(assoc-in [::last-params] params))
|
|
||||||
:graphql {:token user
|
|
||||||
:query-obj {:venia/queries [[:transaction_page
|
:query-obj {:venia/queries [[:transaction_page
|
||||||
params
|
params
|
||||||
[[:transactions transaction-read]
|
[[:transactions transaction-read]
|
||||||
@@ -107,7 +99,15 @@
|
|||||||
(re-frame/reg-event-fx
|
(re-frame/reg-event-fx
|
||||||
::unmounted
|
::unmounted
|
||||||
(fn [{:keys [db]} _]
|
(fn [{:keys [db]} _]
|
||||||
{:db (dissoc db ::last-params ::table/table-params ::side-bar/filters ::side-bar/settled-filters ::transaction-page)}))
|
{:db (dissoc db ::table/table-params ::side-bar/filters ::side-bar/settled-filters ::transaction-page)
|
||||||
|
::track/dispose {:id ::params}}))
|
||||||
|
|
||||||
|
(re-frame/reg-event-fx
|
||||||
|
::mounted
|
||||||
|
(fn [{:keys [db]} _]
|
||||||
|
{::track/register {:id ::params
|
||||||
|
:subscription [::params]
|
||||||
|
:event-fn (fn [params] [::params-change params])}}))
|
||||||
|
|
||||||
(re-frame/reg-event-db
|
(re-frame/reg-event-db
|
||||||
::received
|
::received
|
||||||
@@ -149,14 +149,15 @@
|
|||||||
[:button.button.is-outlined.is-danger {:on-click (dispatch-event [::unapprove-all])}
|
[:button.button.is-outlined.is-danger {:on-click (dispatch-event [::unapprove-all])}
|
||||||
"Unapprove all"]]]])
|
"Unapprove all"]]]])
|
||||||
[table/table {:id :transactions
|
[table/table {:id :transactions
|
||||||
:transaction-page (re-frame/subscribe [::transaction-page])
|
:transaction-page @(re-frame/subscribe [::transaction-page])
|
||||||
:status (re-frame/subscribe [::subs/status])}]]))
|
:status @(re-frame/subscribe [::status/single ::page])}]]))
|
||||||
|
|
||||||
|
|
||||||
(defn transactions-page [{:keys [approval-status]}]
|
(defn transactions-page [{:keys [approval-status]}]
|
||||||
(reagent/create-class
|
(reagent/create-class
|
||||||
{:display-name "transaction-page"
|
{:display-name "transaction-page"
|
||||||
:component-will-unmount #(re-frame/dispatch [::unmounted])
|
:component-will-unmount #(re-frame/dispatch [::unmounted])
|
||||||
|
:component-did-mount #(re-frame/dispatch [::mounted])
|
||||||
:reagent-render
|
:reagent-render
|
||||||
(fn []
|
(fn []
|
||||||
(let [{transaction-bar-active? :active?} @(re-frame/subscribe [::forms/form ::edit/form])
|
(let [{transaction-bar-active? :active?} @(re-frame/subscribe [::forms/form ::edit/form])
|
||||||
|
|||||||
@@ -1,14 +1,19 @@
|
|||||||
(ns auto-ap.views.pages.transactions.table
|
(ns auto-ap.views.pages.transactions.table
|
||||||
(:require [auto-ap.subs :as subs]
|
(:require [auto-ap.events :as events]
|
||||||
[auto-ap.views.components.paginator :refer [paginator]]
|
[auto-ap.subs :as subs]
|
||||||
[auto-ap.views.components.sort-by-list :refer [sort-by-list]]
|
[auto-ap.views.components.dropdown
|
||||||
[auto-ap.views.components.sorter :refer [sorted-column]]
|
:refer
|
||||||
[auto-ap.views.components.dropdown :refer [drop-down drop-down-contents]]
|
[drop-down drop-down-contents]]
|
||||||
|
[auto-ap.views.components.grid :as grid]
|
||||||
[auto-ap.views.pages.transactions.form :as edit]
|
[auto-ap.views.pages.transactions.form :as edit]
|
||||||
[auto-ap.events :as events]
|
[auto-ap.views.utils
|
||||||
[auto-ap.views.utils :refer [date->str dispatch-event nf]]
|
:refer
|
||||||
|
[action-cell-width date->str dispatch-event nf]]
|
||||||
[goog.string :as gstring]
|
[goog.string :as gstring]
|
||||||
[re-frame.core :as re-frame]))
|
[re-frame.core :as re-frame]
|
||||||
|
[auto-ap.views.components.buttons :as buttons]
|
||||||
|
[auto-ap.status :as status]))
|
||||||
|
|
||||||
(re-frame/reg-event-fx
|
(re-frame/reg-event-fx
|
||||||
::editing-matches-found
|
::editing-matches-found
|
||||||
(fn [{:keys [db]} [_ which matches]]
|
(fn [{:keys [db]} [_ which matches]]
|
||||||
@@ -26,6 +31,8 @@
|
|||||||
(fn [{:keys [db]} [_ which]]
|
(fn [{:keys [db]} [_ which]]
|
||||||
{:graphql
|
{:graphql
|
||||||
{:token (-> db :user)
|
{:token (-> db :user)
|
||||||
|
:owns-state {:multi ::edits
|
||||||
|
:which (:id which)}
|
||||||
:query-obj {:venia/queries (into [{:query/data [:potential-payment-matches
|
:query-obj {:venia/queries (into [{:query/data [:potential-payment-matches
|
||||||
{:transaction_id (:id which)}
|
{:transaction_id (:id which)}
|
||||||
[:id :memo :check-number [:vendor [:name]]]]}]
|
[:id :memo :check-number [:vendor [:name]]]]}]
|
||||||
@@ -34,7 +41,7 @@
|
|||||||
{:transaction_id (:id which)}
|
{:transaction_id (:id which)}
|
||||||
[:id :note]]}]))}
|
[:id :note]]}]))}
|
||||||
:on-success [::editing-matches-found which]
|
:on-success [::editing-matches-found which]
|
||||||
:on-error [::editing-matches-failed which]}} ))
|
:on-error [::editing-matches-failed which]}}))
|
||||||
|
|
||||||
(re-frame/reg-sub
|
(re-frame/reg-sub
|
||||||
::table-params
|
::table-params
|
||||||
@@ -48,97 +55,58 @@
|
|||||||
{:db (merge table-params params)}))
|
{:db (merge table-params params)}))
|
||||||
|
|
||||||
(defn table [{:keys [id transaction-page status]}]
|
(defn table [{:keys [id transaction-page status]}]
|
||||||
(let [{:keys [sort]} @(re-frame/subscribe [::table-params])
|
(let [selected-client @(re-frame/subscribe [::subs/client])
|
||||||
{:keys [transactions start end count total]} @transaction-page
|
states @(re-frame/subscribe [::status/multi ::edits])]
|
||||||
opc (fn [e] (re-frame/dispatch [::params-changed e]))
|
[grid/grid {:on-params-change (fn [e]
|
||||||
selected-client @(re-frame/subscribe [::subs/client])
|
(re-frame/dispatch [::params-changed e]))
|
||||||
percentage-size (if selected-client "25%" "33%")]
|
:params @(re-frame/subscribe [::table-params])
|
||||||
[:div
|
:status status
|
||||||
[:div.level
|
:column-count (if selected-client 6 7)}
|
||||||
[:div.level-left
|
[grid/controls transaction-page]
|
||||||
[:div.level-item
|
[grid/table {:fullwidth true}
|
||||||
[paginator {:start start :end end :count count :total total
|
[grid/header {}
|
||||||
:on-change opc}]]
|
[grid/row {}
|
||||||
[:div.level-item
|
|
||||||
[sort-by-list {:sort sort
|
|
||||||
:on-change opc}]]]]
|
|
||||||
|
|
||||||
[:table.table.is-fullwidth
|
|
||||||
[:thead
|
|
||||||
[:tr
|
|
||||||
(when-not selected-client
|
(when-not selected-client
|
||||||
[sorted-column {:on-sort opc
|
[grid/sortable-header-cell {:sort-key "client" :sort-name "Client"} "Client"])
|
||||||
:style {:width percentage-size :cursor "pointer"}
|
[grid/sortable-header-cell {:sort-key "bank-account" :sort-name "Bank Account"} "Bank Account"]
|
||||||
:sort-key "client"
|
[grid/sortable-header-cell {:sort-key "vendor" :sort-name "Vendor"} "Vendor"]
|
||||||
:sort-name "Client"
|
[grid/sortable-header-cell {:sort-key "date" :sort-name "Date" :style {:width "8em"}} "Date"]
|
||||||
:sort sort}
|
[grid/sortable-header-cell {:sort-key "amount" :sort-name "Amount" :class "has-text-right" :style {:width "8em"}} "Amount"]
|
||||||
"Client"])
|
[grid/sortable-header-cell {:sort-key "status" :sort-name "Status" :style {:width "7em"}} "Status"]
|
||||||
|
[grid/header-cell {:style {:width (action-cell-width 3)}}]]]
|
||||||
|
[grid/body
|
||||||
|
(for [{:keys [client account vendor approval-status payment status bank-account description-original date amount id yodlee-merchant ] :as i} (:transactions transaction-page)]
|
||||||
|
^{:key id}
|
||||||
|
[grid/row {:class (:class i)}
|
||||||
|
(when-not selected-client
|
||||||
|
[grid/cell {} (:name client)])
|
||||||
|
|
||||||
|
#_[:td description-original]
|
||||||
|
[grid/cell {} (:name bank-account )]
|
||||||
|
[grid/cell {} (cond vendor
|
||||||
|
(:name vendor)
|
||||||
|
yodlee-merchant
|
||||||
|
[:i.has-text-grey (str "Merchant '" (:name yodlee-merchant) "'")]
|
||||||
|
|
||||||
[sorted-column {:on-sort opc
|
:else
|
||||||
:style {:width percentage-size :cursor "pointer"}
|
[:i.has-text-grey (str description-original)])]
|
||||||
:sort-key "vendor"
|
[grid/cell {} (date->str date) ]
|
||||||
:sort-name "Vendor"
|
[grid/cell {:class "has-text-right"} (nf amount )]
|
||||||
:sort sort}
|
[grid/cell {} status]
|
||||||
"Vendor"]
|
[grid/cell {:style {:overflow "visible"}}
|
||||||
|
[:div.buttons
|
||||||
[sorted-column {:on-sort opc
|
[drop-down {:id [::expense-accounts id ]
|
||||||
:style {:width "8em" :cursor "pointer"}
|
:header [buttons/sl-icon {:aria-haspopup true
|
||||||
:sort-key "date"
|
:event [::events/toggle-menu [::expense-accounts id]]
|
||||||
:sort-name "Date"
|
:tab-index "0"
|
||||||
:sort sort}
|
:icon "icon-saving-bank-1"}]}
|
||||||
"Date"]
|
[drop-down-contents
|
||||||
[sorted-column {:on-sort opc
|
[:div
|
||||||
:style {:width "8em" :cursor "pointer"}
|
[:span.dropdown-item description-original ]]]]
|
||||||
:sort-key "amount"
|
[buttons/fa-icon {:event [::intend-to-edit i]
|
||||||
:sort-name "Amount"
|
:class (status/class-for (get states id))
|
||||||
:class "has-text-right"
|
:icon "fa-pencil"}]
|
||||||
:sort sort}
|
(when payment
|
||||||
"Amount"]
|
[:a.tag {:href (:s3-url payment) :target "_new"}
|
||||||
|
[:span.icon [:i.fa.fa-money]]
|
||||||
[sorted-column {:on-sort opc
|
(str " " (:check-number payment) " (" (gstring/format "$%.2f" amount ) ")")])]]])]]]))
|
||||||
:style {:width "8em" :cursor "pointer"}
|
|
||||||
:sort-key "status"
|
|
||||||
:sort-name "Status"
|
|
||||||
:sort sort}
|
|
||||||
"Status"]
|
|
||||||
[:th {:width percentage-size} "Bank account"]
|
|
||||||
[:th {:style {:width "14em"}} "" ]]]
|
|
||||||
[:tbody
|
|
||||||
(if (:loading @status)
|
|
||||||
[:tr
|
|
||||||
[:td {:col-span 5}
|
|
||||||
[:i.fa.fa-spin.fa-spinner]]]
|
|
||||||
(for [{:keys [client account vendor approval-status payment status bank-account description-original date amount id yodlee-merchant ] :as i} (:transactions @transaction-page)]
|
|
||||||
^{:key id}
|
|
||||||
[:tr {:class (:class i)}
|
|
||||||
(when-not selected-client
|
|
||||||
[:td (:name client)])
|
|
||||||
[:td (cond vendor
|
|
||||||
(:name vendor)
|
|
||||||
yodlee-merchant
|
|
||||||
[:i.has-text-grey (str "Merchant '" (:name yodlee-merchant) "'")]
|
|
||||||
|
|
||||||
:else
|
|
||||||
[:i.has-text-grey (str description-original)])]
|
|
||||||
#_[:td description-original]
|
|
||||||
[:td (date->str date) ]
|
|
||||||
[:td.has-text-right (nf amount )]
|
|
||||||
[:td status]
|
|
||||||
[:td (:name bank-account )]
|
|
||||||
[:td.expandable
|
|
||||||
[:div.buttons
|
|
||||||
[drop-down {:id [::expense-accounts id ]
|
|
||||||
:header [:a.button {:aria-haspopup true
|
|
||||||
:on-click (dispatch-event [::events/toggle-menu [::expense-accounts id]])
|
|
||||||
:tab-index "0"}
|
|
||||||
[:span.icon-saving-bank-1]]}
|
|
||||||
[drop-down-contents
|
|
||||||
[:div
|
|
||||||
[:span.dropdown-item description-original ]]]]
|
|
||||||
[:a.button {:on-click (dispatch-event [::intend-to-edit i])} [:span [:span.icon [:i.fa.fa-pencil]]]]
|
|
||||||
(when payment
|
|
||||||
[:a.tag {:href (:s3-url payment) :target "_new"}
|
|
||||||
#_[:i.fa.fa-money-check]
|
|
||||||
[:span.icon [:i.fa.fa-money]]
|
|
||||||
(str " " (:check-number payment) " (" (gstring/format "$%.2f" amount ) ")")])]]
|
|
||||||
]))]]]))
|
|
||||||
|
|||||||
Reference in New Issue
Block a user