Sha256: 1c4461313e95911aa9b591863391dbf0fd117d7f1ff93a64b6d3187ac3229e35

Contents?: true

Size: 1.95 KB

Versions: 31

Compression:

Stored size: 1.95 KB

Contents

module ActiveGraph
  module Shared
    module Callbacks #:nodoc:
      extend ActiveSupport::Concern

      module ClassMethods
        include ActiveModel::Callbacks
      end

      included do
        include ActiveModel::Validations::Callbacks
        # after_find is triggered by the `find` method defined in lib/active_graph/node/id_property.rb
        define_model_callbacks :initialize, :find, only: :after
        define_model_callbacks :create_commit, :update_commit, :destroy_commit, only: :after
        define_model_callbacks :save, :create, :update, :destroy, :touch
      end

      def initialize(args = nil)
        run_callbacks(:initialize) { super }
      end

      def destroy #:nodoc:
        ActiveGraph::Base.validating_transaction do |tx|
          tx.after_commit { run_callbacks(:destroy_commit) {} }
          run_callbacks(:destroy) { super }
        end
      rescue
        @_deleted = false
        @attributes = @attributes.dup
        raise
      end

      def touch #:nodoc:
        run_callbacks(:touch) { super }
      end

      # Allows you to perform a callback if a condition is not satisfied.
      # @param [Symbol] kind The callback type to execute unless the guard is true
      # @param [TrueClass,FalseClass] guard When this value is true, the block is yielded without executing callbacks.
      def conditional_callback(kind, guard)
        return yield if guard
        run_callbacks(kind) { yield }
      end

      private

      def create_or_update #:nodoc:
        run_callbacks(:save) { super }
      end

      def create_model #:nodoc:
        ActiveGraph::Base.transaction do |tx|
          tx.after_commit { run_callbacks(:create_commit) {} }
          run_callbacks(:create) { super }
        end
      end

      def update_model(*) #:nodoc:
        ActiveGraph::Base.transaction do |tx|
          tx.after_commit { run_callbacks(:update_commit) {} }
          run_callbacks(:update) { super }
        end
      end
    end
  end
end

Version data entries

31 entries across 31 versions & 1 rubygems

Version Path
activegraph-12.0.0.beta.4 lib/active_graph/shared/callbacks.rb
activegraph-11.5.0.beta.3 lib/active_graph/shared/callbacks.rb
activegraph-12.0.0.beta.3 lib/active_graph/shared/callbacks.rb
activegraph-12.0.0.beta.2 lib/active_graph/shared/callbacks.rb
activegraph-11.5.0.beta.2 lib/active_graph/shared/callbacks.rb
activegraph-12.0.0.beta.1 lib/active_graph/shared/callbacks.rb
activegraph-11.5.0.beta.1 lib/active_graph/shared/callbacks.rb
activegraph-11.5.0.alpha.1 lib/active_graph/shared/callbacks.rb
activegraph-11.4.0 lib/active_graph/shared/callbacks.rb
activegraph-11.3.1 lib/active_graph/shared/callbacks.rb
activegraph-11.3.0 lib/active_graph/shared/callbacks.rb
activegraph-11.2.0 lib/active_graph/shared/callbacks.rb
activegraph-11.1.0 lib/active_graph/shared/callbacks.rb
activegraph-11.1.0.beta.1 lib/active_graph/shared/callbacks.rb
activegraph-11.1.0.alpha.4 lib/active_graph/shared/callbacks.rb
activegraph-11.1.0.alpha.3 lib/active_graph/shared/callbacks.rb
activegraph-11.1.0.alpha.2 lib/active_graph/shared/callbacks.rb
activegraph-11.1.0.alpha.1 lib/active_graph/shared/callbacks.rb
activegraph-10.2.0.beta.1 lib/active_graph/shared/callbacks.rb
activegraph-11.0.2-java lib/active_graph/shared/callbacks.rb