Sha256: 77665b5e4f8fa70aa216449975ab1430ee0101e8820ea2d95f48c2ace97582bf

Contents?: true

Size: 1.49 KB

Versions: 4

Compression:

Stored size: 1.49 KB

Contents

# frozen_string_literal: true

module RailsWorkflow
  class OperationTemplate < ActiveRecord::Base
    include OperationStatus
    include RailsWorkflow::Uuid
    include OperationTemplates::Dependencies
    # TODO: move to separate UserOperationTemplate
    include OperationTemplates::Assignments

    serialize :source, JSON

    belongs_to :process_template, class_name: 'RailsWorkflow::ProcessTemplate'
    belongs_to :child_process, class_name: 'RailsWorkflow::ProcessTemplate', required: false

    scope :other_operations, ->(process_template_id, operation_template_id) {
      where(process_template_id: process_template_id)
        .where.not(id: operation_template_id)
    }

    def other_operations
      OperationTemplate.other_operations(process_template_id, id)
    end

    def multiple=(value)
      self.source ||= {}
      source[:multiple] = value == 'true'
    end

    def multiple?
      (source || {})['multiple'] == true
    end

    alias multiple multiple?

    class << self
      def types
        RailsWorkflow.config.operation_types
      end
    end

    def operation_class
      get_class(:operation_class, default_class(kind.to_sym))
    end

    def default_type
      RailsWorkflow.config.default_operation_template_type
    end

    private

    def default_class(kind)
      RailsWorkflow.config.operation_types[kind][:class]
    end

    def get_class(symb, default)
      (read_attribute(symb).presence || default).constantize
    rescue
      default.constantize
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
rails_workflow-0.7.3 app/models/rails_workflow/operation_template.rb
rails_workflow-0.7.2 app/models/rails_workflow/operation_template.rb
rails_workflow-0.7.1 app/models/rails_workflow/operation_template.rb
rails_workflow-0.7.0 app/models/rails_workflow/operation_template.rb