mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-22 06:39:39 +02:00
* Preserve transaction filters across page visits * Preserve params when per_page is updated * Autofocus selected transactions * Lint fixes * Fix syntax error * Fix filter clearing * Update e2e tests for new UI * Consolidate focus behavior into concern * Lint fixes
21 lines
609 B
Ruby
21 lines
609 B
Ruby
module TransactionsHelper
|
|
def transaction_search_filters
|
|
[
|
|
{ key: "account_filter", icon: "layers" },
|
|
{ key: "date_filter", icon: "calendar" },
|
|
{ key: "type_filter", icon: "tag" },
|
|
{ key: "amount_filter", icon: "hash" },
|
|
{ key: "category_filter", icon: "shapes" },
|
|
{ key: "tag_filter", icon: "tags" },
|
|
{ key: "merchant_filter", icon: "store" }
|
|
]
|
|
end
|
|
|
|
def get_transaction_search_filter_partial_path(filter)
|
|
"transactions/searches/filters/#{filter[:key]}"
|
|
end
|
|
|
|
def get_default_transaction_search_filter
|
|
transaction_search_filters[0]
|
|
end
|
|
end
|