Sha256: c7a03ddb2377b1f6ff887e7ba8e292f8874a4b814515d8dc50c266e7cd25fdd2

Contents?: true

Size: 1.78 KB

Versions: 12

Compression:

Stored size: 1.78 KB

Contents

# frozen_string_literal: true

require "active_support/concern"

module Decidim
  # A concern with the components needed when you want a model to be able to create
  # links from it to another resource.
  module HasAttachments
    extend ActiveSupport::Concern

    included do
      has_many :attachments,
               class_name: "Decidim::Attachment",
               dependent: :destroy,
               inverse_of: :attached_to,
               as: :attached_to

      # The first attachment that is a photo for this model.
      #
      # Returns an Attachment
      def photo
        @photo ||= photos.first
      end

      # All the attachments that are photos for this model.
      #
      # Returns an Array<Attachment>
      def photos
        @photos ||= attachments.select(&:photo?)
      end

      # All the attachments that are documents for this model.
      #
      # Returns an Array<Attachment>
      def documents
        @documents ||= attachments.includes(:attachment_collection).select(&:document?)
      end

      # All the attachments that are documents for this model that has a collection.
      #
      # Returns an Array<Attachment>
      def documents_with_collection
        documents.select(&:attachment_collection_id?)
      end

      # All the attachments that are documents for this model that not has a collection.
      #
      # Returns an Array<Attachment>
      def documents_without_collection
        documents.reject(&:attachment_collection_id?)
      end
    end

    # Attachment context for the file uploaders checks (e.g. which kind of files
    # the user is allowed to upload in this context).
    #
    # Override this in the model class if it is for a different context.
    #
    # Returns a Symbol.
    def attachment_context
      :participant
    end
  end
end

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
decidim-core-0.26.10 lib/decidim/has_attachments.rb
decidim-core-0.26.9 lib/decidim/has_attachments.rb
decidim-core-0.26.8 lib/decidim/has_attachments.rb
decidim-core-0.26.7 lib/decidim/has_attachments.rb
decidim-core-0.26.5 lib/decidim/has_attachments.rb
decidim-core-0.26.4 lib/decidim/has_attachments.rb
decidim-core-0.26.3 lib/decidim/has_attachments.rb
decidim-core-0.26.2 lib/decidim/has_attachments.rb
decidim-core-0.26.1 lib/decidim/has_attachments.rb
decidim-core-0.26.0 lib/decidim/has_attachments.rb
decidim-core-0.26.0.rc2 lib/decidim/has_attachments.rb
decidim-core-0.26.0.rc1 lib/decidim/has_attachments.rb