Sha256: 694626128be8c7ec3deb4b2b610c190971149a009fdebd85cb04f48a4decca1b
Contents?: true
Size: 1.46 KB
Versions: 193
Compression:
Stored size: 1.46 KB
Contents
# frozen_string_literal: true module Playbook module PbFilter class Filter < Playbook::KitBase prop :filters, type: Playbook::Props::HashArray, default: [{ name: "" }] prop :sort_menu, type: Playbook::Props::HashArray, default: [{}] prop :results, type: Playbook::Props::Numeric prop :template, type: Playbook::Props::Enum, values: %w[default single filter_only sort_only], default: "default" prop :background, type: Playbook::Props::Boolean, default: true prop :max_height prop :min_width, default: "auto" prop :placement, type: Playbook::Props::Enum, values: %w[top bottom left right top-start top-end bottom-start bottom-end right-start right-end left-start left-end], default: "bottom-start" def classname generate_classname("pb_filter_kit").rstrip end def result_text case results when 1 "#{results} Result" when nil nil else "#{results} Results" end end def wrapper(&block) if background pb_rails("card", props: { padding: "none" }, &block) else capture(&block) end end def sort_icon(direction) case direction when "asc" "sort-amount-up" when "desc" "sort-amount-down" else "" end end end end end
Version data entries
193 entries across 193 versions & 1 rubygems