Sha256: 40a939a47bfd97c9499b5c600a1c2e5e781ef61f333ca1e5c8e19087563f0353

Contents?: true

Size: 1.18 KB

Versions: 10

Compression:

Stored size: 1.18 KB

Contents

# frozen_string_literal: true

module Decidim
  module Events
    # This module is used to be included in event classes inheriting from SimpleEvent
    # whose resource is coauthorable.
    #
    # It adds the following methods related with the creator author: author_name, author_nickname, author_path and author_url to the i18n interpolations.
    module CoauthorEvent
      extend ActiveSupport::Concern

      included do
        i18n_attributes :author_name, :author_nickname, :author_path, :author_url

        def author_nickname
          author_presenter&.nickname.to_s
        end

        def author_name
          author_presenter&.name.to_s
        end

        def author_path
          author_presenter&.profile_path.to_s
        end

        def author_url
          author_presenter&.profile_url.to_s
        end

        def author_presenter
          return unless author
          @author_presenter ||= Decidim::UserPresenter.new(author)
        end

        def author
          return unless resource.respond_to?(:creator_author)
          return unless resource.creator_author.is_a?(Decidim::UserBaseEntity)

          resource.creator_author
        end
      end
    end
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
decidim-core-0.18.1 lib/decidim/events/coauthor_event.rb
decidim-core-0.17.2 lib/decidim/events/coauthor_event.rb
decidim-core-0.18.0 lib/decidim/events/coauthor_event.rb
decidim-core-0.17.1 lib/decidim/events/coauthor_event.rb
decidim-core-0.16.1 lib/decidim/events/coauthor_event.rb
decidim-core-0.17.0 lib/decidim/events/coauthor_event.rb
decidim-core-0.16.0 lib/decidim/events/coauthor_event.rb
decidim-core-0.15.2 lib/decidim/events/coauthor_event.rb
decidim-core-0.15.1 lib/decidim/events/coauthor_event.rb
decidim-core-0.15.0 lib/decidim/events/coauthor_event.rb