Sha256: 86353165f55c013423a61387812e51188cd323fca55eea1866a094324ed7cd3e
Contents?: true
Size: 1.91 KB
Versions: 1
Compression:
Stored size: 1.91 KB
Contents
module Trestle class Table class ActionsColumn attr_reader :table, :options, :block def initialize(table, options={}, &block) @table, @options = table, options @block = block_given? ? block : default_actions end def renderer(template) Renderer.new(self, template) end def default_actions ->(action) do action.delete end end class ActionsBuilder attr_reader :instance delegate :table, to: :@column delegate :icon, :admin_url_for, :concat, :link_to, to: :@template def initialize(column, template, instance) @column, @template, @instance = column, template, instance end def show button(icon("fa fa-info"), admin_url_for(instance, admin: table.admin, action: :show), class: "btn-info") end def edit button(icon("fa fa-pencil"), admin_url_for(instance, admin: table.admin, action: :edit), class: "btn-warning") end def delete button(icon("fa fa-trash"), admin_url_for(instance, admin: table.admin, action: :destroy), method: :delete, class: "btn-danger", data: { toggle: "confirm-delete", placement: "left" }) end def button(content, url, options={}) options[:class] = Array(options[:class]) options[:class] << "btn" unless options[:class].include?("btn") concat link_to(content, url, options) end alias_method :link, :button end class Renderer < Column::Renderer def header options[:header] end def classes super + ["actions"] end def content(instance) builder = ActionsBuilder.new(@column, @template, instance) @template.with_output_buffer do @template.instance_exec(builder, &@column.block) end end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
trestle-0.8.5 | lib/trestle/table/actions_column.rb |