Sha256: 95989e1273961025ad66a88ea2b512d46f36a04e3f131ba5d16e0ee2ae1a8919
Contents?: true
Size: 1.47 KB
Versions: 17
Compression:
Stored size: 1.47 KB
Contents
# frozen_string_literal: true require "active_support/concern" module Decidim # A concern with the components needed when you want a model to have a # reference. module HasReference extend ActiveSupport::Concern included do after_commit :store_reference, on: [:create, :update] validates :reference, presence: true, on: :update def reference self[:reference] || calculate_reference end private # Public: Calculates a unique reference for the model using the function # provided by configuration. Works for both component resources and # participatory spaces. # # Returns a String. def calculate_reference Decidim.reference_generator.call(self, respond_to?(:component) ? component : nil) end # Internal: Sets the unique reference to the model. Note that if the resource # implements `Decidim::Traceable` then any normal update (or `update`) # will create a new version through an ActiveRecord update callback, but here # we cannot track the author of the version, so we use the `update_column` method # which does not trigger callbacks. # # Returns nothing. def store_reference self[:reference] ||= calculate_reference return unless changed? # rubocop:disable Rails/SkipsModelValidations update_column(:reference, self[:reference]) # rubocop:enable Rails/SkipsModelValidations end end end end
Version data entries
17 entries across 17 versions & 1 rubygems