mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-21 14:19:39 +02:00
* Clean up env example files * Fix duplicate category creations * Fix duplicate tag and merchant creation * Add initial valuation to imported accounts * Add upgrade modal prompt * Don't hide content on billing page * Add temporary session for new customers * Lint fixes * Fix unused translations * Fix system tests
47 lines
2 KiB
Ruby
47 lines
2 KiB
Ruby
module SettingsHelper
|
|
SETTINGS_ORDER = [
|
|
{ name: I18n.t("settings.nav.profile_label"), path: :settings_profile_path },
|
|
{ name: I18n.t("settings.nav.preferences_label"), path: :settings_preferences_path },
|
|
{ name: I18n.t("settings.nav.self_hosting_label"), path: :settings_hosting_path, condition: :self_hosted? },
|
|
{ name: I18n.t("settings.nav.billing_label"), path: :settings_billing_path },
|
|
{ name: I18n.t("settings.nav.accounts_label"), path: :accounts_path },
|
|
{ name: I18n.t("settings.nav.imports_label"), path: :imports_path },
|
|
{ name: I18n.t("settings.nav.tags_label"), path: :tags_path },
|
|
{ name: I18n.t("settings.nav.categories_label"), path: :categories_path },
|
|
{ name: I18n.t("settings.nav.merchants_label"), path: :merchants_path },
|
|
{ name: I18n.t("settings.nav.whats_new_label"), path: :changelog_path },
|
|
{ name: I18n.t("settings.nav.feedback_label"), 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/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: "flex justify-between gap-4" do
|
|
concat(previous_setting)
|
|
concat(next_setting)
|
|
end
|
|
end
|
|
end
|