Sha256: 200001b0918c99b5c8b7cf3a6495e6332c34440e1117cd3313d3ff883f2a24c4

Contents?: true

Size: 1.89 KB

Versions: 9

Compression:

Stored size: 1.89 KB

Contents

# frozen_string_literal: true

require "hanami/view"

module Hanami
  module Extensions
    module View
      # Provides slice-specific configuration and behavior for any view context class
      # defined within a slice's module namespace.
      #
      # @api private
      # @since 2.0.0
      class SliceConfiguredContext < Module
        attr_reader :slice

        def initialize(slice)
          super()
          @slice = slice
        end

        def extended(_context_class)
          define_new
        end

        def inspect
          "#<#{self.class.name}[#{slice.name}]>"
        end

        private

        # Defines a {.new} method on the context class that resolves key components from
        # the app container and provides them to {#initialize} as injected
        # dependencies.
        #
        # This includes the following app components:
        #
        #   - the configured inflector as `inflector`
        #   - "settings" from the app container as `settings`
        #   - "routes" from the app container as `routes`
        #   - "assets" from the app container as `assets`
        def define_new
          inflector = slice.inflector
          resolve_settings = method(:resolve_settings)
          resolve_routes = method(:resolve_routes)
          resolve_assets = method(:resolve_assets)

          define_method :new do |**kwargs|
            kwargs[:inflector] ||= inflector
            kwargs[:settings] ||= resolve_settings.()
            kwargs[:routes] ||= resolve_routes.()
            kwargs[:assets] ||= resolve_assets.()

            super(**kwargs)
          end
        end

        def resolve_settings
          slice["settings"] if slice.key?("settings")
        end

        def resolve_routes
          slice["routes"] if slice.key?("routes")
        end

        def resolve_assets
          slice["assets"] if slice.key?("assets")
        end
      end
    end
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
hanami-2.0.3 lib/hanami/extensions/view/slice_configured_context.rb
hanami-2.0.2 lib/hanami/extensions/view/slice_configured_context.rb
hanami-2.0.1 lib/hanami/extensions/view/slice_configured_context.rb
hanami-2.0.0 lib/hanami/extensions/view/slice_configured_context.rb
hanami-2.0.0.rc1 lib/hanami/extensions/view/slice_configured_context.rb
hanami-2.0.0.beta4 lib/hanami/extensions/view/slice_configured_context.rb
hanami-2.0.0.beta3 lib/hanami/extensions/view/slice_configured_context.rb
hanami-2.0.0.beta2 lib/hanami/extensions/view/slice_configured_context.rb
hanami-2.0.0.beta1.1 lib/hanami/extensions/view/slice_configured_context.rb