Class: AASM::Core::State

Inherits:
Object
  • Object
show all
Defined in:
lib/aasm/core/state.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name, klass, state_machine, options = {}) ⇒ State

Returns a new instance of State.



7
8
9
10
11
12
# File 'lib/aasm/core/state.rb', line 7

def initialize(name, klass, state_machine, options={})
  @name = name
  @klass = klass
  @state_machine = state_machine
  update(options)
end

Instance Attribute Details

#nameObject (readonly)

Returns the value of attribute name.



5
6
7
# File 'lib/aasm/core/state.rb', line 5

def name
  @name
end

#optionsObject (readonly)

Returns the value of attribute options.



5
6
7
# File 'lib/aasm/core/state.rb', line 5

def options
  @options
end

#state_machineObject (readonly)

Returns the value of attribute state_machine.



5
6
7
# File 'lib/aasm/core/state.rb', line 5

def state_machine
  @state_machine
end

Instance Method Details

#<=>(state) ⇒ Object



35
36
37
38
39
40
41
# File 'lib/aasm/core/state.rb', line 35

def <=>(state)
  if state.is_a? Symbol
    name <=> state
  else
    name <=> state.name
  end
end

#==(state) ⇒ Object



27
28
29
30
31
32
33
# File 'lib/aasm/core/state.rb', line 27

def ==(state)
  if state.is_a? Symbol
    name == state
  else
    name == state.name
  end
end

#display_nameObject



56
57
58
59
60
61
62
63
64
# File 'lib/aasm/core/state.rb', line 56

def display_name
  @display_name ||= begin
    if Module.const_defined?(:I18n)
      localized_name
    else
      name.to_s.gsub(/_/, ' ').capitalize
    end
  end
end

#fire_callbacks(action, record, *args) ⇒ Object



47
48
49
50
51
52
53
54
# File 'lib/aasm/core/state.rb', line 47

def fire_callbacks(action, record, *args)
  action = @options[action]
  catch :halt_aasm_chain do
    action.is_a?(Array) ?
            action.each {|a| _fire_callbacks(a, record, args)} :
            _fire_callbacks(action, record, args)
  end
end

#for_selectObject



71
72
73
# File 'lib/aasm/core/state.rb', line 71

def for_select
  [display_name, name.to_s]
end

#initialize_copy(orig) ⇒ Object

called internally by Ruby 1.9 after clone()



15
16
17
18
19
20
21
22
23
24
25
# File 'lib/aasm/core/state.rb', line 15

def initialize_copy(orig)
  super
  @options = {}
  orig.options.each_pair do |name, setting|
    @options[name] = if setting.is_a?(Hash) || setting.is_a?(Array)
                       setting.dup
                     else
                       setting
                     end
  end
end

#localized_nameObject Also known as: human_name



66
67
68
# File 'lib/aasm/core/state.rb', line 66

def localized_name
  AASM::Localizer.new.human_state_name(@klass, self)
end

#to_sObject



43
44
45
# File 'lib/aasm/core/state.rb', line 43

def to_s
  name.to_s
end