Sha256: e4d41eddfe46cc99080a7cfdcd2da242636e51d106d8adc2526ffe3bb329f9f1

Contents?: true

Size: 1.57 KB

Versions: 15

Compression:

Stored size: 1.57 KB

Contents

# frozen_string_literal: true

module Alchemy
  class Page
    # = The url_path for this page
    #
    # Use this to build relative links to this page
    #
    # It takes several circumstances into account:
    #
    # 1. It returns just a slash for language root pages of the default langauge
    # 2. It returns a url path with a leading slash for regular pages
    # 3. It returns a url path with a leading slash and language code prefix for pages not having the default language
    # 4. It returns a url path with a leading slash and the language code for language root pages of a non-default language
    #
    # == Examples
    #
    # Using Rails' link_to helper
    #
    #     link_to page.url
    #
    class UrlPath
      ROOT_PATH = "/"

      def initialize(page)
        @page = page
        @language = @page.language
        @site = @language.site
      end

      def call
        if @page.language_root?
          language_root_path
        elsif @site.languages.select(&:public?).length > 1
          page_path_with_language_prefix
        else
          page_path_with_leading_slash
        end
      end

      private

      def language_root_path
        @language.default? ? ROOT_PATH : language_path
      end

      def page_path_with_language_prefix
        @language.default? ? page_path : language_path + page_path
      end

      def page_path_with_leading_slash
        @page.language_root? ? ROOT_PATH : page_path
      end

      def language_path
        "/#{@page.language_code}"
      end

      def page_path
        "/#{@page.urlname}"
      end
    end
  end
end

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
alchemy_cms-5.0.10 app/models/alchemy/page/url_path.rb
alchemy_cms-5.0.9 app/models/alchemy/page/url_path.rb
alchemy_cms-5.0.8 app/models/alchemy/page/url_path.rb
alchemy_cms-5.0.7 app/models/alchemy/page/url_path.rb
alchemy_cms-5.0.6 app/models/alchemy/page/url_path.rb
alchemy_cms-5.0.5 app/models/alchemy/page/url_path.rb
alchemy_cms-5.0.4 app/models/alchemy/page/url_path.rb
alchemy_cms-5.0.3 app/models/alchemy/page/url_path.rb
alchemy_cms-5.0.2 app/models/alchemy/page/url_path.rb
alchemy_cms-5.0.1 app/models/alchemy/page/url_path.rb
alchemy_cms-5.0.0 app/models/alchemy/page/url_path.rb
alchemy_cms-5.0.0.rc2 app/models/alchemy/page/url_path.rb
alchemy_cms-5.0.0.rc1 app/models/alchemy/page/url_path.rb
alchemy_cms-5.0.0.beta2 app/models/alchemy/page/url_path.rb
alchemy_cms-5.0.0.beta1 app/models/alchemy/page/url_path.rb