mirror of
https://github.com/aasm/aasm
synced 2023-03-27 23:22:41 -04:00
36 lines
765 B
Ruby
36 lines
765 B
Ruby
module AASM
|
|
module SupportingClasses
|
|
class StateTransition
|
|
attr_reader :from, :to, :opts
|
|
|
|
def initialize(opts)
|
|
@from, @to, @guard, @on_transition = opts[:from], opts[:to], opts[:guard], opts[:on_transition]
|
|
@opts = opts
|
|
end
|
|
|
|
def perform(obj)
|
|
case @guard
|
|
when Symbol, String
|
|
obj.send(@guard)
|
|
when Proc
|
|
@guard.call(obj)
|
|
else
|
|
true
|
|
end
|
|
end
|
|
|
|
def execute(obj, *args)
|
|
case @on_transition
|
|
when Symbol, String
|
|
obj.send(@on_transition, *args)
|
|
when Proc
|
|
@on_transition.call(obj, *args)
|
|
end
|
|
end
|
|
|
|
def ==(obj)
|
|
@from == obj.from && @to == obj.to
|
|
end
|
|
end
|
|
end
|
|
end
|