Sha256: 652cab32802ef3698de445eb56bbae555c17cd9411913fbf3de580883cc198b1

Contents?: true

Size: 1.27 KB

Versions: 7

Compression:

Stored size: 1.27 KB

Contents

# frozen_string_literal: true

module Decidim
  # This helper includes some methods to help with generating short links within
  # the Decidim engine views.
  module ShortLinkHelper
    # A helper method to get a short URL in the current context where this
    # method is called from. This helper automatically fetches the "target" for
    # the short link, such as the component or the participatory process. This
    # also resolves the current mounted route name to make it possible to refer
    # to the same context when redirecting the short URL to correct full URL.
    #
    # @option kwargs [Boolean] :route_name the route name to which the short
    #   link should link to
    # @option kwargs [Float] :params the URL query parameters that should be
    #   included in the URL where the short link redirects to
    # @return [String] The short URL
    def short_url(**kwargs)
      target = respond_to?(:current_component) && current_component
      target ||= respond_to?(:current_participatory_space) && current_participatory_space
      target ||= respond_to?(:current_organization) && current_organization
      target ||= Rails.application

      mounted_engine = EngineResolver.new(_routes).mounted_name
      ShortLink.to(target, mounted_engine, **kwargs).short_url
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
decidim-core-0.27.4 app/helpers/decidim/short_link_helper.rb
decidim-core-0.27.3 app/helpers/decidim/short_link_helper.rb
decidim-core-0.27.2 app/helpers/decidim/short_link_helper.rb
decidim-core-0.27.1 app/helpers/decidim/short_link_helper.rb
decidim-core-0.27.0 app/helpers/decidim/short_link_helper.rb
decidim-core-0.27.0.rc2 app/helpers/decidim/short_link_helper.rb
decidim-core-0.27.0.rc1 app/helpers/decidim/short_link_helper.rb