Sha256: 689f52b27fb3bf5ae157b5b3578c77ce80e91b3b2daf279ecbb1f6388e0acd84

Contents?: true

Size: 1.27 KB

Versions: 3

Compression:

Stored size: 1.27 KB

Contents

# frozen_string_literal: true

class SolidusAdmin::TaxCategories::Index::Component < SolidusAdmin::Taxes::Component
  def row_url(tax_category)
    spree.edit_admin_tax_category_path(tax_category, _turbo_frame: :edit_tax_category_modal)
  end

  def model_class
    Spree::TaxCategory
  end

  def search_url
    solidus_admin.tax_categories_path
  end

  def page_actions
    render component("ui/button").new(
      tag: :a,
      text: t('.add'),
      href: solidus_admin.new_tax_category_path, data: { turbo_frame: :new_tax_category_modal },
      icon: "add-line",
      class: "align-self-end w-full",
    )
  end

  def turbo_frames
    %w[
      new_tax_category_modal
      edit_tax_category_modal
    ]
  end

  def search_key
    :name_or_description_cont
  end

  def batch_actions
    [
      {
        label: t('.batch_actions.delete'),
        action: solidus_admin.tax_categories_path,
        method: :delete,
        icon: 'delete-bin-7-line',
      },
    ]
  end

  def columns
    [
      :name,
      :tax_code,
      :description,
      {
        header: :is_default,
        data: ->(tax_category) {
          if tax_category.is_default?
            component('ui/badge').yes
          else
            component('ui/badge').no
          end
        },
      },
    ]
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
solidus_admin-0.3.2 app/components/solidus_admin/tax_categories/index/component.rb
solidus_admin-0.3.1 app/components/solidus_admin/tax_categories/index/component.rb
solidus_admin-0.3.0 app/components/solidus_admin/tax_categories/index/component.rb