Skip to content

Instantly share code, notes, and snippets.

@fred
Created May 2, 2012 08:10
Show Gist options
  • Star 25 You must be signed in to star a gist
  • Fork 12 You must be signed in to fork a gist
  • Save fred/2574969 to your computer and use it in GitHub Desktop.
Save fred/2574969 to your computer and use it in GitHub Desktop.
extend active admin to prettier boolean values
# It extends activeadmin to show pretty boolean values
#
# config/initializers/active_admin.rb
module ActiveAdmin
module Views
class TableFor
def bool_column(attribute)
column(attribute){ |model| model[attribute] ? '✔'.html_safe : '✗'.html_safe }
end
end
class AttributesTable
def bool_row(attribute)
row(attribute){ |model| model[attribute] ? '✔'.html_safe : '✗'.html_safe }
end
end
end
end
# example
# app/admin/user.rb
ActiveAdmin.register User do
index do
column :name
column :email
bool_column :admin
end
show do
attributes_table do
row :name
row :email
bool_row :admin
end
end
end
@shamsulsham89
Copy link

Thanks very helpful. I was looking for it.

@ryanwjackson
Copy link

I would suggest the following edit (though honestly not 100% that args.last always returns the attribute:

module ActiveAdmin
  module Views
    class TableFor
      def bool_column(*args)
        column(*args){ |model| model[args.last] ? '✔'.html_safe : '✗'.html_safe }
      end
    end
    class AttributesTable
      def bool_row(*args)
        row(*args){ |model| model[args.last] ? '✔'.html_safe : '✗'.html_safe }
      end
    end
  end
end

I ran into the need for this with renaming columns like bool_column 'Paid?', :is_paid.

@jtomaszewski
Copy link

And use this code if you just want to show the booleans with status_tag in AttributesTable view (no need of changing column methods to bool_column:

ActiveAdmin::Views::AttributesTable.class_eval do
  def content_for(record, attr)
    value = find_attr_value(record, attr)
    if is_boolean?(attr, record)
      value = status_tag(value)
    else
      value = pretty_format(value)
    end
    value.blank? && current_arbre_element.children.to_s.empty? ? empty_value : value
  end

  def is_boolean?(data, item)
    if item.respond_to? :has_attribute?
      item.has_attribute?(data) &&
        item.column_for_attribute(data) &&
        item.column_for_attribute(data).type == :boolean
    end
  end
end

@Suwarna
Copy link

Suwarna commented Mar 3, 2016

its really helpful....i am looking for it from last two days

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment