mirror of
https://github.com/we-promise/sure.git
synced 2026-04-07 14:31:25 +00:00
* Add dynamic assistant icon: OpenClaw lobster SVG for external assistant When a family (or installation via ASSISTANT_TYPE env var) uses the "external" assistant, the AI avatar now shows a lobster/claw icon (claw.svg / claw-dark.svg) instead of the default builtin AI icon. The icon switches dynamically based on the current configuration. https://claude.ai/code/session_01Wt7HiFypk3Nbs8z2hAkmkG * Update app/views/chats/_ai_avatar.html.erb Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> Signed-off-by: Juan José Mata <jjmata@jjmata.com> --------- Signed-off-by: Juan José Mata <jjmata@jjmata.com> Co-authored-by: Claude <noreply@anthropic.com> Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
194 lines
5.3 KiB
Ruby
194 lines
5.3 KiB
Ruby
module ApplicationHelper
|
|
include Pagy::Frontend
|
|
|
|
def product_name
|
|
Rails.configuration.x.product_name
|
|
end
|
|
|
|
def brand_name
|
|
Rails.configuration.x.brand_name
|
|
end
|
|
|
|
def styled_form_with(**options, &block)
|
|
options[:builder] = StyledFormBuilder
|
|
form_with(**options, &block)
|
|
end
|
|
|
|
def icon(key, size: "md", color: "default", custom: false, as_button: false, **opts)
|
|
extra_classes = opts.delete(:class)
|
|
sizes = { xs: "w-3 h-3", sm: "w-4 h-4", md: "w-5 h-5", lg: "w-6 h-6", xl: "w-7 h-7", "2xl": "w-8 h-8" }
|
|
colors = { default: "fg-gray", white: "fg-inverse", success: "text-success", warning: "text-warning", destructive: "text-destructive", current: "text-current" }
|
|
|
|
icon_classes = class_names(
|
|
"shrink-0",
|
|
sizes[size.to_sym],
|
|
colors[color.to_sym],
|
|
extra_classes
|
|
)
|
|
|
|
if custom
|
|
inline_svg_tag("#{key}.svg", class: icon_classes, **opts)
|
|
elsif as_button
|
|
render DS::Button.new(variant: "icon", class: extra_classes, icon: key, size: size, type: "button", **opts)
|
|
else
|
|
lucide_icon(key, class: icon_classes, **opts)
|
|
end
|
|
end
|
|
|
|
# Convert alpha (0-1) to 8-digit hex (00-FF)
|
|
def hex_with_alpha(hex, alpha)
|
|
alpha_hex = (alpha * 255).round.to_s(16).rjust(2, "0")
|
|
"#{hex}#{alpha_hex}"
|
|
end
|
|
|
|
def title(page_title)
|
|
content_for(:title) { page_title }
|
|
end
|
|
|
|
def header_title(page_title)
|
|
content_for(:header_title) { page_title }
|
|
end
|
|
|
|
def header_description(page_description)
|
|
content_for(:header_description) { page_description }
|
|
end
|
|
|
|
def page_active?(path)
|
|
current_page?(path) || (request.path.start_with?(path) && path != "/")
|
|
end
|
|
|
|
# Wrapper around I18n.l to support custom date formats
|
|
def format_date(object, format = :default, options = {})
|
|
date = object.to_date
|
|
|
|
format_code = options[:format_code] || Current.family&.date_format
|
|
|
|
if format_code.present?
|
|
date.strftime(format_code)
|
|
else
|
|
I18n.l(date, format: format, **options)
|
|
end
|
|
end
|
|
|
|
|
|
def family_moniker
|
|
Current.family&.moniker_label || "Family"
|
|
end
|
|
|
|
def family_moniker_downcase
|
|
family_moniker.downcase
|
|
end
|
|
|
|
def family_moniker_plural
|
|
Current.family&.moniker_label_plural || "Families"
|
|
end
|
|
|
|
def family_moniker_plural_downcase
|
|
family_moniker_plural.downcase
|
|
end
|
|
|
|
def format_money(number_or_money, options = {})
|
|
return nil unless number_or_money
|
|
|
|
Money.new(number_or_money).format(options)
|
|
end
|
|
|
|
def totals_by_currency(collection:, money_method:, separator: " | ", negate: false)
|
|
collection.group_by(&:currency)
|
|
.transform_values { |item| calculate_total(item, money_method, negate) }
|
|
.map { |_currency, money| format_money(money) }
|
|
.join(separator)
|
|
end
|
|
|
|
def show_super_admin_bar?
|
|
if params[:admin].present?
|
|
cookies.permanent[:admin] = params[:admin]
|
|
end
|
|
|
|
cookies[:admin] == "true"
|
|
end
|
|
|
|
def assistant_icon
|
|
type = ENV["ASSISTANT_TYPE"].presence || Current.family&.assistant_type.presence || "builtin"
|
|
type == "external" ? "claw" : "ai"
|
|
end
|
|
|
|
def default_ai_model
|
|
# Always return a valid model, never nil or empty
|
|
# Delegates to Chat.default_model for consistency
|
|
Chat.default_model
|
|
end
|
|
|
|
# Renders Markdown text using Redcarpet
|
|
def markdown(text)
|
|
return "" if text.blank?
|
|
|
|
renderer = Redcarpet::Render::HTML.new(
|
|
hard_wrap: true,
|
|
link_attributes: { target: "_blank", rel: "noopener noreferrer" }
|
|
)
|
|
|
|
markdown = Redcarpet::Markdown.new(
|
|
renderer,
|
|
autolink: true,
|
|
tables: true,
|
|
fenced_code_blocks: true,
|
|
strikethrough: true,
|
|
superscript: true,
|
|
underline: true,
|
|
highlight: true,
|
|
quote: true,
|
|
footnotes: true
|
|
)
|
|
|
|
markdown.render(text).html_safe
|
|
end
|
|
|
|
# Generate the callback URL for Enable Banking OAuth (used in views and controller).
|
|
# In production, uses the standard Rails route.
|
|
# In development, uses DEV_WEBHOOKS_URL if set (e.g., ngrok URL).
|
|
def enable_banking_callback_url
|
|
return callback_enable_banking_items_url if Rails.env.production?
|
|
|
|
ENV.fetch("DEV_WEBHOOKS_URL", root_url).chomp("/") + "/enable_banking_items/callback"
|
|
end
|
|
|
|
# Formats quantity with adaptive precision based on the value size.
|
|
# Shows more decimal places for small quantities (common with crypto).
|
|
#
|
|
# @param qty [Numeric] The quantity to format
|
|
# @param max_precision [Integer] Maximum precision for very small numbers
|
|
# @return [String] Formatted quantity with appropriate precision
|
|
def format_quantity(qty)
|
|
return "0" if qty.nil? || qty.zero?
|
|
|
|
abs_qty = qty.abs
|
|
|
|
precision = if abs_qty >= 1
|
|
1 # "10.5"
|
|
elsif abs_qty >= 0.01
|
|
2 # "0.52"
|
|
elsif abs_qty >= 0.0001
|
|
4 # "0.0005"
|
|
else
|
|
8 # "0.00000052"
|
|
end
|
|
|
|
# Use strip_insignificant_zeros to avoid trailing zeros like "0.50000000"
|
|
number_with_precision(qty, precision: precision, strip_insignificant_zeros: true)
|
|
end
|
|
|
|
private
|
|
def calculate_total(item, money_method, negate)
|
|
# Filter out transfer-type transactions from entries
|
|
# Only Entry objects have entryable transactions, Account objects don't
|
|
items = item.reject do |i|
|
|
i.is_a?(Entry) &&
|
|
i.entryable.is_a?(Transaction) &&
|
|
i.entryable.transfer?
|
|
end
|
|
total = items.sum(&money_method)
|
|
negate ? -total : total
|
|
end
|
|
end
|