Sha256: a9c766e4912ec4ececf8be837b1c316e3f9c5bb3c4f4769670417803b3f52938

Contents?: true

Size: 1.39 KB

Versions: 4

Compression:

Stored size: 1.39 KB

Contents

module ActiveScaffold::Bridges
  class Ancestry
    module AncestryBridge
      def initialize(model_id)
        super

        return unless model.respond_to? :ancestry_column

        columns << :parent_id
        columns[:parent_id].form_ui = :ancestry
        update.columns.exclude :ancestry
        create.columns.exclude :ancestry, :parent_id
        list.columns.exclude :ancestry, :parent_id
      end
    end

    module FormColumnHelpers
      def active_scaffold_input_ancestry(column, options, ui_options: column.options)
        record = options[:object]
        select_options = []
        select_control_options = {selected: record.parent_id}
        select_control_options[:include_blank] = as_(:_select_) if record.parent_id.nil?
        method = ui_options[:label_method] || :to_label
        traverse_ancestry = proc do |key, value|
          unless key == record
            select_options << ["#{'__' * key.depth}#{key.send(method)}", key.id]
            value.each(&traverse_ancestry) if value.is_a?(Hash) && !value.empty?
          end
        end
        record.class.arrange.each(&traverse_ancestry)
        select(:record, :ancestry, select_options, select_control_options, options)
      end
    end
  end
end

ActionView::Base.class_eval do
  include ActiveScaffold::Bridges::Ancestry::FormColumnHelpers
end
ActiveScaffold::Config::Core.prepend ActiveScaffold::Bridges::Ancestry::AncestryBridge

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
active_scaffold-4.0.0 lib/active_scaffold/bridges/ancestry/ancestry_bridge.rb
active_scaffold-4.0.0.rc3 lib/active_scaffold/bridges/ancestry/ancestry_bridge.rb
active_scaffold-4.0.0.rc2 lib/active_scaffold/bridges/ancestry/ancestry_bridge.rb
active_scaffold-4.0.0.rc1 lib/active_scaffold/bridges/ancestry/ancestry_bridge.rb