Sha256: 031a7e36804e4e54b531b94259bdaa6e2939c39df50f82cb5d7f1f545b002b39

Contents?: true

Size: 1.75 KB

Versions: 2

Compression:

Stored size: 1.75 KB

Contents

# frozen_string_literal: true

require 'html/pipeline'
require 'yaml'
require 'extended-markdown-filter'
require 'ostruct'

module GraphQLDocs
  class Renderer
    include Helpers

    attr_reader :options

    def initialize(parsed_schema, options)
      @parsed_schema = parsed_schema
      @options = options

      @graphql_default_layout = ERB.new(File.read(@options[:templates][:default])) unless @options[:templates][:default].nil?

      @pipeline_config = @options[:pipeline_config] || {}
      pipeline = @pipeline_config[:pipeline] || {}
      context = @pipeline_config[:context] || {}

      filters = pipeline.map do |f|
        if filter?(f)
          f
        else
          key = filter_key(f)
          filter = HTML::Pipeline.constants.find { |c| c.downcase == key }
          # possibly a custom filter
          if filter.nil?
            Kernel.const_get(f)
          else
            HTML::Pipeline.const_get(filter)
          end
        end
      end

      @pipeline = HTML::Pipeline.new(filters, context)
    end

    def render(contents, type: nil, name: nil, filename: nil)
      opts = { base_url: @options[:base_url], output_dir: @options[:output_dir] }.merge({ type: type, name: name, filename: filename }).merge(helper_methods)

      contents = to_html(contents, context: { filename: filename })
      return contents if @graphql_default_layout.nil?

      opts[:content] = contents
      @graphql_default_layout.result(OpenStruct.new(opts).instance_eval { binding })
    end

    def to_html(string, context: {})
      @pipeline.to_html(string, context)
    end

    private

    def filter_key(str)
      str.downcase
    end

    def filter?(filter)
      filter < HTML::Pipeline::Filter
    rescue LoadError, ArgumentError
      false
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
graphql-docs-5.1.0 lib/graphql-docs/renderer.rb
graphql-docs-5.0.0 lib/graphql-docs/renderer.rb