Sha256: 67eabf3d0ae59e967dc65a61ccd3f8d35a294172b75f33bab9c3d102128ce326

Contents?: true

Size: 1.37 KB

Versions: 6

Compression:

Stored size: 1.37 KB

Contents

# frozen_string_literal: true

module Decidim
  module AdminLog
    # This class holds the logic to present a `Decidim::StaticPage`
    # for the `AdminLog` log.
    #
    # Usage should be automatic and you should not need to call this class
    # directly, but here is an example:
    #
    #    action_log = Decidim::ActionLog.last
    #    view_helpers # => this comes from the views
    #    StaticPagePresenter.new(action_log, view_helpers).present
    class StaticPagePresenter < Decidim::Log::BasePresenter
      private

      def diff_fields_mapping
        {
          content: :i18n,
          slug: :default,
          title: :i18n
        }
      end

      # Private: Caches the object that will be responsible of presenting the static page.
      # Overwrites the method so that we can use a custom presenter to show the correct
      # path for their page.
      #
      # Returns an object that responds to `present`.
      def resource_presenter
        @resource_presenter ||= Decidim::AdminLog::StaticPageResourcePresenter.new(action_log.resource, h, action_log.extra["resource"])
      end

      def i18n_labels_scope
        "activemodel.attributes.static_page"
      end

      def action_string
        case action
        when "create", "delete", "update"
          "decidim.admin_log.static_page.#{action}"
        else
          super
        end
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
decidim-core-0.29.1 app/presenters/decidim/admin_log/static_page_presenter.rb
decidim-core-0.29.0 app/presenters/decidim/admin_log/static_page_presenter.rb
decidim-core-0.29.0.rc4 app/presenters/decidim/admin_log/static_page_presenter.rb
decidim-core-0.29.0.rc3 app/presenters/decidim/admin_log/static_page_presenter.rb
decidim-core-0.29.0.rc2 app/presenters/decidim/admin_log/static_page_presenter.rb
decidim-core-0.29.0.rc1 app/presenters/decidim/admin_log/static_page_presenter.rb