Sha256: b836cdebf129b544b30b258c02c598500c08f9583924d3c83d7aabb5c31df55c

Contents?: true

Size: 1022 Bytes

Versions: 1

Compression:

Stored size: 1022 Bytes

Contents

module Unidom::Action::Concerns::AsStateSubject

  extend ActiveSupport::Concern

  included do |includer|

    has_many :state_transitions, class_name: 'Unidom::Action::StateTransition', as: :subject

    def is_transited!(from: nil, thru: nil, due_to: nil, via: nil, by: nil, at: Time.now)
      state_transitions.create! from_state: from, thru_state: thru, transitor_visitor: via, transitor_party: by, reason: due_to, opened_at: at
    end

=begin
    def is_transited?(from: nil, thru: nil, due_to: nil, via: nil, by: nil, at: Time.now)
      query = state_transitions
      query = query.from_transited_to from    if from.present?
      query = query.thru_transited_to thru    if thru.present?
      query = query.transited_by      by      if by.present?
      query = query.transited_via     via     if via.present?
      query = query.caused_by         due_to  if due_to.present?
      query = query.valid_at          now: at if at.present?
      query.exists?
    end
=end

  end

  module ClassMethods
  end

end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
unidom-action-1.2 app/models/unidom/action/concerns/as_state_subject.rb