module ActiveScaffold::DataStructures # A set of columns. These structures can be nested for organization. class ActionColumns < Set include ActiveScaffold::Configurable # this lets us refer back to the action responsible for this link, if it exists. # the immediate need here is to get the crud_type so we can dynamically filter columns from the set. attr_accessor :action # labels are useful for the Create/Update forms, when we display columns in a grouped fashion and want to name them separately attr_writer :label def label as_(@label) if @label end # Whether this column set is collapsed by default in contexts where collapsing is supported attr_accessor :collapsed # nests a subgroup in the column set def add_subgroup(label, &proc) columns = ActiveScaffold::DataStructures::ActionColumns.new columns.label = label columns.action = self.action columns.configure &proc self.exclude columns.collect_columns self.add columns end def include?(item) @set.each do |c| return true if !c.is_a? Symbol and c.include? item return true if c == item.to_sym end return false end protected def collect_columns @set.collect {|col| col.is_a?(ActiveScaffold::DataStructures::ActionColumns) ? col.collect_columns : col} end # called during clone or dup. makes the clone/dup deeper. def initialize_copy(from) @set = from.instance_variable_get('@set').clone end # A package of stuff to add after the configuration block. This is an attempt at making a certain level of functionality inaccessible during configuration, to reduce possible breakage from misuse. # The bulk of the package is a means of connecting the referential column set (ActionColumns) with the actual column objects (Columns). This lets us iterate over the set and yield real column objects. module AfterConfiguration # Redefine the each method to yield actual Column objects. # It will skip constrained and unauthorized columns. # # Options: # * :flatten - whether to recursively iterate on nested sets. default is false. # * :for - the record (or class) being iterated over. used for column-level security. default is the class. def each(options = {}, &proc) options[:for] ||= @columns.active_record_class @set.each do |item| unless item.is_a? ActiveScaffold::DataStructures::ActionColumns item = (@columns[item] || ActiveScaffold::DataStructures::Column.new(item.to_sym, @columns.active_record_class)) # skip if this matches a constrained column next if constraint_columns.include?(item.name.to_sym) # skip if this matches the field_name of a constrained column next if item.field_name and constraint_columns.include?(item.field_name.to_sym) # skip this field if it's not authorized next unless options[:for].authorized_for?(:action => options[:action] || self.action.crud_type, :column => item.name) end if item.is_a? ActiveScaffold::DataStructures::ActionColumns and options.has_key?(:flatten) and options[:flatten] item.each(options, &proc) else yield item end end end # registers a set of column objects (recursively, for all nested ActionColumns) def set_columns(columns) @columns = columns # iterate over @set instead of self to avoid dealing with security queries @set.each do |item| item.set_columns(columns) if item.respond_to? :set_columns end end attr_writer :constraint_columns def constraint_columns @constraint_columns ||= [] end def length (@set - self.constraint_columns).length end end end end