Sha256: 7dfc7d9515a40a12ab76ea1bc528a9eaa25d35ff34e234ecb6d284de5e3454b3

Contents?: true

Size: 1.12 KB

Versions: 5

Compression:

Stored size: 1.12 KB

Contents

# frozen_string_literal: true

module Decidim
  module Amendable
    # This cell renders the button to amend the given resource.
    class PromoteButtonCardCell < Decidim::ViewModel
      delegate :current_user, to: :controller, prefix: false

      def emendation
        @emendation ||= model
      end

      def model_name
        model.model_name.human
      end

      def current_component
        model.component
      end

      def promote_amend_path
        decidim.promote_amend_path(model)
      end

      def promote_amend_button_label
        t("promote_button", scope: "decidim.amendments.amendable", model_name: model_name)
      end

      def promote_amend_help_text
        content_tag :small do
          t("promote_help_text",
            scope: "decidim.amendments.amendable",
            model_name: model_name.downcase,
            amendable_fields: model.fields.to_sentence)
        end
      end

      def decidim
        Decidim::Core::Engine.routes.url_helpers
      end

      def button_classes
        "amend_button_card_cell button secondary hollow expanded button--icon button--sc"
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
decidim-core-0.17.2 app/cells/decidim/amendable/promote_button_card_cell.rb
decidim-core-0.17.1 app/cells/decidim/amendable/promote_button_card_cell.rb
decidim-core-0.16.1 app/cells/decidim/amendable/promote_button_card_cell.rb
decidim-core-0.17.0 app/cells/decidim/amendable/promote_button_card_cell.rb
decidim-core-0.16.0 app/cells/decidim/amendable/promote_button_card_cell.rb