Class: Qti::V1::Models::Choices::FillBlankChoice

Inherits:
Base show all
Defined in:
lib/qti/v1/models/choices/fill_blank_choice.rb

Instance Attribute Summary

Attributes inherited from Models::Base

#doc, #manifest, #package_root, #path, #resource

Instance Method Summary collapse

Methods inherited from Base

#qti_version, #return_inner_content!

Methods inherited from Models::Base

#css_with_single_check, from_path!, #parse_html, #parse_xml, #preprocess_xml_doc, #raise_unsupported, #remap_href_path, #sanitize_content!, #xpath_with_single_check

Constructor Details

#initialize(node, parent) ⇒ FillBlankChoice

Returns a new instance of FillBlankChoice.



8
9
10
11
# File 'lib/qti/v1/models/choices/fill_blank_choice.rb', line 8

def initialize(node, parent)
  @node = node
  copy_paths_from_item(parent)
end

Instance Method Details

#identifierObject



13
14
15
16
# File 'lib/qti/v1/models/choices/fill_blank_choice.rb', line 13

def identifier
  @identifier ||= @node.attributes['respident']&.value ||
                  @node.attributes['ident']&.value
end

#item_bodyObject



22
23
24
25
26
27
28
# File 'lib/qti/v1/models/choices/fill_blank_choice.rb', line 22

def item_body
  @item_body ||= begin
    node = @node.dup
    inner_content = return_inner_content!(node)
    sanitize_content!(inner_content)
  end
end

#parent_identifierObject



18
19
20
# File 'lib/qti/v1/models/choices/fill_blank_choice.rb', line 18

def parent_identifier
  @parent_identifier ||= @node.parent.parent.attributes['ident']&.value
end