Sha256: ee170f572966be269ff2c5ff61948523de9ddcf55ccb82917f111a11bc253af3
Contents?: true
Size: 1.71 KB
Versions: 12
Compression:
Stored size: 1.71 KB
Contents
require 'active_admin/helpers/collection' require 'active_admin/view_helpers/method_or_proc_helper' module ActiveAdmin module Views # Renders a collection of ActiveAdmin::Scope objects as a # simple list with a seperator class Scopes < ActiveAdmin::Component builder_method :scopes_renderer include ActiveAdmin::ScopeChain include ::ActiveAdmin::Helpers::Collection def default_class_name "scopes table_tools_segmented_control" end def tag_name 'ul' end def build(scopes, options = {}) scopes.each do |scope| build_scope(scope, options) if call_method_or_proc_on(self, scope.display_if_block) end end protected def build_scope(scope, options) li class: classes_for_scope(scope) do params = request.query_parameters.except :page, :scope, :commit, :format a href: url_for(scope: scope.id, params: params), class: 'table_tools_button' do text_node scope_name(scope) span class: 'count' do "(#{get_scope_count(scope)})" end if options[:scope_count] && scope.show_count end end end def classes_for_scope(scope) classes = ["scope", scope.id] classes << "selected" if current_scope?(scope) classes.join(" ") end def current_scope?(scope) if params[:scope] params[:scope] == scope.id else active_admin_config.default_scope(self) == scope end end # Return the count for the scope passed in. def get_scope_count(scope) collection_size(scope_chain(scope, collection_before_scope)) end end end end
Version data entries
12 entries across 12 versions & 2 rubygems