Sha256: de8f1c7b5decd95cf70219d6c403da28b1f84460f680d514a26598e9e7c743b5

Contents?: true

Size: 1.66 KB

Versions: 8

Compression:

Stored size: 1.66 KB

Contents

# frozen_string_literal: true
require 'forwardable'
require 'active_support/inflector/transliterate'
require 'active_support/hash_with_indifferent_access'

module Dato
  module Local
    class Site
      extend Forwardable

      attr_reader :entity
      def_delegators :entity, :id, :name, :locales, :theme_hue, :domain,
                     :internal_domain, :no_index, :frontend_url

      def initialize(entity)
        @entity = entity
      end

      def global_seo
        read_attribute(:global_seo, FieldType::GlobalSeo, locales.size > 1)
      end

      def favicon
        read_attribute(:favicon, FieldType::Image, false)
      end

      def to_s
        "#<Site id=#{id} site_name=#{name}>"
      end
      alias inspect to_s

      def favicon_meta_tags(theme_color = nil)
        Utils::FaviconTagsBuilder.new(self, theme_color).meta_tags
      end

      def to_hash
        attributes = [
          :id, :name, :locales, :theme_hue, :domain, :internal_domain,
          :no_index, :global_seo, :favicon, :frontend_url
        ]

        attributes.each_with_object({}) do |attribute, result|
          value = send(attribute)
          result[attribute] = if value.respond_to?(:to_hash)
                                value.to_hash
                              else
                                value
                              end
        end
      end

      private

      def read_attribute(method, type_klass, localized)
        value = if localized
                  (entity.send(method) || {})[I18n.locale]
                else
                  entity.send(method)
                end

        type_klass.parse(value, @items_repo)
      end
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
dato-0.3.13 lib/dato/local/site.rb
dato-0.3.12 lib/dato/local/site.rb
dato-0.3.9.1 lib/dato/local/site.rb
dato-0.3.11 lib/dato/local/site.rb
dato-0.3.10 lib/dato/local/site.rb
dato-0.3.9 lib/dato/local/site.rb
dato-0.3.8 lib/dato/local/site.rb
dato-0.3.7 lib/dato/local/site.rb