Sha256: dc23002b382fe1b763e942a16a2944c5b298cb28e445e42f6af257b9bab4d2d6

Contents?: true

Size: 1.34 KB

Versions: 1

Compression:

Stored size: 1.34 KB

Contents

# encoding: utf-8

# Methods added to this helper will be available to all templates
# in the application.
module PagesCore
  module ApplicationHelper
    include PagesCore::HeadTagsHelper
    include PagesCore::ImagesHelper
    include PagesCore::MetaTagsHelper
    include PagesCore::OpenGraphTagsHelper
    include PagesCore::PagePathHelper

    def page_link(page, options = {})
      link_locale = options[:locale] || locale
      page.localize(link_locale) do |p|
        title = options[:title] || p.name.to_s
        return title unless conditional_options?(options)
        link_to(title, page_link_path(link_locale, p), class: options[:class])
      end
    end

    def unique_page(page_name, &block)
      locale = @locale || I18n.default_locale.to_s
      page = Page.where(unique_name: page_name).first
      if page && block_given?
        output = capture(page.localize(locale), &block)
        concat(output)
      end
      page ? page.localize(locale) : nil
    end

    private

    def conditional_options?(options = {})
      if options.key?(:if)
        options[:if]
      elsif options.key?(:unless)
        !options[:unless]
      else
        true
      end
    end

    def page_link_path(locale, page)
      if page.redirects?
        page.redirect_path(locale: locale)
      else
        page_path(locale, page)
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
pages_core-3.5.1 app/helpers/pages_core/application_helper.rb