Class: SolidusAdmin::Promotions::Index::Component
- Inherits:
-
UI::Pages::Index::Component
- Object
- UI::Pages::Index::Component
- SolidusAdmin::Promotions::Index::Component
- Defined in:
- lib/components/admin/solidus_admin/promotions/index/component.rb
Instance Method Summary collapse
- #batch_actions ⇒ Object
- #columns ⇒ Object
- #filters ⇒ Object
- #model_class ⇒ Object
- #page_actions ⇒ Object
- #row_url(promotion) ⇒ Object
- #scopes ⇒ Object
- #search_key ⇒ Object
- #search_url ⇒ Object
Instance Method Details
#batch_actions ⇒ Object
29 30 31 32 33 34 35 36 37 38 |
# File 'lib/components/admin/solidus_admin/promotions/index/component.rb', line 29 def batch_actions [ { label: t('.batch_actions.delete'), action: solidus_admin.promotions_path, method: :delete, icon: 'delete-bin-7-line', }, ] end |
#columns ⇒ Object
61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 |
# File 'lib/components/admin/solidus_admin/promotions/index/component.rb', line 61 def columns [ { header: :name, data: ->(promotion) do content_tag :div, promotion.name end }, { header: :code, data: ->(promotion) do count = promotion.codes.count (count == 1) ? promotion.codes.pick(:value) : t('spree.number_of_codes', count:) end }, { header: :status, data: ->(promotion) do if promotion.active? render component('ui/badge').new(name: t('.status.active'), color: :green) else render component('ui/badge').new(name: t('.status.inactive'), color: :graphite_light) end end }, { header: :usage_limit, data: ->(promotion) { promotion.usage_limit || icon_tag('infinity-line') } }, { header: :uses, data: ->(promotion) { promotion.usage_count } }, { header: :starts_at, data: ->(promotion) { promotion.starts_at ? l(promotion.starts_at, format: :long) : icon_tag('infinity-line') } }, { header: :expires_at, data: ->(promotion) { promotion.expires_at ? l(promotion.expires_at, format: :long) : icon_tag('infinity-line') } }, ] end |
#filters ⇒ Object
50 51 52 53 54 55 56 57 58 59 |
# File 'lib/components/admin/solidus_admin/promotions/index/component.rb', line 50 def filters [ { label: Spree::PromotionCategory.model_name.human.pluralize, attribute: "promotion_category_id", predicate: "in", options: Spree::PromotionCategory.pluck(:name, :id) } ] end |
#model_class ⇒ Object
4 5 6 |
# File 'lib/components/admin/solidus_admin/promotions/index/component.rb', line 4 def model_class Spree::Promotion end |
#page_actions ⇒ Object
20 21 22 23 24 25 26 27 |
# File 'lib/components/admin/solidus_admin/promotions/index/component.rb', line 20 def page_actions render component("ui/button").new( tag: :a, text: t('.add'), href: spree.new_admin_promotion_path, icon: "add-line", ) end |
#row_url(promotion) ⇒ Object
16 17 18 |
# File 'lib/components/admin/solidus_admin/promotions/index/component.rb', line 16 def row_url(promotion) spree.admin_promotion_path(promotion) end |
#scopes ⇒ Object
40 41 42 43 44 45 46 47 48 |
# File 'lib/components/admin/solidus_admin/promotions/index/component.rb', line 40 def scopes [ { name: :active, label: t('.scopes.active'), default: true }, { name: :draft, label: t('.scopes.draft') }, { name: :future, label: t('.scopes.future') }, { name: :expired, label: t('.scopes.expired') }, { name: :all, label: t('.scopes.all') }, ] end |
#search_key ⇒ Object
8 9 10 |
# File 'lib/components/admin/solidus_admin/promotions/index/component.rb', line 8 def search_key :name_or_codes_value_or_path_or_description_cont end |
#search_url ⇒ Object
12 13 14 |
# File 'lib/components/admin/solidus_admin/promotions/index/component.rb', line 12 def search_url solidus_admin.promotions_path end |