Sha256: b1ac1871dd36beb87a90646362343b915c959a4e9d4647a2b038f94928adc4ad

Contents?: true

Size: 1.16 KB

Versions: 2

Compression:

Stored size: 1.16 KB

Contents

# frozen_string_literal: true

module MicroMicro
  module Parsers
    class ImpliedPhotoPropertyParser < BaseImpliedPropertyParser
      CSS_SELECTORS_ARRAY = ['> img[src]:only-of-type', '> object[data]:only-of-type'].freeze

      HTML_ELEMENTS_MAP = {
        'img'    => 'src',
        'object' => 'data'
      }.freeze

      # @see https://microformats.org/wiki/microformats2-parsing#parsing_for_implied_properties
      # @see https://microformats.org/wiki/microformats2-parsing#parse_an_img_element_for_src_and_alt
      #
      # @return [String, Hash{Symbol => String}, nil]
      def value
        @value ||=
          if attribute_value
            return attribute_value unless candidate_node.matches?('img[alt]')

            {
              value: attribute_value,
              alt: candidate_node['alt'].strip
            }
          end
      end

      private

      # @return [Array]
      def child_nodes
        nodes = [node.at_css(*CSS_SELECTORS_ARRAY)]

        nodes << node.first_element_child.at_css(*CSS_SELECTORS_ARRAY) if node.element_children.one?

        nodes.compact.reject { |child_node| Helpers.item_node?(child_node) }
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
micromicro-2.0.1 lib/micro_micro/parsers/implied_photo_property_parser.rb
micromicro-2.0.0 lib/micro_micro/parsers/implied_photo_property_parser.rb