1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-07-24 15:49:39 +02:00
Maybe/app/helpers/settings_helper.rb
Zach Gollwitzer 65329b333d
Some checks are pending
Publish Docker image / ci (push) Waiting to run
Publish Docker image / Build docker image (push) Blocked by required conditions
Fix settings labels
Fixes #2424
2025-06-30 10:22:37 -04:00

65 lines
2.3 KiB
Ruby

module SettingsHelper
SETTINGS_ORDER = [
{ name: "Account", path: :settings_profile_path },
{ name: "Preferences", path: :settings_preferences_path },
{ name: "Security", path: :settings_security_path },
{ name: "Self hosting", path: :settings_hosting_path, condition: :self_hosted? },
{ name: "API Key", path: :settings_api_key_path },
{ name: "Billing", path: :settings_billing_path, condition: :not_self_hosted? },
{ name: "Accounts", path: :accounts_path },
{ name: "Imports", path: :imports_path },
{ name: "Tags", path: :tags_path },
{ name: "Categories", path: :categories_path },
{ name: "Rules", path: :rules_path },
{ name: "Merchants", path: :family_merchants_path },
{ name: "What's new", path: :changelog_path },
{ name: "Feedback", path: :feedback_path }
]
def adjacent_setting(current_path, offset)
visible_settings = SETTINGS_ORDER.select { |setting| setting[:condition].nil? || send(setting[:condition]) }
current_index = visible_settings.index { |setting| send(setting[:path]) == current_path }
return nil unless current_index
adjacent_index = current_index + offset
return nil if adjacent_index < 0 || adjacent_index >= visible_settings.size
adjacent = visible_settings[adjacent_index]
render partial: "settings/settings_nav_link_large", locals: {
path: send(adjacent[:path]),
direction: offset > 0 ? "next" : "previous",
title: adjacent[:name]
}
end
def settings_section(title:, subtitle: nil, &block)
content = capture(&block)
render partial: "settings/section", locals: { title: title, subtitle: subtitle, content: content }
end
def settings_nav_footer
previous_setting = adjacent_setting(request.path, -1)
next_setting = adjacent_setting(request.path, 1)
content_tag :div, class: "hidden md:flex flex-row justify-between gap-4" do
concat(previous_setting)
concat(next_setting)
end
end
def settings_nav_footer_mobile
previous_setting = adjacent_setting(request.path, -1)
next_setting = adjacent_setting(request.path, 1)
content_tag :div, class: "md:hidden flex flex-col gap-4" do
concat(previous_setting)
concat(next_setting)
end
end
private
def not_self_hosted?
!self_hosted?
end
end