Sha256: c17b7004df4ef87e63fb0bd3bc796348e6d5d8d6b0f05e60f63c7a0b6858c585

Contents?: true

Size: 963 Bytes

Versions: 14

Compression:

Stored size: 963 Bytes

Contents

# frozen_string_literal: true

module Decidim
  # A Helper to render the Call To Action button.
  module CtaButtonHelper
    # Renders the Call To Action button. Link and text can be configured
    # per organization.
    def cta_button
      button_text = translated_attribute(current_organization.cta_button_text).presence || t("decidim.pages.home.hero.participate")

      link_to button_text, cta_button_path, class: "hero-cta button expanded large button--sc"
    end

    # Finds the CTA button path to reuse it in other places.
    def cta_button_path
      if current_organization.cta_button_path.present?
        current_organization.cta_button_path
      elsif Decidim::ParticipatoryProcess.where(organization: current_organization).published.any?
        decidim_participatory_processes.participatory_processes_path
      elsif current_user
        decidim.account_path
      else
        decidim.new_user_registration_path
      end
    end
  end
end

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
decidim-core-0.15.2 app/helpers/decidim/cta_button_helper.rb
decidim-core-0.15.1 app/helpers/decidim/cta_button_helper.rb
decidim-core-0.15.0 app/helpers/decidim/cta_button_helper.rb
decidim-core-0.14.4 app/helpers/decidim/cta_button_helper.rb
decidim-core-0.14.3 app/helpers/decidim/cta_button_helper.rb
decidim-core-0.14.2 app/helpers/decidim/cta_button_helper.rb
decidim-core-0.14.1 app/helpers/decidim/cta_button_helper.rb
decidim-core-0.13.1 app/helpers/decidim/cta_button_helper.rb
decidim-core-0.12.2 app/helpers/decidim/cta_button_helper.rb
decidim-core-0.13.0 app/helpers/decidim/cta_button_helper.rb
decidim-core-0.12.1 app/helpers/decidim/cta_button_helper.rb
decidim-core-0.13.0.pre1 app/helpers/decidim/cta_button_helper.rb
decidim-core-0.12.0 app/helpers/decidim/cta_button_helper.rb
decidim-core-0.12.0.pre app/helpers/decidim/cta_button_helper.rb