Sha256: b7c2ebb1ad4274777e33f8176b9628840d6adaa164c796bc8cfb954937a31dc7

Contents?: true

Size: 956 Bytes

Versions: 5

Compression:

Stored size: 956 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 organizationn.
    def cta_button
      button_text = translated_attribute(current_organization.cta_button_text).presence || t("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

5 entries across 5 versions & 1 rubygems

Version Path
decidim-core-0.7.4 app/helpers/decidim/cta_button_helper.rb
decidim-core-0.7.3 app/helpers/decidim/cta_button_helper.rb
decidim-core-0.7.2 app/helpers/decidim/cta_button_helper.rb
decidim-core-0.7.1 app/helpers/decidim/cta_button_helper.rb
decidim-core-0.7.0 app/helpers/decidim/cta_button_helper.rb