Sha256: 4d4aa5500de2dc68e6b5e897156fec766654685661a34031d6d278261da5994c
Contents?: true
Size: 1001 Bytes
Versions: 35
Compression:
Stored size: 1001 Bytes
Contents
# frozen_string_literal: true module Spree class State < Spree::Base belongs_to :country, class_name: 'Spree::Country', optional: true has_many :addresses, dependent: :nullify validates :country, :name, presence: true scope :with_name_or_abbr, ->(name_or_abbr) do where( arel_table[:name].matches(name_or_abbr).or( arel_table[:abbr].matches(name_or_abbr) ) ) end self.allowed_ransackable_attributes = %w[name] # table of { country.id => [ state.id , state.name ] }, arrays sorted by name # blank is added elsewhere, if needed def self.states_group_by_country_id state_info = Hash.new { |hash, key| hash[key] = [] } order(:name).each { |state| state_info[state.country_id.to_s].push [state.id, state.name] } state_info end def <=>(other) name <=> other.name end def to_s name end def state_with_country "#{name} (#{country})" end end end
Version data entries
35 entries across 35 versions & 1 rubygems