Sha256: 2983b6acc3c48e410d4002671ffe5183e87bbb2818057bbe10004e34a593224e

Contents?: true

Size: 1.78 KB

Versions: 3

Compression:

Stored size: 1.78 KB

Contents

# frozen_string_literal: true

require "tsort"
require "dry/core/equalizer"

module Hanami
  class View
    # @api private
    class Exposures
      include Dry::Equalizer(:exposures)
      include TSort

      attr_reader :exposures

      def initialize(exposures = {})
        @exposures = exposures
      end

      def key?(name)
        exposures.key?(name)
      end

      def [](name)
        exposures[name]
      end

      def each(&block)
        exposures.each(&block)
      end

      def add(name, proc = nil, **options)
        exposures[name] = Exposure.new(name, proc, **options)
      end

      def import(name, exposure)
        exposures[name] = exposure.dup
      end

      def bind(obj)
        bound_exposures = exposures.each_with_object({}) { |(name, exposure), memo|
          memo[name] = exposure.bind(obj)
        }

        self.class.new(bound_exposures)
      end

      def call(input)
        # Avoid performance cost of tsorting when we don't need it
        names =
          if exposures.values.any?(&:dependencies?) # TODO: this sholud be cachable at time of `#add`
            tsort
          else
            exposures.keys
          end

        names
          .each_with_object({}) { |name, memo|
            next unless (exposure = self[name])

            value = exposure.(input, memo)
            value = yield(value, exposure) if block_given?

            memo[name] = value
          }
          .tap { |hsh|
            names.each do |key|
              hsh.delete(key) if self[key].private?
            end
          }
      end

      private

      def tsort_each_node(&block)
        exposures.each_key(&block)
      end

      def tsort_each_child(name, &block)
        self[name].dependency_names.each(&block) if exposures.key?(name)
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
hanami-view-2.1.0.rc1 lib/hanami/view/exposures.rb
hanami-view-2.1.0.beta2 lib/hanami/view/exposures.rb
hanami-view-2.1.0.beta1 lib/hanami/view/exposures.rb