(ns status-im.subs (:require [cljs.spec.alpha :as spec] [clojure.string :as string] [re-frame.core :as re-frame] [status-im.accounts.db :as accounts.db] [status-im.browser.core :as browser] [status-im.chat.commands.core :as commands] [status-im.chat.commands.input :as commands.input] [status-im.chat.constants :as chat.constants] [status-im.chat.db :as chat.db] [status-im.constants :as constants] [status-im.contact.db :as contact.db] [status-im.ethereum.transactions.core :as transactions] [status-im.fleet.core :as fleet] [status-im.i18n :as i18n] [status-im.ethereum.transactions.core :as transactions] [status-im.ethereum.transactions.etherscan :as transactions.etherscan] [status-im.models.wallet :as models.wallet] [status-im.ui.components.bottom-bar.styles :as tabs.styles] [status-im.ui.components.toolbar.styles :as toolbar.styles] [status-im.ui.screens.add-new.new-public-chat.db :as db] [status-im.ui.screens.chat.stickers.styles :as stickers.styles] [status-im.ui.screens.mobile-network-settings.utils :as mobile-network-utils] [status-im.ui.screens.wallet.utils :as wallet.utils] [status-im.utils.build :as build] [status-im.utils.config :as config] [status-im.utils.datetime :as datetime] [status-im.utils.ethereum.core :as ethereum] [status-im.utils.ethereum.tokens :as tokens] [status-im.utils.hex :as utils.hex] [status-im.utils.identicon :as identicon] [status-im.utils.money :as money] [status-im.utils.platform :as platform] [status-im.utils.security :as security] [status-im.utils.universal-links.core :as links] status-im.tribute-to-talk.subs status-im.ui.screens.hardwallet.connect.subs status-im.ui.screens.hardwallet.settings.subs status-im.ui.screens.hardwallet.pin.subs status-im.ui.screens.hardwallet.setup.subs [status-im.wallet.db :as wallet.db])) ;; TOP LEVEL =========================================================================================================== (defn reg-root-key-sub [sub-name db-key] (re-frame/reg-sub sub-name (fn [db] (get db db-key)))) ;;view (reg-root-key-sub :view-id :view-id) (reg-root-key-sub :navigation-stack :navigation-stack) (reg-root-key-sub :screen-params :navigation/screen-params) ;;bottom sheet (reg-root-key-sub :bottom-sheet/show? :bottom-sheet/show?) (reg-root-key-sub :bottom-sheet/view :bottom-sheet/view) (reg-root-key-sub :bottom-sheet/options :bottom-sheet/options) ;;general (reg-root-key-sub :network-name :chain) (reg-root-key-sub :sync-state :sync-state) (reg-root-key-sub :network-status :network-status) (reg-root-key-sub :peers-count :peers-count) (reg-root-key-sub :about-app/node-info :node-info) (reg-root-key-sub :peers-summary :peers-summary) (reg-root-key-sub :node-status :node/status) (reg-root-key-sub :tab-bar-visible? :tab-bar-visible?) (reg-root-key-sub :dimensions/window :dimensions/window) (reg-root-key-sub :initial-props :initial-props) (reg-root-key-sub :get-manage-extension :extensions/manage) (reg-root-key-sub :get-staged-extension :extensions/staged-extension) (reg-root-key-sub :get-device-UUID :device-UUID) (reg-root-key-sub :fleets/custom-fleets :custom-fleets) (reg-root-key-sub :chain-sync-state :node/chain-sync-state) (reg-root-key-sub :desktop/desktop :desktop/desktop) (reg-root-key-sub :desktop :desktop) (reg-root-key-sub :animations :animations) (reg-root-key-sub :get-network :network) (reg-root-key-sub :ui/search :ui/search) (reg-root-key-sub :web3-node-version :web3-node-version) (reg-root-key-sub :keyboard-height :keyboard-height) (reg-root-key-sub :sync-data :sync-data) (reg-root-key-sub :layout-height :layout-height) (reg-root-key-sub :mobile-network/remember-choice? :mobile-network/remember-choice?) (reg-root-key-sub :qr-modal :qr-modal) (reg-root-key-sub :content-layout-height :content-layout-height) (reg-root-key-sub :bootnodes/manage :bootnodes/manage) (reg-root-key-sub :networks/networks :networks/networks) (reg-root-key-sub :networks/manage :networks/manage) (reg-root-key-sub :get-pairing-installations :pairing/installations) (reg-root-key-sub :network/type :network/type) (reg-root-key-sub :tooltips :tooltips) ;;profile (reg-root-key-sub :my-profile/seed :my-profile/seed) (reg-root-key-sub :my-profile/advanced? :my-profile/advanced?) (reg-root-key-sub :my-profile/editing? :my-profile/editing?) (reg-root-key-sub :extensions/profile :extensions/profile) (reg-root-key-sub :my-profile/profile :my-profile/profile) ;;account (reg-root-key-sub :accounts/accounts :accounts/accounts) (reg-root-key-sub :accounts/login :accounts/login) (reg-root-key-sub :account/account :account/account) (reg-root-key-sub :accounts/create :accounts/create) (reg-root-key-sub :get-recover-account :accounts/recover) ;;chat (reg-root-key-sub ::cooldown-enabled? :chat/cooldown-enabled?) (reg-root-key-sub ::chats :chats) (reg-root-key-sub ::access-scope->command-id :access-scope->command-id) (reg-root-key-sub ::chat-ui-props :chat-ui-props) (reg-root-key-sub :chats/id->command :id->command) (reg-root-key-sub :chats/current-chat-id :current-chat-id) (reg-root-key-sub :public-group-topic :public-group-topic) (reg-root-key-sub :chats/loading? :chats/loading?) (reg-root-key-sub :new-chat-name :new-chat-name) (reg-root-key-sub :group-chat-profile/editing? :group-chat-profile/editing?) (reg-root-key-sub :group-chat-profile/profile :group-chat-profile/profile) (reg-root-key-sub :selected-participants :selected-participants) ;;browser (reg-root-key-sub :browsers :browser/browsers) (reg-root-key-sub :browser/options :browser/options) (reg-root-key-sub :dapps/permissions :dapps/permissions) ;;stickers (reg-root-key-sub :stickers/selected-pack :stickers/selected-pack) (reg-root-key-sub :stickers/packs :stickers/packs) (reg-root-key-sub :stickers/installed-packs :stickers/packs-installed) (reg-root-key-sub :stickers/packs-owned :stickers/packs-owned) (reg-root-key-sub :stickers/packs-pendning :stickers/packs-pendning) ;;mailserver (reg-root-key-sub :mailserver/current-id :mailserver/current-id) (reg-root-key-sub :mailserver/mailservers :mailserver/mailservers) (reg-root-key-sub :mailserver.edit/mailserver :mailserver.edit/mailserver) (reg-root-key-sub :mailserver/state :mailserver/state) (reg-root-key-sub :mailserver/pending-requests :mailserver/pending-requests) (reg-root-key-sub :mailserver/request-error? :mailserver/request-error) (reg-root-key-sub :mailserver/fetching-gaps-in-progress :mailserver/fetching-gaps-in-progress) (reg-root-key-sub :mailserver/gaps :mailserver/gaps) (reg-root-key-sub :mailserver/ranges :mailserver/ranges) ;;contacts (reg-root-key-sub ::contacts :contacts/contacts) (reg-root-key-sub :contacts/current-contact-identity :contacts/identity) (reg-root-key-sub :new-identity-error :contacts/new-identity-error) (reg-root-key-sub :contacts/new-identity :contacts/new-identity) (reg-root-key-sub :group/selected-contacts :group/selected-contacts) ;;wallet (reg-root-key-sub :wallet :wallet) (reg-root-key-sub :prices :prices) (reg-root-key-sub :collectibles :collectibles) (reg-root-key-sub :wallet/all-tokens :wallet/all-tokens) (reg-root-key-sub :prices-loading? :prices-loading?) (reg-root-key-sub :wallet.transactions :wallet.transactions) (reg-root-key-sub :wallet/custom-token-screen :wallet/custom-token-screen) ;;ethereum (reg-root-key-sub :ethereum/current-block :ethereum/current-block) ;;GENERAL ============================================================================================================== (re-frame/reg-sub :connection-stats :<- [:desktop/desktop] (fn [desktop _] (get desktop :debug-metrics))) (re-frame/reg-sub :settings/logging-enabled :<- [:desktop/desktop] (fn [desktop _] (get desktop :logging-enabled false))) ;;TODO we have network in two different places see :account/network, what's the difference? (re-frame/reg-sub :network :<- [:account/account] (fn [current-account] (get (:networks current-account) (:network current-account)))) (re-frame/reg-sub :disconnected? :<- [:peers-count] (fn [peers-count] (zero? peers-count))) (re-frame/reg-sub :offline? :<- [:network-status] :<- [:sync-state] :<- [:disconnected?] (fn [[network-status sync-state disconnected?]] (or disconnected? (= network-status :offline) (= sync-state :offline)))) (re-frame/reg-sub :syncing? :<- [:sync-state] (fn [sync-state] (#{:pending :in-progress} sync-state))) (re-frame/reg-sub :dimensions/window-width :<- [:dimensions/window] :width) (re-frame/reg-sub :get-screen-params :<- [:screen-params] :<- [:view-id] (fn [[params view-id-db] [_ view-id]] (get params (or view-id view-id-db)))) (re-frame/reg-sub :can-navigate-back? :<- [:navigation-stack] (fn [stack] (> (count stack) 1))) (re-frame/reg-sub :delete-swipe-position :<- [:animations] (fn [animations [_ type item-id]] (get-in animations [type item-id :delete-swiped]))) (re-frame/reg-sub :search/filter :<- [:ui/search] (fn [search] (get search :filter))) (defn- node-version [web3-node-version] (str "status-go v" (or web3-node-version "N/A") "")) (def app-short-version (let [version (if platform/desktop? build/version build/build-no)] (str build/version " (" version ")"))) (re-frame/reg-sub :get-app-version :<- [:web3-node-version] (fn [web3-node-version] (str app-short-version "; " (node-version web3-node-version)))) (re-frame/reg-sub :get-app-short-version (fn [db] app-short-version)) (re-frame/reg-sub :get-app-node-version :<- [:web3-node-version] node-version) (re-frame/reg-sub :my-profile/recovery :<- [:my-profile/seed] (fn [seed] (or seed {:step :intro}))) (re-frame/reg-sub :bottom-sheet :<- [:bottom-sheet/show?] :<- [:bottom-sheet/view] (fn [[show? view]] {:show? show? :view view})) (re-frame/reg-sub :is-contact-selected? :<- [:group/selected-contacts] (fn [selected-contacts [_ element]] (-> selected-contacts (contains? element)))) (re-frame/reg-sub :is-participant-selected? :<- [:selected-participants] (fn [selected-participants [_ element]] (-> selected-participants (contains? element)))) (re-frame/reg-sub :ethereum/chain-keyword :<- [:network] (fn [network] (ethereum/network->chain-keyword network))) (re-frame/reg-sub :ethereum/native-currency :<- [:ethereum/chain-keyword] (fn [chain-keyword] (tokens/native-currency chain-keyword))) ;;ACCOUNT ============================================================================================================== (re-frame/reg-sub :account/public-key :<- [:account/account] (fn [{:keys [public-key]}] public-key)) (re-frame/reg-sub :account/hex-address :<- [:account/account] (fn [{:keys [address]}] (ethereum/normalized-address address))) (re-frame/reg-sub :sign-in-enabled? :<- [:accounts/login] :<- [:node-status] (fn [[{:keys [password]} status]] (and (or (nil? status) (= status :stopped)) (spec/valid? ::accounts.db/password (security/safe-unmask-data password))))) (re-frame/reg-sub :settings/current-fleet :<- [:account-settings] (fn [sett] (fleet/current-fleet-sub sett))) (re-frame/reg-sub :get-account-creation-next-enabled? :<- [:accounts/create] (fn [create] (accounts.db/account-creation-next-enabled? create))) (re-frame/reg-sub :account-settings :<- [:account/account] (fn [acc] (get acc :settings))) ;;TODO we have network in two different places see :network, what's the difference? (re-frame/reg-sub :account/network :<- [:account/account] :<- [:get-network] (fn [[account network]] (get-in account [:networks network]))) (re-frame/reg-sub :current-network-initialized? :<- [:account/network] (fn [network] (boolean network))) (re-frame/reg-sub :current-network-uses-rpc? :<- [:account/network] (fn [network] (get-in network [:config :UpstreamConfig :Enabled]))) (re-frame/reg-sub :latest-block-number (fn [{:node/keys [latest-block-number]} _] (if latest-block-number latest-block-number 0))) (re-frame/reg-sub :settings/current-log-level :<- [:account-settings] (fn [sett] (or (get sett :log-level) config/log-level-status-go))) ;;CHAT ============================================================================================================== (re-frame/reg-sub :get-collectible-token :<- [:collectibles] (fn [collectibles [_ {:keys [symbol token]}]] (get-in collectibles [(keyword symbol) (js/parseInt token)]))) (re-frame/reg-sub ::show-suggestions-view? :<- [:chats/current-chat-ui-prop :show-suggestions?] :<- [:chats/current-chat] :<- [:chats/all-available-commands] (fn [[show-suggestions? {:keys [input-text]} commands]] (and (or show-suggestions? (commands.input/starts-as-command? (string/trim (or input-text "")))) (seq commands)))) (re-frame/reg-sub ::show-suggestions? :<- [::show-suggestions-view?] :<- [:chats/selected-chat-command] (fn [[show-suggestions-box? selected-command]] (and show-suggestions-box? (not selected-command)))) (re-frame/reg-sub ::get-commands-for-chat :<- [:chats/id->command] :<- [::access-scope->command-id] :<- [:chats/current-chat] (fn [[id->command access-scope->command-id chat]] (commands/chat-commands id->command access-scope->command-id chat))) (re-frame/reg-sub :chats/chat :<- [:chats/active-chats] (fn [chats [_ chat-id]] (get chats chat-id))) (re-frame/reg-sub :chats/content-layout-height :<- [:content-layout-height] :<- [:chats/current-chat-ui-prop :input-height] :<- [:chats/current-chat-ui-prop :input-focused?] :<- [:keyboard-height] :<- [:chats/current-chat-ui-prop :show-stickers?] (fn [[home-content-layout-height input-height input-focused? kheight stickers?]] (- (+ home-content-layout-height tabs.styles/tabs-height) (if platform/iphone-x? (* 2 toolbar.styles/toolbar-height) toolbar.styles/toolbar-height) (if input-height input-height 0) (if stickers? (stickers.styles/stickers-panel-height) kheight) (if input-focused? (cond platform/iphone-x? 0 platform/ios? tabs.styles/tabs-diff :else 0) (cond platform/iphone-x? (* 2 tabs.styles/minimized-tabs-height) platform/ios? tabs.styles/tabs-height :else tabs.styles/minimized-tabs-height))))) (re-frame/reg-sub :chats/current-chat-ui-props :<- [::chat-ui-props] :<- [:chats/current-chat-id] (fn [[chat-ui-props id]] (get chat-ui-props id))) (re-frame/reg-sub :chats/current-chat-ui-prop :<- [:chats/current-chat-ui-props] (fn [ui-props [_ prop]] (get ui-props prop))) (re-frame/reg-sub :chats/validation-messages :<- [:chats/current-chat-ui-props] (fn [ui-props] (some-> ui-props :validation-messages))) (re-frame/reg-sub :chats/input-margin :<- [:keyboard-height] (fn [kb-height] (cond (and platform/iphone-x? (> kb-height 0)) (- kb-height (* 2 tabs.styles/minimized-tabs-height)) platform/ios? (+ kb-height (- (if (> kb-height 0) tabs.styles/minimized-tabs-height 0))) :default 0))) (re-frame/reg-sub :chats/active-chats :<- [:contacts/contacts] :<- [::chats] :<- [:account/account] (fn [[contacts chats account]] (chat.db/active-chats contacts chats account))) (re-frame/reg-sub :chats/current-chat :<- [:chats/active-chats] :<- [:chats/current-chat-id] (fn [[chats current-chat-id]] (let [current-chat (get chats current-chat-id) messages (:messages current-chat)] (if (empty? messages) (assoc current-chat :universal-link (links/generate-link :public-chat :external current-chat-id)) current-chat)))) (re-frame/reg-sub :chats/current-chat-message :<- [:chats/current-chat] (fn [{:keys [messages]} [_ message-id]] (get messages message-id))) (re-frame/reg-sub :chats/current-chat-messages :<- [:chats/current-chat] (fn [{:keys [messages]}] (or messages {}))) (re-frame/reg-sub :chats/current-chat-message-groups :<- [:chats/current-chat] (fn [{:keys [message-groups]}] (or message-groups {}))) (re-frame/reg-sub :chats/current-chat-message-statuses :<- [:chats/current-chat] (fn [{:keys [message-statuses]}] (or message-statuses {}))) (re-frame/reg-sub :chats/current-chat-referenced-messages :<- [:chats/current-chat] (fn [{:keys [referenced-messages]}] (or referenced-messages {}))) (re-frame/reg-sub :chats/messages-gaps :<- [:mailserver/gaps] :<- [:chats/current-chat-id] (fn [[gaps chat-id]] (sort-by :from (vals (get gaps chat-id))))) (re-frame/reg-sub :chats/range :<- [:mailserver/ranges] :<- [:chats/current-chat-id] (fn [[ranges chat-id]] (get ranges chat-id))) (re-frame/reg-sub :chats/all-loaded? :<- [:chats/current-chat] (fn [chat] (:all-loaded? chat))) (re-frame/reg-sub :chats/public? :<- [:chats/current-chat] (fn [chat] (:public? chat))) (re-frame/reg-sub :chats/current-chat-messages-stream :<- [:chats/current-chat-messages] :<- [:chats/current-chat-message-groups] :<- [:chats/current-chat-message-statuses] :<- [:chats/current-chat-referenced-messages] :<- [:chats/messages-gaps] :<- [:chats/range] :<- [:chats/all-loaded?] :<- [:chats/public?] (fn [[messages message-groups message-statuses referenced-messages messages-gaps range all-loaded? public?]] (-> (chat.db/sort-message-groups message-groups messages) (chat.db/messages-with-datemarks-and-statuses messages message-statuses referenced-messages messages-gaps range all-loaded? public?) chat.db/messages-stream))) (re-frame/reg-sub :chats/current-chat-intro-status :<- [:chats/current-chat] :<- [:chats/current-chat-messages] (fn [[{:keys [might-have-join-time-messages?]} messages]] (if might-have-join-time-messages? :loading (if (empty? messages) :empty :messages)))) (re-frame/reg-sub :chats/available-commands :<- [::get-commands-for-chat] :<- [:chats/current-chat] (fn [[commands chat]] (chat.db/available-commands commands chat))) (re-frame/reg-sub :chats/all-available-commands :<- [::get-commands-for-chat] (fn [commands] (chat.db/map->sorted-seq commands))) (re-frame/reg-sub :chats/selected-chat-command :<- [:chats/current-chat] :<- [:chats/current-chat-ui-prop :selection] :<- [::get-commands-for-chat] (fn [[{:keys [input-text]} selection commands]] (commands.input/selected-chat-command input-text selection commands))) (re-frame/reg-sub :chats/input-placeholder :<- [:chats/current-chat] :<- [:chats/selected-chat-command] (fn [[{:keys [input-text]} {:keys [params current-param-position cursor-in-the-end?]}]] (when (and cursor-in-the-end? (string/ends-with? (or input-text "") chat.constants/spacing-char)) (get-in params [current-param-position :placeholder])))) (re-frame/reg-sub :chats/parameter-box :<- [:chats/current-chat] :<- [:chats/selected-chat-command] (fn [[_ {:keys [current-param-position params]}]] (when (and params current-param-position) (get-in params [current-param-position :suggestions])))) (re-frame/reg-sub :chats/show-parameter-box? :<- [:chats/parameter-box] :<- [::show-suggestions?] :<- [:chats/validation-messages] :<- [:chats/selected-chat-command] (fn [[chat-parameter-box show-suggestions? validation-messages {:keys [command-completion]}]] (and chat-parameter-box (not validation-messages) (not show-suggestions?) (not (= :complete command-completion))))) (re-frame/reg-sub :chats/unviewed-messages-count (fn [[_ chat-id]] (re-frame/subscribe [:chats/chat chat-id])) (fn [{:keys [unviewed-messages-count]}] unviewed-messages-count)) (re-frame/reg-sub :chats/photo-path :<- [:contacts/contacts] :<- [:account/account] (fn [[contacts account] [_ id]] (or (:photo-path (contacts id)) (when (= id (:public-key account)) (:photo-path account))))) (re-frame/reg-sub :chats/unread-messages-number :<- [:chats/active-chats] (fn [chats _] (apply + (map :unviewed-messages-count (vals chats))))) (re-frame/reg-sub :chats/cooldown-enabled? :<- [:chats/current-chat] :<- [::cooldown-enabled?] (fn [[{:keys [public?]} cooldown-enabled?]] (and public? cooldown-enabled?))) (re-frame/reg-sub :chats/reply-message :<- [:chats/current-chat] (fn [{:keys [metadata messages]}] (get messages (get-in metadata [:responding-to-message :message-id])))) (re-frame/reg-sub :public-chat.new/topic-error-message :<- [:public-group-topic] (fn [topic] (when-not (or (empty? topic) (db/valid-topic? topic)) (i18n/label :topic-name-error)))) (defn filter-selected-contacts [selected-contacts contacts] (filter #(contact.db/added? (contacts %)) selected-contacts)) (re-frame/reg-sub :selected-contacts-count :<- [:group/selected-contacts] :<- [:contacts/contacts] (fn [[selected-contacts contacts]] (count (filter-selected-contacts selected-contacts contacts)))) (re-frame/reg-sub :selected-participants-count :<- [:selected-participants] (fn [selected-participants] (count selected-participants))) (defn filter-contacts [selected-contacts active-contacts] (filter #(selected-contacts (:public-key %)) active-contacts)) (re-frame/reg-sub :selected-group-contacts :<- [:group/selected-contacts] :<- [:contacts/active] (fn [[selected-contacts active-contacts]] (filter-contacts selected-contacts active-contacts))) (re-frame/reg-sub :chats/transaction-status :<- [:wallet/transactions] :<- [:ethereum/current-block] (fn [[transactions current-block] [_ hash]] (when-let [transaction (get transactions hash)] {:exists? true :confirmed? (-> transaction (wallet.db/get-confirmations current-block) (>= transactions/confirmations-count-threshold))}))) ;;BOOTNODES ============================================================================================================ (re-frame/reg-sub :settings/bootnodes-enabled :<- [:account/account] (fn [account] (let [{:keys [network settings]} account] (get-in settings [:bootnodes network])))) (re-frame/reg-sub :settings/network-bootnodes :<- [:account/account] (fn [account] (get-in account [:bootnodes (:network account)]))) (re-frame/reg-sub :get-manage-bootnode :<- [:bootnodes/manage] (fn [manage] manage)) (re-frame/reg-sub :manage-bootnode-validation-errors :<- [:get-manage-bootnode] (fn [manage] (set (keep (fn [[k {:keys [error]}]] (when error k)) manage)))) ;;BROWSER ============================================================================================================== (re-frame/reg-sub :browser/browsers :<- [:browsers] (fn [browsers] (reduce (fn [acc [k browser]] (update acc k assoc :url (browser/get-current-url browser))) browsers browsers))) (re-frame/reg-sub :browser/browsers-vals :<- [:browser/browsers] (fn [browsers] (sort-by :timestamp > (vals browsers)))) (re-frame/reg-sub :get-current-browser :<- [:browser/options] :<- [:browser/browsers] (fn [[options browsers]] (let [browser (get browsers (:browser-id options))] (assoc browser :secure? (browser/secure? browser options))))) ;;STICKERS ============================================================================================================= (re-frame/reg-sub :stickers/installed-packs-vals :<- [:stickers/installed-packs] (fn [packs] (vals packs))) (re-frame/reg-sub :stickers/all-packs :<- [:stickers/packs] :<- [:stickers/installed-packs] :<- [:stickers/packs-owned] :<- [:stickers/packs-pendning] (fn [[packs installed owned pending]] (map (fn [{:keys [id] :as pack}] (cond-> pack (get installed id) (assoc :installed true) (get owned id) (assoc :owned true) (get pending id) (assoc :pending true))) (vals packs)))) (re-frame/reg-sub :stickers/get-current-pack :<- [:get-screen-params] :<- [:stickers/all-packs] (fn [[{:keys [id]} packs]] (first (filter #(= (:id %) id) packs)))) (defn find-pack-id-for-uri [sticker-uri packs] (some (fn [{:keys [stickers id]}] (when (some #(= sticker-uri (:uri %)) stickers) id)) packs)) (re-frame/reg-sub :stickers/recent :<- [:account/account] :<- [:stickers/installed-packs-vals] (fn [[{:keys [recent-stickers]} packs]] (map (fn [uri] {:uri uri :pack (find-pack-id-for-uri uri packs)}) recent-stickers))) ;;EXTENSIONS =========================================================================================================== (re-frame/reg-sub :extensions/all-extensions :<- [:account/account] (fn [account] (get account :extensions))) ;;HOME ================================================================================================================= (re-frame/reg-sub :home-items :<- [:chats/active-chats] :<- [:search/filter] :<- [:search/filtered-chats] (fn [[chats search-filter filtered-chats]] (if (or (nil? search-filter) (and platform/desktop? (empty? search-filter))) {:all-home-items (sort-by #(-> % second :timestamp) > chats)} {:search-filter search-filter :chats filtered-chats}))) ;;NETWORK SETTINGS ===================================================================================================== (re-frame/reg-sub :get-network-id :<- [:network] (fn [network] (ethereum/network->chain-id network))) (defn- filter-networks [network-type] (fn [network] (let [chain-id (ethereum/network->chain-id network) testnet? (ethereum/testnet? chain-id) custom? (:custom? network)] (case network-type :custom custom? :mainnet (and (not custom?) (not testnet?)) :testnet (and (not custom?) testnet?))))) (defn- label-networks [default-networks] (fn [network] (let [custom? (not (contains? default-networks (:id network)))] (assoc network :custom? custom?)))) (re-frame/reg-sub :get-networks :<- [:account/account] :<- [:networks/networks] (fn [[{:keys [networks] :as account} default-networks]] (let [networks (map (label-networks default-networks) (sort-by :name (vals networks))) types [:mainnet :testnet :custom]] (zipmap types (map #(filter (filter-networks %) networks) types))))) (re-frame/reg-sub :get-manage-network :<- [:networks/manage] (fn [manage] manage)) (re-frame/reg-sub :manage-network-valid? :<- [:get-manage-network] (fn [manage] (not-any? :error (vals manage)))) ;;PAIRING ============================================================================================================== (re-frame/reg-sub :pairing/installations :<- [:get-pairing-installations] (fn [installations] (->> installations vals (sort-by (comp unchecked-negate :last-paired))))) (re-frame/reg-sub :pairing/installation-id :<- [:account/account] :installation-id) (re-frame/reg-sub :pairing/installation-name :<- [:account/account] (fn [account] (:installation-name account))) ;;PROFILE ============================================================================================================== (re-frame/reg-sub :get-profile-unread-messages-number :<- [:account/account] (fn [{:keys [seed-backed-up? mnemonic]}] (if (or seed-backed-up? (string/blank? mnemonic)) 0 1))) ;;WALLET ============================================================================================================== (re-frame/reg-sub :balance :<- [:wallet] (fn [wallet] (:balance wallet))) (re-frame/reg-sub :price :<- [:prices] (fn [prices [_ fsym tsym]] (get-in prices [fsym tsym :price]))) (re-frame/reg-sub :last-day :<- [:prices] (fn [prices [_ fsym tsym]] (get-in prices [fsym tsym :last-day]))) (re-frame/reg-sub :wallet.settings/currency :<- [:account-settings] (fn [settings] (or (get-in settings [:wallet :currency]) :usd))) (re-frame/reg-sub :asset-value (fn [[_ fsym decimals tsym]] [(re-frame/subscribe [:balance]) (re-frame/subscribe [:price fsym tsym]) (re-frame/subscribe [:wallet/currency])]) (fn [[balance price currency] [_ fsym decimals tsym]] (when (and balance price) (-> (money/internal->formatted (get balance fsym) fsym decimals) (money/crypto->fiat price) (money/with-precision 2) str (i18n/format-currency (:code currency)))))) (defn- get-balance-total-value [balance prices currency token->decimals] (reduce-kv (fn [acc symbol value] (if-let [price (get-in prices [symbol currency :price])] (+ acc (or (some-> (money/internal->formatted value symbol (token->decimals symbol)) (money/crypto->fiat price) .toNumber) 0)) acc)) 0 balance)) (re-frame/reg-sub :portfolio-value :<- [:balance] :<- [:prices] :<- [:wallet/currency] :<- [:network] :<- [:wallet/all-tokens] (fn [[balance prices currency network all-tokens] [_ currency-code]] (if (and balance prices) (let [assets (tokens/tokens-for all-tokens (ethereum/network->chain-keyword network)) token->decimals (into {} (map #(vector (:symbol %) (:decimals %)) assets)) balance-total-value (get-balance-total-value balance prices (or currency-code (-> currency :code keyword)) token->decimals)] (if (pos? balance-total-value) (-> balance-total-value (money/with-precision 2) str (i18n/format-currency (:code currency) false)) "0")) "..."))) (re-frame/reg-sub :wallet/balance-loading? :<- [:wallet] (fn [wallet] (:balance-loading? wallet))) (re-frame/reg-sub :wallet/error-message :<- [:wallet] (fn [wallet] (or (get-in wallet [:errors :balance-update]) (get-in wallet [:errors :prices-update])))) (re-frame/reg-sub :wallet/visible-tokens-symbols :<- [:network] :<- [:account/account] (fn [[network current-account]] (let [chain (ethereum/network->chain-keyword network)] (get-in current-account [:settings :wallet :visible-tokens chain])))) (re-frame/reg-sub :wallet/visible-assets :<- [:network] :<- [:wallet/visible-tokens-symbols] :<- [:wallet/all-tokens] (fn [[network visible-tokens-symbols all-tokens]] (let [chain (ethereum/network->chain-keyword network)] (conj (filter #(contains? visible-tokens-symbols (:symbol %)) (tokens/sorted-tokens-for all-tokens chain)) (tokens/native-currency chain))))) (re-frame/reg-sub :wallet/visible-assets-with-amount :<- [:balance] :<- [:wallet/visible-assets] (fn [[balance visible-assets]] (map #(assoc % :amount (get balance (:symbol %))) visible-assets))) (re-frame/reg-sub :wallet/transferrable-assets-with-amount :<- [:wallet/visible-assets-with-amount] (fn [all-assets] (filter #(not (:nft? %)) all-assets))) (re-frame/reg-sub :wallet/currency :<- [:wallet.settings/currency] (fn [currency-id] (get constants/currencies currency-id))) ;;WALLET TRANSACTIONS ================================================================================================== (re-frame/reg-sub :wallet/transactions :<- [:wallet] (fn [wallet] (get wallet :transactions))) (re-frame/reg-sub :wallet/filters :<- [:wallet] (fn [wallet] (get wallet :filters))) (defn enrich-transaction [{:keys [type to from value token] :as transaction} contacts native-currency] (let [[contact-address key-contact key-wallet] (if (= type :inbound) [from :from-contact :to-wallet] [to :to-contact :from-wallet]) wallet (i18n/label :main-wallet) contact (get contacts contact-address) {:keys [symbol-display symbol decimals] :as asset} (or token native-currency) amount-text (if value (wallet.utils/format-amount value decimals) "...") currency-text (when asset (clojure.core/name (or symbol-display symbol)))] (cond-> transaction contact (assoc key-contact (:name contact)) :always (assoc key-wallet wallet :amount-text amount-text :currency-text currency-text)))) (re-frame/reg-sub :wallet.transactions/transactions :<- [:wallet/transactions] :<- [:contacts/contacts-by-address] :<- [:ethereum/native-currency] (fn [[transactions contacts native-currency]] (reduce-kv (fn [acc hash transaction] (assoc acc hash (enrich-transaction transaction contacts native-currency))) {} transactions))) (re-frame/reg-sub :wallet.transactions/all-filters? :<- [:wallet/filters] (fn [filters] (= wallet.db/default-wallet-filters filters))) (def filters-labels {:inbound (i18n/label :t/incoming) :outbound (i18n/label :t/outgoing) :pending (i18n/label :t/pending) :failed (i18n/label :t/failed)}) (re-frame/reg-sub :wallet.transactions/filters :<- [:wallet/filters] (fn [filters] (map (fn [id] (let [checked? (filters id)] {:id id :label (filters-labels id) :checked? checked? :on-touch #(if checked? (re-frame/dispatch [:wallet.transactions/remove-filter id]) (re-frame/dispatch [:wallet.transactions/add-filter id]))})) wallet.db/default-wallet-filters))) (re-frame/reg-sub :wallet.transactions.filters/screen :<- [:wallet.transactions/filters] :<- [:wallet.transactions/all-filters?] (fn [[filters all-filters?]] {:all-filters? all-filters? :filters filters :on-touch-select-all (when-not all-filters? #(re-frame/dispatch [:wallet.transactions/add-all-filters]))})) (defn- enrich-transaction-for-list [filters {:keys [type from-contact from to-contact to hash timestamp] :as transaction}] (when (filters type) (assoc (case type :inbound (assoc transaction :label (i18n/label :t/from) :contact-accessibility-label :sender-text :address-accessibility-label :sender-address-text :contact from-contact :address from) (assoc transaction :label (i18n/label :t/to) :contact-accessibility-label :recipient-name-text :address-accessibility-label :recipient-address-text :contact to-contact :address to)) :time-formatted (datetime/timestamp->time timestamp) :on-touch-fn #(re-frame/dispatch [:show-transaction-details hash])))) (defn- group-transactions-by-date [transactions] (->> transactions (group-by #(datetime/timestamp->date-key (:timestamp %))) (sort-by key >) (map (fn [[date-key transactions]] {:title (datetime/timestamp->mini-date (:timestamp (first transactions))) :key date-key :data (sort-by :timestamp > transactions)})))) (re-frame/reg-sub :wallet.transactions.history/screen :<- [:wallet.transactions/transactions] :<- [:wallet/filters] :<- [:wallet.transactions/all-filters?] (fn [[transactions filters all-filters?]] {:all-filters? all-filters? :transaction-history-sections (->> transactions vals (keep #(enrich-transaction-for-list filters %)) (group-transactions-by-date))})) (re-frame/reg-sub :wallet.transactions/current-transaction :<- [:wallet] (fn [wallet] (:current-transaction wallet))) (re-frame/reg-sub :wallet.transactions.details/current-transaction :<- [:wallet.transactions/transactions] :<- [:wallet.transactions/current-transaction] :<- [:ethereum/native-currency] :<- [:ethereum/chain-keyword] (fn [[transactions current-transaction native-currency chain-keyword]] (let [{:keys [gas-used gas-price hash timestamp type token value] :as transaction} (get transactions current-transaction) native-currency-text (-> native-currency :symbol-display name)] (when transaction (merge transaction {:gas-price-eth (if gas-price (money/wei->str :eth gas-price native-currency-text) "-") :gas-price-gwei (if gas-price (money/wei->str :gwei gas-price) "-") :date (datetime/timestamp->long-date timestamp)} (if (= type :unsigned) {:block (i18n/label :not-applicable) :cost (i18n/label :not-applicable) :gas-limit (i18n/label :not-applicable) :gas-used (i18n/label :not-applicable) :nonce (i18n/label :not-applicable) :hash (i18n/label :not-applicable)} {:cost (when gas-used (money/wei->str :eth (money/fee-value gas-used gas-price) native-currency-text)) :url (transactions.etherscan/get-transaction-details-url chain-keyword hash)})))))) (re-frame/reg-sub :wallet.transactions.details/screen :<- [:wallet.transactions.details/current-transaction] :<- [:ethereum/current-block] (fn [[transaction current-block]] :wallet.transactions.details/current-transaction (let [confirmations (wallet.db/get-confirmations transaction current-block)] (assoc transaction :confirmations confirmations :confirmations-progress (if (>= confirmations transactions/confirmations-count-threshold) 100 (* 100 (/ confirmations transactions/confirmations-count-threshold))))))) ;;WALLET SEND ========================================================================================================== (re-frame/reg-sub ::send-transaction :<- [:wallet] (fn [wallet] (:send-transaction wallet))) (re-frame/reg-sub :wallet.send/symbol :<- [::send-transaction] (fn [send-transaction] (:symbol send-transaction))) (re-frame/reg-sub :wallet.send/advanced? :<- [::send-transaction] (fn [send-transaction] (:advanced? send-transaction))) (re-frame/reg-sub :wallet.send/camera-flashlight :<- [::send-transaction] (fn [send-transaction] (:camera-flashlight send-transaction))) (re-frame/reg-sub :wallet.send/wrong-password? :<- [::send-transaction] (fn [send-transaction] (:wrong-password? send-transaction))) (re-frame/reg-sub :wallet.send/sign-password-enabled? :<- [::send-transaction] (fn [{:keys [password]}] (and (not (nil? password)) (not= password "")))) (defn edit-or-transaction-data "Set up edit data structure, defaulting to transaction when not available" [transaction edit] (cond-> edit (not (get-in edit [:gas-price :value])) (models.wallet/build-edit :gas-price (money/to-fixed (money/wei-> :gwei (:gas-price transaction)))) (not (get-in edit [:gas :value])) (models.wallet/build-edit :gas (money/to-fixed (:gas transaction))))) (re-frame/reg-sub :wallet/edit :<- [::send-transaction] :<- [:wallet] (fn [[send-transaction {:keys [edit]}]] (edit-or-transaction-data send-transaction edit))) (defn check-sufficient-funds [transaction balance symbol amount] (assoc transaction :sufficient-funds? (or (nil? amount) (money/sufficient-funds? amount (get balance symbol))))) (defn check-sufficient-gas [transaction balance symbol amount] (assoc transaction :sufficient-gas? (or (nil? amount) (let [available-ether (get balance :ETH (money/bignumber 0)) available-for-gas (if (= :ETH symbol) (.minus available-ether (money/bignumber amount)) available-ether)] (money/sufficient-funds? (-> transaction :max-fee money/bignumber (money/formatted->internal :ETH 18)) (money/bignumber available-for-gas)))))) (re-frame/reg-sub :wallet.send/transaction :<- [::send-transaction] :<- [:balance] (fn [[{:keys [amount symbol] :as transaction} balance]] (-> transaction (models.wallet/add-max-fee) (check-sufficient-funds balance symbol amount) (check-sufficient-gas balance symbol amount)))) (re-frame/reg-sub :wallet.send/signing-phrase-with-padding :<- [:account/account] (fn [{:keys [signing-phrase]}] (when signing-phrase (clojure.string/replace-all signing-phrase #" " " ")))) (re-frame/reg-sub :wallet/settings :<- [:wallet] (fn [{:keys [settings]}] (reduce-kv #(conj %1 %3) [] settings))) (re-frame/reg-sub :wallet.request/transaction :<- [:wallet] :request-transaction) (re-frame/reg-sub :screen-collectibles :<- [:collectibles] :<- [:get-screen-params] (fn [[collectibles {:keys [symbol]}]] (when-let [v (get collectibles symbol)] (mapv #(assoc (second %) :id (first %)) v)))) ;;UI ============================================================================================================== ;;TODO this subscription looks super weird huge and with dispatches? (re-frame/reg-sub :connectivity/status-properties :<- [:offline?] :<- [:disconnected?] :<- [:mailserver/connecting?] :<- [:mailserver/connection-error?] :<- [:mailserver/request-error?] :<- [:mailserver/fetching?] :<- [:network/type] :<- [:account/account] (fn [[offline? disconnected? mailserver-connecting? mailserver-connection-error? mailserver-request-error? mailserver-fetching? network-type account]] (let [wallet-offline? (and offline? ;; There's no wallet of desktop (not platform/desktop?)) error-label (cond (and wallet-offline? disconnected?) :t/offline wallet-offline? :t/wallet-offline disconnected? :t/disconnected mailserver-connecting? :t/connecting mailserver-connection-error? :t/mailserver-reconnect mailserver-request-error? :t/mailserver-request-error-status (and (mobile-network-utils/cellular? network-type) (not (:syncing-on-mobile-network? account))) :mobile-network :else nil)] {:message (or error-label :t/connected) :connected? (and (nil? error-label) (not= :mobile-network error-label)) :connecting? (= error-label :t/connecting) :loading-indicator? mailserver-fetching? :on-press-fn #(cond mailserver-connection-error? (re-frame/dispatch [:mailserver.ui/reconnect-mailserver-pressed]) mailserver-request-error? (re-frame/dispatch [:mailserver.ui/request-error-pressed]) (= :mobile-network error-label) (re-frame/dispatch [:mobile-network/show-offline-sheet]))}))) ;;CONTACT ============================================================================================================== (re-frame/reg-sub ::query-current-chat-contacts :<- [:chats/current-chat] :<- [:contacts/contacts] (fn [[chat contacts] [_ query-fn]] (contact.db/query-chat-contacts chat contacts query-fn))) (re-frame/reg-sub :contacts/contacts :<- [::contacts] (fn [contacts] (contact.db/enrich-contacts contacts))) (re-frame/reg-sub :contacts/active :<- [:contacts/contacts] (fn [contacts] (contact.db/get-active-contacts contacts))) (re-frame/reg-sub :contacts/active-count :<- [:contacts/active] (fn [active-contacts] (count active-contacts))) (re-frame/reg-sub :contacts/blocked :<- [:contacts/contacts] (fn [contacts] (->> contacts (filter (fn [[_ contact]] (contact.db/blocked? contact))) (contact.db/sort-contacts)))) (re-frame/reg-sub :contacts/blocked-count :<- [:contacts/blocked] (fn [blocked-contacts] (count blocked-contacts))) (re-frame/reg-sub :contacts/current-contact :<- [:contacts/contacts] :<- [:contacts/current-contact-identity] (fn [[contacts identity]] (or (contacts identity) (-> identity contact.db/public-key->new-contact contact.db/enrich-contact)))) (re-frame/reg-sub :contacts/contact-name-by-identity :<- [:contacts/contacts] :<- [:account/account] (fn [[contacts current-account] [_ identity]] (let [me? (= (:public-key current-account) identity)] (if me? (:name current-account) (:name (contacts identity)))))) (re-frame/reg-sub :contacts/all-contacts-not-in-current-chat :<- [::query-current-chat-contacts remove] (fn [contacts] (sort-by (comp clojure.string/lower-case :name) contacts))) (re-frame/reg-sub :contacts/current-chat-contacts :<- [:chats/current-chat] :<- [:contacts/contacts] :<- [:account/account] (fn [[{:keys [contacts admins]} all-contacts current-account]] (contact.db/get-all-contacts-in-group-chat contacts admins all-contacts current-account))) (re-frame/reg-sub :contacts/contacts-by-chat (fn [[_ _ chat-id] _] [(re-frame/subscribe [:chats/chat chat-id]) (re-frame/subscribe [:contacts/contacts])]) (fn [[chat all-contacts] [_ query-fn]] (contact.db/query-chat-contacts chat all-contacts query-fn))) (re-frame/reg-sub :contacts/chat-photo (fn [[_ chat-id] _] [(re-frame/subscribe [:chats/chat chat-id]) (re-frame/subscribe [:contacts/contacts-by-chat filter chat-id])]) (fn [[chat contacts] [_ chat-id]] (when (and chat (not (:group-chat chat))) (cond (:photo-path chat) (:photo-path chat) (pos? (count contacts)) (:photo-path (first contacts)) :else (identicon/identicon chat-id))))) (re-frame/reg-sub :contacts/contact-by-address :<- [:contacts/contacts] (fn [contacts [_ address]] (contact.db/find-contact-by-address contacts address))) (re-frame/reg-sub :contacts/contacts-by-address :<- [:contacts/contacts] (fn [contacts] (reduce (fn [acc [_ {:keys [address] :as contact}]] (if address (assoc acc address contact) acc)) {} contacts))) ;;EXTENSIONS ============================================================================================================ ;;TODO not optimized yet (re-frame/reg-sub :extensions/identity (fn [_ [_ _ {:keys [value]}]] value)) (defn get-token-for [network all-tokens token] (if (= token "ETH") {:decimals 18 :address "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee"} (tokens/token-for (ethereum/network->chain-keyword network) all-tokens token))) (re-frame/reg-sub :extensions.wallet/balance :<- [:wallet/all-tokens] :<- [:network] :<- [:balance] (fn [[all-tokens network balance] [_ _ {token :token}]] (let [{:keys [decimals]} (get-token-for network all-tokens token) value (or (get balance (keyword token)) (money/bignumber 0))] {:value (money/token->unit value decimals) :value-in-wei value}))) (re-frame/reg-sub :extensions.wallet/token :<- [:wallet/all-tokens] :<- [:network] (fn [[all-tokens network] [_ _ {token :token amount :amount amount-in-wei :amount-in-wei}]] (let [{:keys [decimals] :as m} (get-token-for network all-tokens token)] (merge m (when amount {:amount-in-wei (money/unit->token amount decimals)}) (when amount-in-wei {:amount (money/token->unit amount-in-wei decimals)}))))) (defn normalize-token [m] (update m :symbol name)) (re-frame/reg-sub :extensions.wallet/tokens :<- [:wallet/all-tokens] :<- [:wallet/visible-tokens-symbols] :<- [:network] (fn [[all-tokens visible-tokens-symbols network] [_ _ {filter-vector :filter visible :visible}]] (let [tokens (map normalize-token (filter #(and (not (:nft? %)) (if visible (contains? visible-tokens-symbols (:symbol %)) true)) (tokens/sorted-tokens-for all-tokens (ethereum/network->chain-keyword network))))] (if filter-vector (filter #((set filter-vector) (:symbol %)) tokens) tokens)))) (re-frame/reg-sub :store/get (fn [db [_ {id :id} {:keys [key] :as params}]] (let [result (get-in db [:extensions/store id key])] (if (:reverse params) (reverse result) result)))) (re-frame/reg-sub :store/get-in (fn [db [_ {id :id} {:keys [keys]}]] (get-in db (into [] (concat [:extensions/store id] keys))))) (defn- ->contact [{:keys [photo-path address name public-key]}] {:photo photo-path :name name :address (str "0x" address) :public-key public-key}) (re-frame/reg-sub :extensions.contacts/all :<- [:contacts/active] (fn [[contacts] _] (map #(update % :address ->contact)))) (re-frame/reg-sub :store/get-vals (fn [db [_ {id :id} {:keys [key]}]] (vals (get-in db [:extensions/store id key])))) (re-frame/reg-sub :extensions.time/now (fn [_ _] (.toLocaleString (js/Date.)))) ;;MAILSERVER =========================================================================================================== (re-frame/reg-sub :mailserver/connecting? :<- [:mailserver/state] (fn [state] (#{:connecting :added} state))) (re-frame/reg-sub :mailserver/connection-error? :<- [:mailserver/state] (fn [state] (#{:error :disconnected} state))) (re-frame/reg-sub :chats/fetching-gap-in-progress? :<- [:chats/current-chat-id] :<- [:mailserver/fetching-gaps-in-progress] (fn [[chat-id gaps] [_ ids]] (seq (select-keys (get gaps chat-id) ids)))) (re-frame/reg-sub :mailserver/fetching? :<- [:mailserver/state] :<- [:mailserver/pending-requests] :<- [:mailserver/connecting?] :<- [:mailserver/connection-error?] :<- [:mailserver/request-error?] (fn [[state pending-requests connecting? connection-error? request-error?]] (and pending-requests (= state :connected) (pos-int? pending-requests) (not (or connecting? connection-error? request-error?))))) (re-frame/reg-sub :mailserver/fleet-mailservers :<- [:settings/current-fleet] :<- [:mailserver/mailservers] (fn [[current-fleet mailservers]] (current-fleet mailservers))) (re-frame/reg-sub :mailserver.edit/connected? :<- [:mailserver.edit/mailserver] :<- [:mailserver/current-id] (fn [[mailserver current-mailserver-id]] (= (get-in mailserver [:id :value]) current-mailserver-id))) (re-frame/reg-sub :mailserver.edit/validation-errors :<- [:mailserver.edit/mailserver] (fn [mailserver] (set (keep (fn [[k {:keys [error]}]] (when error k)) mailserver)))) (re-frame/reg-sub :mailserver/connected? :<- [:mailserver/state] :<- [:network-status] (fn [[mail-state network-status]] (let [connected? (= :connected mail-state) online? (= :online network-status)] (and connected? online?)))) (re-frame/reg-sub :mailserver/preferred-id :<- [:account-settings] (fn [settings] (get-in settings [:mailserver (fleet/current-fleet-sub settings)]))) ;;SEARCH ============================================================================================================== (defn extract-chat-attributes [chat] (let [{:keys [name random-name tags]} (val chat)] (into [name random-name] tags))) (defn apply-filter "extract-attributes-fn is a function that take an element from the collection and returns a vector of attributes which are strings apply-filter returns the elements for which at least one attribute includes the search-filter apply-filter returns nil if the search-filter is empty or if there is no element that match the filter" [search-filter coll extract-attributes-fn] (when (not-empty search-filter) (let [search-filter (string/lower-case search-filter) results (filter (fn [element] (some (fn [s] (when (string? s) (string/includes? (string/lower-case s) search-filter))) (extract-attributes-fn element))) coll)] (when (not-empty results) (sort-by #(-> % second :timestamp) > (into {} results)))))) (re-frame/reg-sub :search/filtered-chats :<- [:chats/active-chats] :<- [:search/filter] (fn [[chats search-filter]] (apply-filter search-filter chats extract-chat-attributes)))