File: render_context.rb

package info (click to toggle)
gitlab 17.6.5-19
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 629,368 kB
  • sloc: ruby: 1,915,304; javascript: 557,307; sql: 60,639; xml: 6,509; sh: 4,567; makefile: 1,239; python: 406
file content (33 lines) | stat: -rw-r--r-- 1,109 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# frozen_string_literal: true

module Banzai
  # Object storing the current user, project, and other details used when
  # parsing Markdown references.
  class RenderContext
    attr_reader :current_user, :options

    # default_project - The default project to use for all documents, if any.
    # current_user - The user viewing the document, if any.
    def initialize(default_project = nil, current_user = nil, options: {})
      @current_user = current_user
      @projects = Hash.new(default_project)
      @options = options
    end

    # Associates an HTML document with a Project.
    #
    # document - The HTML document to map to a Project.
    # object - The object that produced the HTML document.
    def associate_document(document, object)
      # XML nodes respond to "document" but will return a Document instance,
      # even when they belong to a DocumentFragment.
      document = document.document if document.fragment?

      @projects[document] = object.project if object.respond_to?(:project)
    end

    def project_for_node(node)
      @projects[node.document]
    end
  end
end