Module: AdminSuite::BaseHelper

Includes:
IconHelper, PanelsHelper, ThemeHelper, UI::FormFieldRenderer, UI::ShowValueFormatter, Internal::Developer::CustomRenderersHelper, Pagy::Frontend
Defined in:
app/helpers/admin_suite/base_helper.rb

Overview

Helper methods for the Admin Suite engine UI.

This is intentionally very close to the /internal/developer helper so we can keep both UIs side-by-side and compare behavior while migrating.

Instance Method Summary collapse

Methods included from ThemeHelper

#admin_suite_theme, #admin_suite_theme_style_tag, #theme_badge_primary_class, #theme_btn_primary_class, #theme_btn_primary_small_class, #theme_focus_ring_class, #theme_link_class, #theme_link_hover_text_class, #theme_primary, #theme_secondary, #theme_sidebar_gradient_class

Methods included from PanelsHelper

#panel_eval, #render_dashboard_rows, #render_panel

Methods included from IconHelper

#admin_suite_icon

Instance Method Details

#admin_suite_field_definition(field_name) ⇒ Object

Lookup the DSL field definition for a given attribute (if present).

Used to render show values with type awareness (e.g. markdown/json/label).



34
35
36
37
38
39
40
41
42
43
44
45
46
47
# File 'app/helpers/admin_suite/base_helper.rb', line 34

def admin_suite_field_definition(field_name)
  return nil unless respond_to?(:resource_config, true)

  rc = resource_config
  return nil unless rc

  rc.form_config&.fields_list.to_a.find do |f|
    f.respond_to?(:name) &&
      f.respond_to?(:type) &&
      f.name.to_sym == field_name.to_sym
  end
rescue StandardError
  nil
end

#admin_suite_rails_blob_pathObject

ActiveStorage route helpers live on the host app (main_app), not the isolated engine.



15
16
17
18
19
20
21
# File 'app/helpers/admin_suite/base_helper.rb', line 15

def admin_suite_rails_blob_path(...)
  if respond_to?(:main_app) && main_app.respond_to?(:rails_blob_path)
    main_app.rails_blob_path(...)
  else
    rails_blob_path(...)
  end
end

#admin_suite_rails_blob_representation_pathObject



23
24
25
26
27
28
29
# File 'app/helpers/admin_suite/base_helper.rb', line 23

def admin_suite_rails_blob_representation_path(...)
  if respond_to?(:main_app) && main_app.respond_to?(:rails_blob_representation_path)
    main_app.rails_blob_representation_path(...)
  else
    rails_blob_representation_path(...)
  end
end

#association_page_param(section) ⇒ Object



679
# File 'app/helpers/admin_suite/base_helper.rb', line 679

def association_page_param(section) = "#{section.association}_page"

#auto_admin_suite_path_for(item) ⇒ Object



506
507
508
509
510
511
512
513
514
515
516
517
# File 'app/helpers/admin_suite/base_helper.rb', line 506

def auto_admin_suite_path_for(item)
  return nil unless item.is_a?(ActiveRecord::Base)

  ensure_admin_resources_loaded_for!(item.class)

  resource = Admin::Base::Resource.registered_resources.find { |r| r.model_class == item.class }
  return nil unless resource&.portal_name && resource.respond_to?(:resource_name_plural)

  resource_path(portal: resource.portal_name, resource_name: resource.resource_name_plural, id: item.to_param)
rescue StandardError
  nil
end


879
880
881
882
883
884
885
886
887
888
889
# File 'app/helpers/admin_suite/base_helper.rb', line 879

def build_association_link(item, section)
  if section.link_to.present?
    begin
      return send(section.link_to, item)
    rescue NoMethodError
      # fall through to auto-link
    end
  end

  auto_admin_suite_path_for(item)
end

#detect_language(field_name, content) ⇒ Object



289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
# File 'app/helpers/admin_suite/base_helper.rb', line 289

def detect_language(field_name, content)
  field_str = field_name.to_s.downcase

  return :markdown if field_str.include?("template") || field_str.include?("prompt")
  return :ruby if field_str.include?("code") && content.include?("def ")
  return :sql if field_str.include?("query") || field_str.include?("sql")
  return :html if field_str.include?("html") || field_str.include?("body")

  return :json if content.strip.start_with?("{", "[")
  return :ruby if content.include?("def ") || content.include?("class ")
  return :sql if content.upcase.include?("SELECT ") || content.upcase.include?("INSERT ")
  return :html if content.include?("<html") || content.include?("<div")

  nil
end

#detect_table_columns(item) ⇒ Object



850
851
852
853
854
855
856
857
# File 'app/helpers/admin_suite/base_helper.rb', line 850

def detect_table_columns(item)
  return [ :id, :name, :created_at ] unless item
  priority = [ :name, :title, :status ]
  attrs = item.attributes.keys.map(&:to_sym)
  selected = priority.select { |c| attrs.include?(c) }
  selected << :created_at if selected.size < 5 && attrs.include?(:created_at)
  selected.take(5)
end

#ensure_admin_resources_loaded_for!(model_class) ⇒ Object



519
520
521
522
523
524
525
526
527
528
529
# File 'app/helpers/admin_suite/base_helper.rb', line 519

def ensure_admin_resources_loaded_for!(model_class)
  already_loaded = Admin::Base::Resource.registered_resources.any? { |r| r.model_class == model_class }
  return if already_loaded

  Array(AdminSuite.config.resource_globs).flat_map { |g| Dir[g] }.uniq.each do |file|
    require file
  end
rescue NameError
  require "admin/base/resource"
  retry
end

#format_show_value(record, field_name) ⇒ String

Formats a value for display on show pages

Parameters:

  • record (ActiveRecord::Base)

    The record

  • field_name (Symbol, String)

    Field name

Returns:

  • (String)

    HTML safe formatted value



117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
# File 'app/helpers/admin_suite/base_helper.rb', line 117

def format_show_value(record, field_name)
  value = record.public_send(field_name) rescue nil

  if value.is_a?(ActiveStorage::Attached::One)
    return render_attachment_preview(value)
  elsif value.is_a?(ActiveStorage::Attached::Many)
    return render_attachments_preview(value)
  end

  case value
  when nil
    (:span, "", class: "text-slate-400")
  when true
    (:span, class: "inline-flex items-center gap-1") do
      svg = '<svg class="w-4 h-4 text-green-500" fill="currentColor" viewBox="0 0 20 20"><path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clip-rule="evenodd"/></svg>'.html_safe
      concat(svg)
      concat((:span, "Yes", class: "text-green-600 dark:text-green-400 font-medium"))
    end
  when false
    (:span, class: "inline-flex items-center gap-1") do
      svg = '<svg class="w-4 h-4 text-slate-400" fill="currentColor" viewBox="0 0 20 20"><path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zM8.707 7.293a1 1 0 00-1.414 1.414L8.586 10l-1.293 1.293a1 1 0 101.414 1.414L10 11.414l1.293 1.293a1 1 0 001.414-1.414L11.414 10l1.293-1.293a1 1 0 00-1.414-1.414L10 8.586 8.707 7.293z" clip-rule="evenodd"/></svg>'.html_safe
      concat(svg)
      concat((:span, "No", class: "text-slate-500"))
    end
  when Time, DateTime
    (:span, class: "inline-flex items-center gap-2") do
      concat((:span, value.strftime("%B %d, %Y at %H:%M"), class: "font-medium"))
      concat((:span, "(#{time_ago_in_words(value)} ago)", class: "text-slate-500 dark:text-slate-400 text-xs"))
    end
  when Date
    value.strftime("%B %d, %Y")
  when ActiveRecord::Base
    link_text = value.respond_to?(:name) ? value.name : "#{value.class.name} ##{value.id}"
    (:span, link_text, class: "text-indigo-600 dark:text-indigo-400")
  when Hash
    render_json_block(value)
  when Array
    if value.empty?
      (:span, "Empty array", class: "text-slate-400 italic")
    elsif value.first.is_a?(Hash)
      render_json_block(value)
    else
      (:div, class: "flex flex-wrap gap-1") do
        value.each do |item|
          concat((:span, item.to_s, class: "inline-flex items-center px-2 py-0.5 rounded-full text-xs font-medium bg-slate-100 dark:bg-slate-700 text-slate-700 dark:text-slate-300"))
        end
      end
    end
  when Integer, Float, BigDecimal
    (:span, number_with_delimiter(value), class: "font-mono")
  else
    value_str = value.to_s

    if value_str.start_with?("{", "[") && value_str.length > 10
      begin
        parsed = JSON.parse(value_str)
        render_json_block(parsed)
      rescue JSON::ParserError
        render_text_block(value_str)
      end
    elsif value_str.include?("\n") || value_str.length > 200
      render_text_block(value_str, detect_language(field_name, value_str))
    else
      value_str
    end
  end
end

#format_table_cell(value) ⇒ Object



859
860
861
862
863
864
865
866
867
868
# File 'app/helpers/admin_suite/base_helper.rb', line 859

def format_table_cell(value)
  case value
  when nil then ""
  when true, false then value ? "Yes" : "No"
  when Time, DateTime then value.strftime("%b %d, %H:%M")
  when Date then value.strftime("%b %d, %Y")
  when ActiveRecord::Base then item_display_title(value)
  else value.to_s.truncate(50)
  end
end

#highlight_json(json_str) ⇒ Object



278
279
280
281
282
283
284
285
286
287
# File 'app/helpers/admin_suite/base_helper.rb', line 278

def highlight_json(json_str)
  highlighted = h(json_str)
    .gsub(/("(?:[^"\\]|\\.)*")(\s*:)/) { "<span class=\"text-purple-400\">#{$1}</span>#{$2}" }
    .gsub(/:\s*("(?:[^"\\]|\\.)*")/) { ":<span class=\"text-green-400\">#{$1}</span>" }
    .gsub(/:\s*(true|false)/) { ":<span class=\"text-orange-400\">#{$1}</span>" }
    .gsub(/:\s*(-?\d+(?:\.\d+)?)/) { ":<span class=\"text-cyan-400\">#{$1}</span>" }
    .gsub(/:\s*(null)/) { ":<span class=\"text-red-400\">#{$1}</span>" }

  highlighted.html_safe
end

#item_display_title(item) ⇒ Object



870
871
872
873
874
875
876
877
# File 'app/helpers/admin_suite/base_helper.rb', line 870

def item_display_title(item)
  return item.name if item.respond_to?(:name) && item.name.present?
  return item.title if item.respond_to?(:title) && item.title.present?
  return item.display_title if item.respond_to?(:display_title) && item.display_title.present?
  return item.content.to_s.truncate(50) if item.respond_to?(:content)

  "##{item.id}"
end

#label_badge_colors(color) ⇒ Object



927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
# File 'app/helpers/admin_suite/base_helper.rb', line 927

def label_badge_colors(color)
  case color.to_s.downcase
  when "green"
    "bg-green-100 dark:bg-green-900/30 text-green-700 dark:text-green-400"
  when "amber", "yellow", "orange"
    "bg-amber-100 dark:bg-amber-900/30 text-amber-700 dark:text-amber-400"
  when "blue"
    "bg-blue-100 dark:bg-blue-900/30 text-blue-700 dark:text-blue-400"
  when "red"
    "bg-red-100 dark:bg-red-900/30 text-red-700 dark:text-red-400"
  when "indigo"
    "bg-indigo-100 dark:bg-indigo-900/30 text-indigo-700 dark:text-indigo-400"
  when "purple"
    "bg-purple-100 dark:bg-purple-900/30 text-purple-700 dark:text-purple-400"
  when "violet"
    "bg-violet-100 dark:bg-violet-900/30 text-violet-700 dark:text-violet-400"
  when "emerald"
    "bg-emerald-100 dark:bg-emerald-900/30 text-emerald-700 dark:text-emerald-400"
  when "cyan"
    "bg-cyan-100 dark:bg-cyan-900/30 text-cyan-700 dark:text-cyan-400"
  else
    "bg-slate-100 dark:bg-slate-700 text-slate-600 dark:text-slate-400"
  end
end


701
702
703
704
705
706
707
708
709
# File 'app/helpers/admin_suite/base_helper.rb', line 701

def pagy_next_link(pagy)
  if pagy.next
    link_to("Next", pagy_url_for(pagy, pagy.next),
      class: "px-3 py-1.5 text-sm font-medium text-slate-700 dark:text-slate-300 bg-white dark:bg-slate-800 border border-slate-300 dark:border-slate-600 rounded-lg hover:bg-slate-50 dark:hover:bg-slate-700 transition-colors")
  else
    (:span, "Next",
      class: "px-3 py-1.5 text-sm font-medium text-slate-400 dark:text-slate-500 bg-slate-100 dark:bg-slate-800 border border-slate-200 dark:border-slate-700 rounded-lg cursor-not-allowed")
  end
end


711
712
713
714
715
# File 'app/helpers/admin_suite/base_helper.rb', line 711

def pagy_page_links(pagy)
  (:div, class: "flex items-center gap-1") do
    pagy.series.each { |item| concat(render_pagy_series_item(pagy, item)) }
  end
end


691
692
693
694
695
696
697
698
699
# File 'app/helpers/admin_suite/base_helper.rb', line 691

def pagy_prev_link(pagy)
  if pagy.prev
    link_to("Prev", pagy_url_for(pagy, pagy.prev),
      class: "px-3 py-1.5 text-sm font-medium text-slate-700 dark:text-slate-300 bg-white dark:bg-slate-800 border border-slate-300 dark:border-slate-600 rounded-lg hover:bg-slate-50 dark:hover:bg-slate-700 transition-colors")
  else
    (:span, "Prev",
      class: "px-3 py-1.5 text-sm font-medium text-slate-400 dark:text-slate-500 bg-slate-100 dark:bg-slate-800 border border-slate-200 dark:border-slate-700 rounded-lg cursor-not-allowed")
  end
end

#portal_color(portal_key) ⇒ String

Returns the color scheme for a portal

Parameters:

  • portal_key (Symbol)

    Portal identifier

Returns:

  • (String)


58
59
60
61
62
63
64
65
66
67
68
69
70
# File 'app/helpers/admin_suite/base_helper.rb', line 58

def portal_color(portal_key)
  portal_key = portal_key.to_sym
  color = (navigation_items.dig(portal_key, :color) rescue nil)
  return color.to_s if color.present?

  case portal_key
  when :ops then "amber"
  when :ai then "cyan"
  when :assistant then "violet"
  when :email then "emerald"
  else "slate"
  end
end

#portal_icon(portal_key, **opts) ⇒ ActiveSupport::SafeBuffer, String

Returns an icon for a portal.

Parameters:

  • portal_key (Symbol)

    Portal identifier

Returns:

  • (ActiveSupport::SafeBuffer, String)


76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
# File 'app/helpers/admin_suite/base_helper.rb', line 76

def portal_icon(portal_key, **opts)
  portal_key = portal_key.to_sym
  icon = (navigation_items.dig(portal_key, :icon) rescue nil)
  icon ||= begin
    {
      ops: "settings",
      ai: "sparkles",
      assistant: "bot",
      email: "mail"
    }[portal_key]
  end
  icon = icon.presence || "layout-grid"

  admin_suite_icon(icon, **opts)
end

#render_association_card_single(item, section) ⇒ Object



731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
# File 'app/helpers/admin_suite/base_helper.rb', line 731

def render_association_card_single(item, section)
  link_path = build_association_link(item, section)

  card_content = capture do
    concat((:div, class: "flex items-center justify-between gap-3") do
      concat((:div, class: "min-w-0 flex-1") do
        title = item_display_title(item)
        title_class = link_path ? "font-medium text-slate-900 dark:text-white group-hover:text-indigo-600 dark:group-hover:text-indigo-400" : "font-medium text-slate-900 dark:text-white"
        concat((:div, title, class: title_class))

        subtitle = []
        subtitle << item.status.to_s.humanize if item.respond_to?(:status) && item.status.present?
        subtitle << item.email_address if item.respond_to?(:email_address) && item.email_address.present?
        subtitle << item.tool_key if item.respond_to?(:tool_key) && item.tool_key.present?
        concat((:div, subtitle.first, class: "text-sm text-slate-500 dark:text-slate-400 mt-0.5")) if subtitle.any?
      end)

      if link_path
        concat('<svg class="w-5 h-5 text-slate-300 dark:text-slate-600 group-hover:text-indigo-500 flex-shrink-0" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7"/></svg>'.html_safe)
      end
    end)
  end

  link_path ? link_to(card_content, link_path, class: "flex items-center -m-4 p-4 rounded-lg hover:bg-indigo-50 dark:hover:bg-indigo-900/10 transition-colors group") : (:div, card_content, class: "flex items-center")
end

#render_association_cards(items, section) ⇒ Object



825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
# File 'app/helpers/admin_suite/base_helper.rb', line 825

def render_association_cards(items, section)
  (:div, class: "grid grid-cols-1 sm:grid-cols-2 gap-3 pt-1") do
    items.each do |item|
      link_path = build_association_link(item, section)
      card_class = "border border-slate-200 dark:border-slate-700 rounded-lg p-4 transition-all"
      card_class += link_path ? " hover:border-indigo-300 dark:hover:border-indigo-700 hover:shadow-md group cursor-pointer" : " hover:bg-slate-50 dark:hover:bg-slate-900/30"

      card_content = capture do
        concat((:div, class: "flex items-start justify-between gap-2 mb-2") do
          title = item_display_title(item)
          title_class = link_path ? "font-medium text-slate-900 dark:text-white group-hover:text-indigo-600 dark:group-hover:text-indigo-400" : "font-medium text-slate-900 dark:text-white"
          concat((:span, title.truncate(35), class: title_class))
          concat(render_status_badge(item.status, size: :sm)) if item.respond_to?(:status) && item.status.present?
        end)
        concat((:div, class: "flex items-center justify-between text-xs text-slate-400 pt-2 border-t border-slate-100 dark:border-slate-700/50") do
          concat((:span, time_ago_in_words(item.created_at) + " ago")) if item.respond_to?(:created_at) && item.created_at
          concat('<svg class="w-4 h-4 text-slate-300 dark:text-slate-600 group-hover:text-indigo-500 group-hover:translate-x-0.5 transition-all" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7"/></svg>'.html_safe) if link_path
        end)
      end

      concat(link_path ? link_to(card_content, link_path, class: card_class) : (:div, card_content, class: card_class))
    end
  end
end

#render_association_list(items, section) ⇒ Object



757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
# File 'app/helpers/admin_suite/base_helper.rb', line 757

def render_association_list(items, section)
  (:div, class: "divide-y divide-slate-200 dark:divide-slate-700 -mx-6 -mt-2 -mb-6") do
    items.each do |item|
      link_path = build_association_link(item, section)
      wrapper = if link_path
        ->(content) { link_to(link_path, class: "block px-6 py-4 hover:bg-indigo-50/50 dark:hover:bg-indigo-900/10 transition-colors group") { content } }
      else
        ->(content) { (:div, content, class: "px-6 py-4") }
      end

      concat(wrapper.call(capture do
        concat((:div, class: "flex items-start justify-between gap-4") do
          concat((:div, class: "min-w-0 flex-1") do
            concat((:div, class: "flex items-center gap-2") do
              title = item_display_title(item)
              title_class = link_path ? "text-slate-900 dark:text-white group-hover:text-indigo-600 dark:group-hover:text-indigo-400" : "text-slate-900 dark:text-white"
              concat((:span, title.truncate(60), class: "font-medium #{title_class} truncate"))
              concat(render_status_badge(item.status, size: :sm)) if item.respond_to?(:status) && item.status.present?
            end)
          end)

          concat((:div, class: "flex items-center gap-3 flex-shrink-0 text-xs text-slate-400") do
            concat((:span, time_ago_in_words(item.created_at) + " ago")) if item.respond_to?(:created_at) && item.created_at
            if link_path
              concat('<svg class="w-4 h-4 text-slate-300 dark:text-slate-600 group-hover:text-indigo-500 transition-colors" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7"/></svg>'.html_safe)
            end
          end)
        end)
      end))
    end
  end
end

#render_association_pagination(pagy) ⇒ Object



681
682
683
684
685
686
687
688
689
# File 'app/helpers/admin_suite/base_helper.rb', line 681

def render_association_pagination(pagy)
  (:div, class: "-mx-6 border-t border-slate-200 dark:border-slate-700 bg-slate-50/50 dark:bg-slate-900/30 px-6 py-3") do
    (:nav, class: "flex items-center justify-between", "aria-label" => "Pagination") do
      concat(pagy_prev_link(pagy))
      concat(pagy_page_links(pagy))
      concat(pagy_next_link(pagy))
    end
  end
end

#render_association_section(resource, section) ⇒ Object

—- association rendering —-



641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
# File 'app/helpers/admin_suite/base_helper.rb', line 641

def render_association_section(resource, section)
  associated = resource.public_send(section.association) rescue nil
  return (:p, "None found", class: "text-slate-400 italic text-sm") if associated.nil?

  is_single = !associated.respond_to?(:to_a) || associated.is_a?(ActiveRecord::Base)
  return render_association_card_single(associated, section) if is_single

  items = associated
  pagy = nil

  if section.paginate
    per_page = (section.per_page || section.limit || 20).to_i
    per_page = 1 if per_page < 1
    page_param = association_page_param(section)
    page = params[page_param].presence || 1
    total_count = associated.respond_to?(:count) ? associated.count : associated.to_a.size
    pagy = Pagy.new(count: total_count, page: page, limit: per_page, page_param: page_param)
    items = associated.respond_to?(:offset) ? associated.offset(pagy.offset).limit(per_page) : Array.wrap(associated)[pagy.offset, per_page] || []
  elsif section.limit
    items = associated.respond_to?(:limit) ? associated.limit(section.limit) : Array.wrap(associated).first(section.limit)
  end

  items = Array.wrap(items)
  return (:p, "None found", class: "text-slate-400 italic text-sm") if items.empty?

  (:div) do
    case section.display
    when :table
      concat(render_association_table(items, section))
    when :cards
      concat(render_association_cards(items, section))
    else
      concat(render_association_list(items, section))
    end
    concat(render_association_pagination(pagy)) if pagy
  end
end

#render_association_table(items, section) ⇒ Object

Minimal association table support (matches internal portal table UX enough for now).



791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
# File 'app/helpers/admin_suite/base_helper.rb', line 791

def render_association_table(items, section)
  columns = section.columns.presence || detect_table_columns(items.first)

  (:div, class: "overflow-x-auto -mx-6 -mt-1") do
    (:table, class: "min-w-full divide-y divide-slate-200 dark:divide-slate-700") do
      concat((:thead, class: "bg-slate-50/50 dark:bg-slate-900/30") do
        (:tr) do
          Array.wrap(columns).each do |col|
            header = col.to_s.gsub(/_id$/, "").humanize
            concat((:th, header, class: "px-4 py-2.5 text-left text-xs font-medium text-slate-500 dark:text-slate-400 uppercase tracking-wider first:pl-6"))
          end
          concat((:th, "", class: "px-4 py-2.5 w-16"))
        end
      end)

      concat((:tbody, class: "divide-y divide-slate-200 dark:divide-slate-700") do
        items.each do |item|
          link_path = build_association_link(item, section)
          concat((:tr, class: link_path ? "hover:bg-indigo-50/50 dark:hover:bg-indigo-900/10 cursor-pointer group" : "") do
            Array.wrap(columns).each_with_index do |col, idx|
              value = item.public_send(col) rescue nil
              text = format_table_cell(value)
              concat((:td, text, class: (idx == 0 ? "px-4 py-3 text-sm first:pl-6" : "px-4 py-3 text-sm")))
            end
            concat((:td, class: "px-4 py-3 text-right pr-6") do
              link_path ? link_to("View", link_path, class: "inline-flex items-center text-indigo-600 dark:text-indigo-400 hover:text-indigo-800 dark:hover:text-indigo-300 text-sm font-medium") : ""
            end)
          end)
        end
      end)
    end
  end
end

#render_attachment_preview(attachment) ⇒ Object



185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
# File 'app/helpers/admin_suite/base_helper.rb', line 185

def render_attachment_preview(attachment)
  return (:span, "", class: "text-slate-400") unless attachment.attached?

  blob = attachment.blob

  if blob.image?
    variant = attachment.variant(resize_to_limit: [ 600, 400 ])
    variant_url =
      begin
        admin_suite_rails_blob_representation_path(variant.processed, only_path: true)
      rescue StandardError
        admin_suite_rails_blob_path(blob, disposition: :inline)
      end

    (:div, class: "space-y-2") do
      concat((:div, class: "inline-block rounded-lg overflow-hidden border border-slate-200 dark:border-slate-700") do
        image_tag(variant_url,
          class: "max-w-full h-auto max-h-64 object-contain",
          alt: blob.filename.to_s)
      end)
      concat((:div, class: "flex items-center gap-3 text-sm text-slate-500 dark:text-slate-400") do
        concat((:span, blob.filename.to_s, class: "font-medium text-slate-700 dark:text-slate-300"))
        concat((:span, ""))
        concat((:span, number_to_human_size(blob.byte_size)))
        concat((:span, ""))
        concat(link_to("View full size", admin_suite_rails_blob_path(blob, disposition: :inline), target: "_blank", class: "text-indigo-600 dark:text-indigo-400 hover:underline"))
      end)
    end
  else
    (:div, class: "flex items-center gap-3 p-3 bg-slate-50 dark:bg-slate-800 rounded-lg border border-slate-200 dark:border-slate-700") do
      concat((:div, class: "flex-shrink-0 w-10 h-10 bg-slate-200 dark:bg-slate-700 rounded-lg flex items-center justify-center") do
        '<svg class="w-5 h-5 text-slate-500" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12h6m-6 4h6m2 5H7a2 2 0 01-2-2V5a2 2 0 012-2h5.586a1 1 0 01.707.293l5.414 5.414a1 1 0 01.293.707V19a2 2 0 01-2 2z"/></svg>'.html_safe
      end)
      concat((:div, class: "flex-1 min-w-0") do
        concat((:p, blob.filename.to_s, class: "font-medium text-slate-700 dark:text-slate-300 truncate"))
        concat((:p, number_to_human_size(blob.byte_size), class: "text-sm text-slate-500 dark:text-slate-400"))
      end)
      concat(link_to("Download", admin_suite_rails_blob_path(blob, disposition: :attachment),
        class: "flex-shrink-0 px-3 py-1.5 bg-indigo-600 hover:bg-indigo-700 text-white text-sm font-medium rounded-lg transition-colors"))
    end
  end
end

#render_attachments_preview(attachments) ⇒ Object



228
229
230
231
232
233
234
235
236
# File 'app/helpers/admin_suite/base_helper.rb', line 228

def render_attachments_preview(attachments)
  return (:span, "", class: "text-slate-400") unless attachments.attached?

  (:div, class: "grid grid-cols-2 md:grid-cols-3 gap-4") do
    attachments.each do |attachment|
      concat(render_attachment_preview(attachment))
    end
  end
end

#render_code_editor(f, field, _resource) ⇒ Object



1189
1190
1191
1192
1193
1194
1195
1196
1197
# File 'app/helpers/admin_suite/base_helper.rb', line 1189

def render_code_editor(f, field, _resource)
  (:div, class: "relative", data: { controller: "admin-suite--code-editor" }) do
    f.text_area(field.name,
      class: "w-full font-mono text-sm bg-slate-900 text-slate-100 p-4 rounded-lg border border-slate-700 focus:border-indigo-500 focus:ring-1 focus:ring-indigo-500",
      rows: field.rows || 12,
      placeholder: field.placeholder,
      data: { "admin-suite--code-editor-target": "textarea" })
  end
end

#render_code_preview(resource) ⇒ Object



370
371
372
373
# File 'app/helpers/admin_suite/base_helper.rb', line 370

def render_code_preview(resource)
  code = resource.respond_to?(:code) ? resource.code : resource.to_s
  render_text_block(code, :ruby)
end

#render_column_value(record, column) ⇒ String

Renders a column value from a record

Parameters:

Returns:

  • (String)


97
98
99
100
101
102
103
104
105
106
107
108
109
110
# File 'app/helpers/admin_suite/base_helper.rb', line 97

def render_column_value(record, column)
  if column.type == :toggle
    field = (column.toggle_field || column.name).to_sym
    render partial: "admin_suite/shared/toggle_cell",
           locals: { record: record, field: field }
  elsif column.type == :label
    value = column.content.is_a?(Proc) ? column.content.call(record) : (record.public_send(column.name) rescue nil)
    render_label_badge(value, color: column.label_color, size: column.label_size, record: record)
  elsif column.content.is_a?(Proc)
    column.content.call(record)
  else
    record.public_send(column.name) rescue ""
  end
end

#render_custom_section(resource, render_type) ⇒ Object



305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
# File 'app/helpers/admin_suite/base_helper.rb', line 305

def render_custom_section(resource, render_type)
  renderer = AdminSuite.config.custom_renderers[render_type.to_sym] rescue nil
  return renderer.call(resource, self) if renderer

  case render_type.to_sym
  when :prompt_template_preview
    render_prompt_template(resource)
  when :json_preview
    render_json_preview(resource)
  when :code_preview
    render_code_preview(resource)
  when :messages_preview
    render_messages_preview(resource)
  when :tool_args_preview
    render_tool_args_preview(resource)
  when :turn_messages_preview
    render_turn_messages_preview(resource)
  else
    (:p, "Unknown render type: #{render_type}", class: "text-slate-500 italic")
  end
end

#render_file_upload(f, field, resource) ⇒ Object



1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
# File 'app/helpers/admin_suite/base_helper.rb', line 1136

def render_file_upload(f, field, resource)
  attachment = resource.respond_to?(field.name) ? resource.public_send(field.name) : nil
  has_attachment = attachment.respond_to?(:attached?) && attachment.attached?
  is_image = field.type == :image || (field.accept.present? && field.accept.include?("image"))
  existing_url =
    if has_attachment && is_image
      variant = attachment.variant(resize_to_limit: [ 300, 300 ])
      begin
        admin_suite_rails_blob_representation_path(variant.processed, only_path: true)
      rescue StandardError
        admin_suite_rails_blob_path(attachment.blob, disposition: :inline)
      end
    end

  (:div,
    data: {
      controller: "admin-suite--file-upload",
      "admin-suite--file-upload-accept-value": field.accept || (is_image ? "image/*" : "*/*"),
      "admin-suite--file-upload-preview-value": field.type == :image,
      "admin-suite--file-upload-existing-url-value": existing_url
    },
    class: "space-y-3") do
    if has_attachment && is_image
      concat((:div, class: "relative inline-block") do
        concat(image_tag(existing_url, class: "max-w-[200px] max-h-[150px] rounded-lg border border-slate-200 dark:border-slate-700 object-cover", data: { "admin-suite--file-upload-target": "imagePreview" }))
        concat(button_tag("×", type: "button",
          class: "absolute -top-2 -right-2 w-6 h-6 bg-red-500 hover:bg-red-600 text-white rounded-full flex items-center justify-center text-sm",
          data: { "admin-suite--file-upload-target": "removeButton", action: "admin-suite--file-upload#remove" }))
      end)
    else
      concat(image_tag("", class: "hidden max-w-[200px] max-h-[150px] rounded-lg border border-slate-200 dark:border-slate-700 object-cover", data: { "admin-suite--file-upload-target": "imagePreview" }))
      concat((:div, "", class: "hidden", data: { "admin-suite--file-upload-target": "filename" }))
    end

    concat((:div,
      class: "relative border-2 border-dashed border-slate-300 dark:border-slate-600 rounded-lg hover:border-indigo-400 dark:hover:border-indigo-500 transition-colors",
      data: { "admin-suite--file-upload-target": "dropzone" }) do
        concat(f.file_field(field.name,
          class: "sr-only",
          id: "#{field.name}_input",
          accept: field.accept || (is_image ? "image/*" : nil),
          data: { "admin-suite--file-upload-target": "input", action: "change->admin-suite--file-upload#preview" }))

        concat((:label, for: "#{field.name}_input",
          class: "flex flex-col items-center justify-center w-full py-6 cursor-pointer hover:bg-slate-50 dark:hover:bg-slate-900/50 rounded-lg transition-colors") do
            concat('<svg class="w-8 h-8 text-slate-400 mb-2" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M7 16a4 4 0 01-.88-7.903A5 5 0 1115.9 6L16 6a5 5 0 011 9.9M15 13l-3-3m0 0l-3 3m3-3v12"/></svg>'.html_safe)
            concat((:span, "Click to upload or drag and drop", class: "text-sm text-slate-500 dark:text-slate-400"))
            concat((:span, "PNG, JPG, WebP up to 10MB", class: "text-xs text-slate-400 mt-1")) if is_image
          end)
      end)
  end
end

#render_form_field(f, field, resource) ⇒ Object

—- form fields —-



953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
# File 'app/helpers/admin_suite/base_helper.rb', line 953

def render_form_field(f, field, resource)
  return if field.if_condition.present? && !field.if_condition.call(resource)
  return if field.unless_condition.present? && field.unless_condition.call(resource)

  capture do
    concat((:div, class: "form-group") do
      concat(f.label(field.name, class: "form-label") do
        concat(field.label)
        concat((:span, " *", class: "text-red-500")) if field.required
      end)

      field_class = "form-input w-full"
      field_class += " border-red-500" if resource.errors[field.name].any?

      field_html = case field.type
      when :textarea then f.text_area(field.name, class: field_class, rows: field.rows || 4, placeholder: field.placeholder, readonly: field.readonly)
      when :url then f.url_field(field.name, class: field_class, placeholder: field.placeholder, readonly: field.readonly)
      when :email then f.email_field(field.name, class: field_class, placeholder: field.placeholder, readonly: field.readonly)
      when :number then f.number_field(field.name, class: field_class, placeholder: field.placeholder, readonly: field.readonly)
      when :toggle then render_toggle_field(f, field, resource)
      when :label
        label_value = resource.public_send(field.name) rescue nil
        render_label_badge(label_value, color: field.label_color, size: field.label_size, record: resource)
      when :select
        collection = field.collection.is_a?(Proc) ? field.collection.call : field.collection
        f.select(field.name, collection, { include_blank: true }, class: field_class, disabled: field.readonly)
      when :searchable_select then render_searchable_select(f, field, resource)
      when :multi_select, :tags then render_multi_select(f, field, resource)
      when :image, :attachment then render_file_upload(f, field, resource)
      when :trix, :rich_text then f.rich_text_area(field.name, class: "prose dark:prose-invert max-w-none")
      when :markdown
        f.text_area(field.name, class: "#{field_class} font-mono", rows: field.rows || 12, data: { controller: "admin-suite--markdown-editor" }, placeholder: field.placeholder)
      when :file then f.file_field(field.name, class: "form-input-file", accept: field.accept)
      when :datetime then f.datetime_local_field(field.name, class: field_class, readonly: field.readonly)
      when :date then f.date_field(field.name, class: field_class, readonly: field.readonly)
      when :time then f.time_field(field.name, class: field_class, readonly: field.readonly)
      when :json
        render("admin_suite/shared/json_editor_field", f: f, field: field, resource: resource)
      when :code then render_code_editor(f, field, resource)
      else
        f.text_field(field.name, class: field_class, placeholder: field.placeholder, readonly: field.readonly)
      end

      concat(field_html)

      concat((:p, field.help, class: "mt-1 text-sm text-slate-500 dark:text-slate-400")) if field.help.present?
      concat((:p, resource.errors[field.name].first, class: "mt-1 text-sm text-red-600 dark:text-red-400")) if resource.errors[field.name].any?
    end)
  end
end

#render_json_block(data) ⇒ Object



238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
# File 'app/helpers/admin_suite/base_helper.rb', line 238

def render_json_block(data)
  json_str = JSON.pretty_generate(data)

  (:div, class: "relative group") do
    concat((:div, class: "absolute top-2 right-2 flex items-center gap-2") do
      concat((:span, "JSON", class: "text-xs font-medium text-slate-400 dark:text-slate-500 uppercase tracking-wider"))
      concat((:button,
        '<svg class="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8 16H6a2 2 0 01-2-2V6a2 2 0 012-2h8a2 2 0 012 2v2m-6 12h8a2 2 0 002-2v-8a2 2 0 00-2-2h-8a2 2 0 00-2 2v8a2 2 0 002 2z"/></svg>'.html_safe,
        type: "button",
        class: "p-1 text-slate-400 hover:text-slate-600 dark:hover:text-slate-300 opacity-0 group-hover:opacity-100 transition-opacity",
        data: { controller: "admin-suite--clipboard", action: "click->admin-suite--clipboard#copy", "admin-suite--clipboard-text-value": json_str },
        title: "Copy to clipboard"))
    end)

    concat((:pre, class: "bg-slate-900 text-slate-100 p-4 rounded-lg overflow-x-auto text-sm font-mono max-h-96 overflow-y-auto") do
      (:code, class: "language-json") do
        highlight_json(json_str)
      end
    end)
  end
end

#render_json_preview(resource) ⇒ Object



365
366
367
368
# File 'app/helpers/admin_suite/base_helper.rb', line 365

def render_json_preview(resource)
  data = resource.respond_to?(:data) ? resource.data : resource.attributes
  render_json_block(data)
end

#render_label_badge(value, color: nil, size: :md, record: nil) ⇒ Object



912
913
914
915
916
917
918
919
920
# File 'app/helpers/admin_suite/base_helper.rb', line 912

def render_label_badge(value, color: nil, size: :md, record: nil)
  return (:span, "", class: "text-slate-400") if value.blank?

  label_color = resolve_label_option(color, record).presence || :slate
  label_size = resolve_label_option(size, record).presence || :md
  colors = label_badge_colors(label_color)
  padding = label_size.to_s == "sm" ? "px-1.5 py-0.5 text-xs" : "px-2 py-1 text-xs"
  (:span, value.to_s, class: "inline-flex items-center #{padding} rounded-md font-medium #{colors}")
end

#render_main_fields(resource, fields) ⇒ Object



629
630
631
632
633
634
635
636
637
638
# File 'app/helpers/admin_suite/base_helper.rb', line 629

def render_main_fields(resource, fields)
  (:dl, class: "space-y-6") do
    fields.each do |field_name|
      concat((:div) do
        concat((:dt, field_name.to_s.humanize, class: "text-sm font-medium text-slate-500 dark:text-slate-400 mb-2"))
        concat((:dd, class: "text-sm text-slate-900 dark:text-white") { format_show_value(resource, field_name) })
      end)
    end
  end
end

#render_messages_preview(resource) ⇒ Object



375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
# File 'app/helpers/admin_suite/base_helper.rb', line 375

def render_messages_preview(resource)
  messages = resource.respond_to?(:messages) ? resource.messages : []
  if messages.respond_to?(:chronological)
    messages = messages.chronological
  end
  messages = messages.limit(50) if messages.respond_to?(:limit)
  messages = Array.wrap(messages)

  return (:p, "No messages", class: "text-slate-500 italic") if messages.blank?

  (:div, class: "space-y-4 max-h-[600px] overflow-y-auto -mx-6 -mb-6 p-6 pt-0") do
    messages.each_with_index do |msg, idx|
      if msg.respond_to?(:role)
        role = msg.role
        content = msg.content
        created_at = msg.respond_to?(:created_at) ? msg.created_at : nil
      else
        role = msg["role"] || msg[:role] || "unknown"
        content = msg["content"] || msg[:content] || ""
        created_at = msg["created_at"] || msg[:created_at]
      end

      role_class = case role.to_s
      when "user" then "bg-blue-50 dark:bg-blue-900/20 border-blue-200 dark:border-blue-800"
      when "assistant" then "bg-emerald-50 dark:bg-emerald-900/20 border-emerald-200 dark:border-emerald-800"
      when "tool" then "bg-amber-50 dark:bg-amber-900/20 border-amber-200 dark:border-amber-800"
      when "system" then "bg-slate-50 dark:bg-slate-700/50 border-slate-200 dark:border-slate-600"
      else "bg-slate-50 dark:bg-slate-800 border-slate-200 dark:border-slate-700"
      end

      role_icon = case role.to_s
      when "user"
        '<svg class="w-4 h-4 text-blue-500" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M16 7a4 4 0 11-8 0 4 4 0 018 0zM12 14a7 7 0 00-7 7h14a7 7 0 00-7-7z"/></svg>'.html_safe
      when "assistant"
        '<svg class="w-4 h-4 text-emerald-500" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 3v2m6-2v2M9 19v2m6-2v2M5 9H3m2 6H3m18-6h-2m2 6h-2M7 19h10a2 2 0 002-2V7a2 2 0 00-2-2H7a2 2 0 00-2 2v10a2 2 0 002 2zM9 9h6v6H9V9z"/></svg>'.html_safe
      when "tool"
        '<svg class="w-4 h-4 text-amber-500" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10.325 4.317c.426-1.756 2.924-1.756 3.35 0a1.724 1.724 0 002.573 1.066c1.543-.94 3.31.826 2.37 2.37a1.724 1.724 0 001.065 2.572c1.756.426 1.756 2.924 0 3.35a1.724 1.724 0 00-1.066 2.573c.94 1.543-.826 3.31-2.37 2.37a1.724 1.724 0 00-2.572 1.065c-.426 1.756-2.924 1.756-3.35 0a1.724 1.724 0 00-2.573-1.066c-1.543.94-3.31-.826-2.37-2.37a1.724 1.724 0 00-1.065-2.572c-1.756-.426-1.756-2.924 0-3.35a1.724 1.724 0 001.066-2.573c-.94-1.543.826-3.31 2.37-2.37.996.608 2.296.07 2.572-1.065z"/></svg>'.html_safe
      else
        '<svg class="w-4 h-4 text-slate-400" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8 12h.01M12 12h.01M16 12h.01M21 12c0 4.418-4.03 8-9 8a9.863 9.863 0 01-4.255-.949L3 20l1.395-3.72C3.512 15.042 3 13.574 3 12c0-4.418 4.03-8 9-8s9 3.582 9 8z"/></svg>'.html_safe
      end

      concat((:div, class: "rounded-lg border p-4 #{role_class}") do
        concat((:div, class: "flex items-center justify-between mb-3") do
          concat((:div, class: "flex items-center gap-2") do
            concat(role_icon)
            concat((:span, role.to_s.capitalize, class: "text-sm font-medium text-slate-700 dark:text-slate-200"))
          end)
          concat((:div, class: "flex items-center gap-2 text-xs text-slate-400") do
            concat((:span, created_at.strftime("%H:%M:%S"))) if created_at.respond_to?(:strftime)
            concat((:span, "##{idx + 1}"))
          end)
        end)

        content_str = content.to_s
        if role.to_s == "tool" && content_str.start_with?("{", "[")
          begin
            parsed = JSON.parse(content_str)
            concat(render_json_block(parsed))
          rescue JSON::ParserError
            concat((:div, simple_format(h(content_str)), class: "prose dark:prose-invert prose-sm max-w-none"))
          end
        else
          concat((:div, simple_format(h(content_str)), class: "prose dark:prose-invert prose-sm max-w-none"))
        end
      end)
    end
  end
end

#render_multi_select(_f, field, resource) ⇒ Object



1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
# File 'app/helpers/admin_suite/base_helper.rb', line 1070

def render_multi_select(_f, field, resource)
  param_key = resource.class.model_name.param_key
  current_values =
    if resource.respond_to?("#{field.name}_list")
      resource.public_send("#{field.name}_list")
    elsif resource.respond_to?(field.name)
      Array.wrap(resource.public_send(field.name))
    else
      []
    end

  options =
    if field.collection.is_a?(Proc)
      field.collection.call
    elsif field.collection.is_a?(Array)
      field.collection
    else
      []
    end

  field_name = field.type == :tags ? "tag_list" : field.name
  full_field_name = "#{param_key}[#{field_name}][]"

  (:div,
    data: {
      controller: "admin-suite--tag-select",
      "admin-suite--tag-select-creatable-value": field.create_url.present? || field.type == :tags,
      "admin-suite--tag-select-field-name-value": full_field_name
    },
    class: "space-y-2") do
    concat(hidden_field_tag(full_field_name, "", id: nil, data: { "admin-suite--tag-select-target": "placeholder" }))

    concat((:div,
      class: "flex flex-wrap gap-2 min-h-[2.5rem] p-2 bg-white dark:bg-slate-900 border border-slate-200 dark:border-slate-700 rounded-lg",
      data: { "admin-suite--tag-select-target": "tags" }) do
        current_values.each do |val|
          concat((:span,
            class: "inline-flex items-center gap-1 px-2 py-1 bg-indigo-100 dark:bg-indigo-900/50 text-indigo-700 dark:text-indigo-300 rounded text-sm") do
              concat(val.to_s)
              concat(hidden_field_tag(full_field_name, val, id: nil))
              concat(button_tag("×", type: "button", class: "text-indigo-500 hover:text-indigo-700 font-bold", data: { action: "admin-suite--tag-select#remove" }))
            end)
        end
        concat(text_field_tag(nil, "",
          class: "flex-1 min-w-[120px] border-none focus:outline-none focus:ring-0 bg-transparent text-sm",
          placeholder: field.placeholder || "Add tag...",
          autocomplete: "off",
          data: { "admin-suite--tag-select-target": "input", action: "keydown->admin-suite--tag-select#keydown input->admin-suite--tag-select#search" }))
      end)

    if options.any?
      concat((:div,
        class: "hidden border border-slate-200 dark:border-slate-700 rounded-lg bg-white dark:bg-slate-800 shadow-lg max-h-48 overflow-y-auto",
        data: { "admin-suite--tag-select-target": "dropdown" }) do
          options.each do |opt|
            label, value = opt.is_a?(Array) ? [ opt[0], opt[1] ] : [ opt, opt ]
            concat((:button, label,
              type: "button",
              class: "block w-full text-left px-3 py-2 text-sm hover:bg-slate-100 dark:hover:bg-slate-700",
              data: { action: "admin-suite--tag-select#select", value: value }))
          end
        end)
    end
  end
end

#render_pagy_series_item(pagy, item) ⇒ Object



717
718
719
720
721
722
723
724
725
726
727
728
729
# File 'app/helpers/admin_suite/base_helper.rb', line 717

def render_pagy_series_item(pagy, item)
  case item
  when Integer
    link_to(item, pagy_url_for(pagy, item),
      class: "px-2.5 py-1 text-sm font-medium text-slate-700 dark:text-slate-300 bg-white dark:bg-slate-800 border border-slate-300 dark:border-slate-600 rounded hover:bg-slate-50 dark:hover:bg-slate-700 transition-colors")
  when String
    (:span, item, class: "px-2.5 py-1 text-sm font-semibold text-white bg-indigo-600 border border-indigo-600 rounded")
  when :gap
    (:span, "", class: "px-2 text-sm text-slate-400 dark:text-slate-500")
  else
    ""
  end
end

#render_prompt_template(resource) ⇒ Object

— generic custom renderers (fallbacks) —



328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
# File 'app/helpers/admin_suite/base_helper.rb', line 328

def render_prompt_template(resource)
  template = resource.respond_to?(:prompt_template) ? resource.prompt_template : nil
  return (:p, "No template defined", class: "text-slate-500 italic") if template.blank?

  highlighted_template = h(template).gsub(/\{\{(\w+)\}\}/) do
    "<span class=\"text-amber-400 bg-amber-900/30 px-1 rounded\">{{#{$1}}}</span>"
  end

  (:div, class: "relative group") do
    concat((:div, class: "absolute top-2 right-2 flex items-center gap-2") do
      concat((:span, "TEMPLATE", class: "text-xs font-medium text-slate-400 dark:text-slate-500 uppercase tracking-wider"))
      concat((:button,
        '<svg class="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8 16H6a2 2 0 01-2-2V6a2 2 0 012-2h8a2 2 0 012 2v2m-6 12h8a2 2 0 002-2v-8a2 2 0 00-2-2h-8a2 2 0 00-2 2v8a2 2 0 002 2z"/></svg>'.html_safe,
        type: "button",
        class: "p-1 text-slate-400 hover:text-slate-600 dark:hover:text-slate-300 opacity-0 group-hover:opacity-100 transition-opacity",
        data: { controller: "admin-suite--clipboard", action: "click->admin-suite--clipboard#copy", "admin-suite--clipboard-text-value": template },
        title: "Copy to clipboard"))
    end)

    concat((:pre, class: "bg-slate-900 text-slate-100 p-4 rounded-lg overflow-x-auto text-sm font-mono max-h-[600px] overflow-y-auto whitespace-pre-wrap leading-relaxed") do
      highlighted_template.html_safe
    end)

    variables = template.scan(/\{\{(\w+)\}\}/).flatten.uniq
    if variables.any?
      concat((:div, class: "mt-3 pt-3 border-t border-slate-700") do
        concat((:span, "Variables: ", class: "text-sm text-slate-400"))
        concat((:div, class: "inline-flex flex-wrap gap-1 mt-1") do
          variables.each do |var|
            concat((:code, "{{#{var}}}", class: "text-xs px-2 py-0.5 bg-amber-900/30 text-amber-400 rounded"))
          end
        end)
      end)
    end
  end
end

#render_searchable_select(_f, field, resource) ⇒ Object



1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
# File 'app/helpers/admin_suite/base_helper.rb', line 1029

def render_searchable_select(_f, field, resource)
  param_key = resource.class.model_name.param_key
  current_value = resource.public_send(field.name)
  collection = field.collection.is_a?(Proc) ? field.collection.call : field.collection

  options_json = if collection.is_a?(Array)
    collection.map { |opt| opt.is_a?(Array) ? { value: opt[1], label: opt[0] } : { value: opt, label: opt.to_s.humanize } }.to_json
  else
    "[]"
  end

  current_label = if current_value.present? && collection.is_a?(Array)
    match = collection.find { |opt| opt.is_a?(Array) ? opt[1].to_s == current_value.to_s : opt.to_s == current_value.to_s }
    match.is_a?(Array) ? match[0] : match.to_s
  else
    current_value
  end

  (:div,
    data: {
      controller: "admin-suite--searchable-select",
      "admin-suite--searchable-select-options-value": options_json,
      "admin-suite--searchable-select-creatable-value": field.create_url.present?,
      "admin-suite--searchable-select-search-url-value": collection.is_a?(String) ? collection : ""
    },
    class: "relative") do
    concat(hidden_field_tag("#{param_key}[#{field.name}]", current_value, data: { "admin-suite--searchable-select-target": "input" }))
    concat(text_field_tag(nil, current_label,
      class: "form-input w-full",
      placeholder: field.placeholder || "Search...",
      autocomplete: "off",
      data: {
        "admin-suite--searchable-select-target": "search",
        action: "input->admin-suite--searchable-select#search focus->admin-suite--searchable-select#open keydown->admin-suite--searchable-select#keydown"
      }))
    concat((:div, "",
      class: "absolute z-10 w-full mt-1 bg-white dark:bg-slate-800 border border-slate-200 dark:border-slate-700 rounded-lg shadow-lg hidden max-h-60 overflow-y-auto",
      data: { "admin-suite--searchable-select-target": "dropdown" }))
  end
end

#render_show_section(resource, section, position = :main) ⇒ Object

—- show page sections / associations —-

For parity, we keep the same section rendering and association displays used by /internal/developer. This is intentionally “UI heavy”.



536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
# File 'app/helpers/admin_suite/base_helper.rb', line 536

def render_show_section(resource, section, position = :main)
  is_association = section.association.present? && !resource.public_send(section.association).is_a?(ActiveRecord::Base) rescue false

  (:div, class: "bg-white dark:bg-slate-800 rounded-xl border border-slate-200 dark:border-slate-700 overflow-hidden") do
    header_padding = position == :sidebar ? "px-4 py-2.5" : "px-6 py-3"
    header_text_size = position == :sidebar ? "text-sm" : ""
    header_border = is_association ? "" : "border-b border-slate-200 dark:border-slate-700"

    concat((:div, class: "#{header_padding} #{header_border} bg-slate-50 dark:bg-slate-900/50 flex items-center justify-between") do
      concat((:h3, section.title, class: "font-medium text-slate-900 dark:text-white #{header_text_size}"))

      if section.association.present?
        assoc = resource.public_send(section.association) rescue nil
        if assoc && !assoc.is_a?(ActiveRecord::Base)
          count = assoc.count rescue 0
          color_class = count > 0 ? "bg-indigo-100 dark:bg-indigo-900/30 text-indigo-700 dark:text-indigo-400" : "bg-slate-200 dark:bg-slate-600 text-slate-600 dark:text-slate-300"
          concat((:span, number_with_delimiter(count), class: "text-xs font-semibold px-2 py-0.5 rounded-full #{color_class}"))
        end
      end
    end)

    content_padding = position == :sidebar ? "p-4" : "p-6"
    if is_association && position == :main
      content_padding = section.paginate ? "pt-0 px-6 pb-0" : "pt-0 px-6 pb-6"
    end
    content_padding = "pt-0 p-4" if is_association && position == :sidebar

    concat((:div, class: content_padding) do
      if section.render.present?
        render_custom_section(resource, section.render)
      elsif section.association.present?
        render_association_section(resource, section)
      elsif section.fields.any?
        position == :sidebar ? render_sidebar_fields(resource, section.fields) : render_main_fields(resource, section.fields)
      else
        (:p, "No content", class: "text-slate-400 italic text-sm")
      end
    end)
  end
end

#render_sidebar_attachment(attachment) ⇒ Object



593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
# File 'app/helpers/admin_suite/base_helper.rb', line 593

def render_sidebar_attachment(attachment)
  return (:div, class: "text-center py-4") { (:span, "No image", class: "text-slate-400 text-sm") } unless attachment.respond_to?(:attached?) && attachment.attached?

  single = attachment.is_a?(ActiveStorage::Attached::Many) ? attachment.first : attachment
  blob = single.blob
  if blob.image?
    variant = single.variant(resize_to_limit: [ 400, 300 ])
    variant_url =
      begin
        admin_suite_rails_blob_representation_path(variant.processed, only_path: true)
      rescue StandardError
        admin_suite_rails_blob_path(blob, disposition: :inline)
      end

    (:div, class: "space-y-2") do
      concat((:div, class: "rounded-lg overflow-hidden border border-slate-200 dark:border-slate-700") do
        image_tag(variant_url, class: "w-full h-auto object-cover", alt: blob.filename.to_s)
      end)
      concat((:div, class: "flex items-center justify-between text-xs text-slate-500 dark:text-slate-400") do
        concat((:span, number_to_human_size(blob.byte_size)))
        concat(link_to("View full", admin_suite_rails_blob_path(blob, disposition: :inline), target: "_blank", class: "text-indigo-600 dark:text-indigo-400 hover:underline"))
      end)
    end
  else
    (:div, class: "flex items-center gap-2 p-2 bg-slate-50 dark:bg-slate-800 rounded-lg") do
      concat((:div, class: "flex-shrink-0 w-8 h-8 bg-slate-200 dark:bg-slate-700 rounded flex items-center justify-center") do
        '<svg class="w-4 h-4 text-slate-500" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12h6m-6 4h6m2 5H7a2 2 0 01-2-2V5a2 2 0 012-2h5.586a1 1 0 01.707.293l5.414 5.414a1 1 0 01.293.707V19a2 2 0 01-2 2z"/></svg>'.html_safe
      end)
      concat((:div, class: "flex-1 min-w-0") do
        concat((:p, blob.filename.to_s.truncate(20), class: "text-xs font-medium text-slate-700 dark:text-slate-300 truncate"))
        concat((:p, number_to_human_size(blob.byte_size), class: "text-xs text-slate-500"))
      end)
    end
  end
end

#render_sidebar_fields(resource, fields) ⇒ Object



577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
# File 'app/helpers/admin_suite/base_helper.rb', line 577

def render_sidebar_fields(resource, fields)
  (:div, class: "space-y-3") do
    fields.each do |field_name|
      value = resource.public_send(field_name) rescue nil
      if value.is_a?(ActiveStorage::Attached::One) || value.is_a?(ActiveStorage::Attached::Many)
        concat(render_sidebar_attachment(value))
      else
        concat((:div, class: "flex justify-between items-start gap-2") do
          concat((:span, field_name.to_s.humanize, class: "text-xs font-medium text-slate-500 dark:text-slate-400 uppercase tracking-wider flex-shrink-0"))
          concat((:span, class: "text-sm text-slate-900 dark:text-white text-right") { format_show_value(resource, field_name) })
        end)
      end
    end
  end
end

#render_status_badge(status, size: :md) ⇒ Object



891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
# File 'app/helpers/admin_suite/base_helper.rb', line 891

def render_status_badge(status, size: :md)
  return (:span, "", class: "text-slate-400") if status.blank?

  status_str = status.to_s.downcase
  colors = case status_str
  when "active", "open", "success", "approved", "completed", "enabled"
    "bg-green-100 dark:bg-green-900/30 text-green-700 dark:text-green-400"
  when "pending", "proposed", "queued", "waiting"
    "bg-amber-100 dark:bg-amber-900/30 text-amber-700 dark:text-amber-400"
  when "running", "processing", "in_progress"
    "bg-blue-100 dark:bg-blue-900/30 text-blue-700 dark:text-blue-400"
  when "error", "failed", "rejected", "cancelled"
    "bg-red-100 dark:bg-red-900/30 text-red-700 dark:text-red-400"
  else
    "bg-slate-100 dark:bg-slate-700 text-slate-600 dark:text-slate-400"
  end

  padding = size == :sm ? "px-1.5 py-0.5 text-xs" : "px-2 py-1 text-xs"
  (:span, status_str.titleize, class: "inline-flex items-center #{padding} rounded-full font-medium #{colors}")
end

#render_text_block(text, language = nil) ⇒ Object



260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
# File 'app/helpers/admin_suite/base_helper.rb', line 260

def render_text_block(text, language = nil)
  (:div, class: "relative group") do
    concat((:div, class: "absolute top-2 right-2 flex items-center gap-2") do
      concat((:span, language.to_s.upcase, class: "text-xs font-medium text-slate-400 dark:text-slate-500 uppercase tracking-wider")) if language
      concat((:button,
        '<svg class="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8 16H6a2 2 0 01-2-2V6a2 2 0 012-2h8a2 2 0 012 2v2m-6 12h8a2 2 0 002-2v-8a2 2 0 00-2-2h-8a2 2 0 00-2 2v8a2 2 0 002 2z"/></svg>'.html_safe,
        type: "button",
        class: "p-1 text-slate-400 hover:text-slate-600 dark:hover:text-slate-300 opacity-0 group-hover:opacity-100 transition-opacity",
        data: { controller: "admin-suite--clipboard", action: "click->admin-suite--clipboard#copy", "admin-suite--clipboard-text-value": text },
        title: "Copy to clipboard"))
    end)

    concat((:pre, class: "bg-slate-900 text-slate-100 p-4 rounded-lg overflow-x-auto text-sm font-mono max-h-96 overflow-y-auto whitespace-pre-wrap") do
      (:code, h(text), class: language ? "language-#{language}" : nil)
    end)
  end
end

#render_toggle_field(_f, field, resource) ⇒ Object



1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
# File 'app/helpers/admin_suite/base_helper.rb', line 1004

def render_toggle_field(_f, field, resource)
  checked = !!resource.public_send(field.name)
  param_key = resource.class.model_name.param_key

  (:div,
    class: "inline-flex items-center gap-3",
    data: {
      controller: "admin-suite--toggle-switch",
      "admin-suite--toggle-switch-active-class-value": "is-on",
      "admin-suite--toggle-switch-inactive-classes-value": ""
    }) do
    concat((:button, type: "button",
      class: "admin-suite-toggle-track #{checked ? "is-on" : ""}",
      role: "switch",
      "aria-checked" => checked.to_s,
      data: { action: "click->admin-suite--toggle-switch#toggle", "admin-suite--toggle-switch-target": "button" },
      disabled: field.readonly) do
        (:span, "", class: "admin-suite-toggle-thumb", data: { "admin-suite--toggle-switch-target": "thumb" })
      end)

    concat(hidden_field_tag("#{param_key}[#{field.name}]", checked ? "1" : "0", id: "#{param_key}_#{field.name}", data: { "admin-suite--toggle-switch-target": "input" }))
    concat((:span, checked ? "Enabled" : "Disabled", class: "text-sm font-medium text-slate-700", data: { "admin-suite--toggle-switch-target": "label" }))
  end
end

#render_tool_args_preview(resource) ⇒ Object



444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
# File 'app/helpers/admin_suite/base_helper.rb', line 444

def render_tool_args_preview(resource)
  args = resource.respond_to?(:args) ? resource.args : (resource.respond_to?(:arguments) ? resource.arguments : {})
  result = resource.respond_to?(:result) ? resource.result : nil
  error = resource.respond_to?(:error) ? resource.error : nil

  (:div, class: "space-y-6") do
    concat((:div) do
      concat((:h4, "Arguments", class: "text-sm font-medium text-slate-500 dark:text-slate-400 mb-2"))
      if args.present? && args != {}
        concat(render_json_block(args))
      else
        concat((:p, "No arguments", class: "text-slate-400 italic text-sm"))
      end
    end)

    if result.present? && result != {}
      concat((:div, class: "pt-4 border-t border-slate-200 dark:border-slate-700") do
        concat((:h4, "Result", class: "text-sm font-medium text-slate-500 dark:text-slate-400 mb-2"))
        concat(render_json_block(result))
      end)
    end

    if error.present?
      concat((:div, class: "pt-4 border-t border-slate-200 dark:border-slate-700") do
        concat((:h4, "Error", class: "text-sm font-medium text-red-500 dark:text-red-400 mb-2"))
        concat((:div, class: "bg-red-50 dark:bg-red-900/20 border border-red-200 dark:border-red-800 rounded-lg p-4") do
          (:pre, h(error.to_s), class: "text-sm text-red-700 dark:text-red-300 whitespace-pre-wrap font-mono")
        end)
      end)
    end
  end
end

#render_turn_messages_preview(resource) ⇒ Object



477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
# File 'app/helpers/admin_suite/base_helper.rb', line 477

def render_turn_messages_preview(resource)
  user_msg = resource.respond_to?(:user_message) ? resource.user_message : nil
  asst_msg = resource.respond_to?(:assistant_message) ? resource.assistant_message : nil

  (:div, class: "space-y-4") do
    if user_msg
      concat((:div, class: "rounded-lg border p-4 bg-blue-50 dark:bg-blue-900/20 border-blue-200 dark:border-blue-800") do
        concat((:div, class: "flex items-center gap-2 mb-2") do
          concat('<svg class="w-4 h-4 text-blue-500" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M16 7a4 4 0 11-8 0 4 4 0 018 0zM12 14a7 7 0 00-7 7h14a7 7 0 00-7-7z"/></svg>'.html_safe)
          concat((:span, "User", class: "text-sm font-medium text-slate-700 dark:text-slate-200"))
        end)
        concat((:div, simple_format(h(user_msg.respond_to?(:content) ? user_msg.content.to_s : user_msg.to_s)), class: "prose dark:prose-invert prose-sm max-w-none"))
      end)
    end

    if asst_msg
      concat((:div, class: "rounded-lg border p-4 bg-emerald-50 dark:bg-emerald-900/20 border-emerald-200 dark:border-emerald-800") do
        concat((:div, class: "flex items-center gap-2 mb-2") do
          concat('<svg class="w-4 h-4 text-emerald-500" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 3v2m6-2v2M9 19v2m6-2v2M5 9H3m2 6H3m18-6h-2m2 6h-2M7 19h10a2 2 0 002-2V7a2 2 0 00-2-2H7a2 2 0 00-2 2v10a2 2 0 002 2zM9 9h6v6H9V9z"/></svg>'.html_safe)
          concat((:span, "Assistant", class: "text-sm font-medium text-slate-700 dark:text-slate-200"))
        end)
        concat((:div, simple_format(h(asst_msg.respond_to?(:content) ? asst_msg.content.to_s : asst_msg.to_s)), class: "prose dark:prose-invert prose-sm max-w-none"))
      end)
    end

    concat((:p, "No messages found", class: "text-slate-400 italic text-sm")) unless user_msg || asst_msg
  end
end

#resolve_label_option(option, record) ⇒ Object



922
923
924
925
# File 'app/helpers/admin_suite/base_helper.rb', line 922

def resolve_label_option(option, record)
  return option.call(record) if option.is_a?(Proc)
  option
end