Sha256: c16d03d8f98c05d2175a44b0ddd4d88f0b7f95b379973345ecafdba720f7d147

Contents?: true

Size: 1.32 KB

Versions: 16

Compression:

Stored size: 1.32 KB

Contents

module ReactOnRails
  module ReactComponent
    class Options
      NO_PROPS = {}.freeze
      HIDDEN = "display:none".freeze

      def initialize(name:, options:)
        @name = name
        @options = options
      end

      def props
        options.fetch(:props) { NO_PROPS }
      end

      def name
        @name.camelize
      end

      def dom_id
        @dom_id ||= options.fetch(:id) { generate_unique_dom_id }
      end

      def html_options
        options[:html_options].to_h
      end

      def prerender
        retrieve_key(:prerender)
      end

      def trace
        retrieve_key(:trace)
      end

      def replay_console
        retrieve_key(:replay_console)
      end

      def raise_on_prerender_error
        retrieve_key(:raise_on_prerender_error)
      end

      def data
        {
          component_name: name,
          props: props,
          trace: trace,
          dom_id: dom_id
        }
      end

      def style
        return nil if ReactOnRails.configuration.skip_display_none
        HIDDEN
      end

      private

      attr_reader :options

      def generate_unique_dom_id
        "#{@name}-react-component-#{SecureRandom.uuid}"
      end

      def retrieve_key(key)
        options.fetch(key) do
          ReactOnRails.configuration.public_send(key)
        end
      end
    end
  end
end

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
react_on_rails-6.3.2 lib/react_on_rails/react_component/options.rb
react_on_rails-6.3.1 lib/react_on_rails/react_component/options.rb
react_on_rails-6.3.0 lib/react_on_rails/react_component/options.rb
react_on_rails-6.2.1 lib/react_on_rails/react_component/options.rb
react_on_rails-6.2.1.rc.3 lib/react_on_rails/react_component/options.rb
react_on_rails-6.2.1.rc.2 lib/react_on_rails/react_component/options.rb
react_on_rails-6.2.1.rc.1 lib/react_on_rails/react_component/options.rb
react_on_rails-6.2.0 lib/react_on_rails/react_component/options.rb
react_on_rails-6.1.2 lib/react_on_rails/react_component/options.rb
react_on_rails-6.1.1 lib/react_on_rails/react_component/options.rb
react_on_rails-6.1.1.rc.1 lib/react_on_rails/react_component/options.rb
react_on_rails-6.1.0 lib/react_on_rails/react_component/options.rb
react_on_rails-6.0.5 lib/react_on_rails/react_component/options.rb
react_on_rails-6.0.4 lib/react_on_rails/react_component/options.rb
react_on_rails-6.0.3 lib/react_on_rails/react_component/options.rb
react_on_rails-6.0.2 lib/react_on_rails/react_component/options.rb