Sha256: 8d802edb35665a4d2bff92e6a9339805d6c0b0c484a634f8b8504ce6ad577d9a

Contents?: true

Size: 1.82 KB

Versions: 1

Compression:

Stored size: 1.82 KB

Contents

# frozen_string_literal: true

require "forwardable"
require "active_support/inflector/transliterate"
require "active_support/hash_with_indifferent_access"
require "dato/utils/locale_value"

module Dato
  module Local
    class Site
      extend Forwardable

      attr_reader :entity

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

      def initialize(entity, items_repo)
        @entity = entity
        @items_repo = items_repo
      end

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

      def theme
        read_attribute(:theme, FieldType::Theme, false)
      end

      def favicon
        read_attribute(:favicon, FieldType::UploadId, 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 = %i[
          id name locales theme 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
                  obj = entity[method] || {}

                  Utils::LocaleValue.find(obj)
                else
                  entity[method]
                end

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

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
dato-0.8.1 lib/dato/local/site.rb