Sha256: ffc5a2d49c9e5850fe2cee672fc60c06c8a34ab16193eff1710e06cc30482fe9

Contents?: true

Size: 1.4 KB

Versions: 3

Compression:

Stored size: 1.4 KB

Contents

# frozen_string_literal: true

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

        def diff_fields_mapping
          {
            address: :string,
            attendees_count: :integer,
            attending_organizations: :string,
            closed_at: :date,
            closing_report: :i18n,
            description: :i18n,
            end_date: :date,
            location: :i18n,
            location_hints: :i18n,
            start_date: :date,
            title: :i18n
          }
        end

        def action_string
          case action
          when "close", "create", "delete", "export_registrations", "update"
            "decidim.meetings.admin_log.meeting.#{action}"
          else
            super
          end
        end

        def i18n_labels_scope
          "activemodel.attributes.meeting"
        end

        def has_diff?
          action == "close" || super
        end
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
decidim-meetings-0.11.2 app/presenters/decidim/meetings/admin_log/meeting_presenter.rb
decidim-meetings-0.11.1 app/presenters/decidim/meetings/admin_log/meeting_presenter.rb
decidim-meetings-0.11.0.pre1 app/presenters/decidim/meetings/admin_log/meeting_presenter.rb