Class: Docx::Elements::Containers::TextRun

Inherits:
Object
  • Object
show all
Includes:
Container, Element
Defined in:
lib/docx/containers/text_run.rb

Constant Summary collapse

DEFAULT_FORMATTING =
{
  italic:    false,
  bold:      false,
  underline: false
}

Constants included from Element

Element::DEFAULT_TAG

Instance Attribute Summary collapse

Attributes included from Element

#node

Class Method Summary collapse

Instance Method Summary collapse

Methods included from Element

#append_to, #copy, #html_tag, included, #insert_after, #insert_before, #parent, #parent_paragraph, #prepend_to

Methods included from Container

#blank!, #properties, #remove!

Constructor Details

#initialize(node, document_properties = {}) ⇒ TextRun

Returns a new instance of TextRun.



23
24
25
26
27
28
29
30
31
32
33
# File 'lib/docx/containers/text_run.rb', line 23

def initialize(node, document_properties = {})
  @node = node
  @text_nodes = @node.xpath('w:t').map {|t_node| Elements::Text.new(t_node) }
  @text_nodes = @node.xpath('w:t|w:r/w:t').map {|t_node| Elements::Text.new(t_node) }

  @properties_tag = 'rPr'
  @text       = parse_text || ''
  @formatting = parse_formatting || DEFAULT_FORMATTING
  @document_properties = document_properties
  @font_size = @document_properties[:font_size]
end

Instance Attribute Details

#formattingObject (readonly)

Returns the value of attribute formatting.



21
22
23
# File 'lib/docx/containers/text_run.rb', line 21

def formatting
  @formatting
end

#textObject

Returns the value of attribute text.



20
21
22
# File 'lib/docx/containers/text_run.rb', line 20

def text
  @text
end

Class Method Details

.tagObject



16
17
18
# File 'lib/docx/containers/text_run.rb', line 16

def self.tag
  'r'
end

Instance Method Details

#bolded?Boolean

Returns:

  • (Boolean)


87
88
89
# File 'lib/docx/containers/text_run.rb', line 87

def bolded?
  @formatting[:bold]
end

#font_sizeObject



107
108
109
110
# File 'lib/docx/containers/text_run.rb', line 107

def font_size
  size_tag = @node.xpath('w:rPr//w:sz').first
  size_tag ? size_tag.attributes['val'].value.to_i / 2 : @font_size
end

#hrefObject



99
100
101
# File 'lib/docx/containers/text_run.rb', line 99

def href
  @document_properties[:hyperlinks][hyperlink_id]
end

#hyperlink?Boolean

Returns:

  • (Boolean)


95
96
97
# File 'lib/docx/containers/text_run.rb', line 95

def hyperlink?
  @node.name == 'hyperlink'
end


103
104
105
# File 'lib/docx/containers/text_run.rb', line 103

def hyperlink_id
  @node.attributes['id'].value
end

#italicized?Boolean

Returns:

  • (Boolean)


83
84
85
# File 'lib/docx/containers/text_run.rb', line 83

def italicized?
  @formatting[:italic]
end

#parse_formattingObject



57
58
59
60
61
62
63
# File 'lib/docx/containers/text_run.rb', line 57

def parse_formatting
  {
    italic:    !@node.xpath('.//w:i').empty?,
    bold:      !@node.xpath('.//w:b').empty?,
    underline: !@node.xpath('.//w:u').empty?
  }
end

#parse_textObject

Returns text contained within text run



46
47
48
# File 'lib/docx/containers/text_run.rb', line 46

def parse_text
  @text_nodes.map(&:content).join('')
end

#substitute(match, replacement) ⇒ Object

Substitute text in text @text_nodes



51
52
53
54
55
# File 'lib/docx/containers/text_run.rb', line 51

def substitute(match, replacement)
  @text_nodes.each do |text_node|
    text_node.content = text_node.content.gsub(match, replacement)
  end
end

#to_htmlObject

Return text as a HTML fragment with formatting based on properties.



70
71
72
73
74
75
76
77
78
79
80
81
# File 'lib/docx/containers/text_run.rb', line 70

def to_html
  html = @text
  html = html_tag(:em, content: html) if italicized?
  html = html_tag(:strong, content: html) if bolded?
  styles = {}
  styles['text-decoration'] = 'underline' if underlined?
  # No need to be granular with font size down to the span level if it doesn't vary.
  styles['font-size'] = "#{font_size}pt" if font_size != @font_size 
  html = html_tag(:span, content: html, styles: styles) unless styles.empty?
  html = html_tag(:a, content: html, attributes: {href: href, target: "_blank"}) if hyperlink?
  return html
end

#to_sObject



65
66
67
# File 'lib/docx/containers/text_run.rb', line 65

def to_s
  @text
end

#underlined?Boolean

Returns:

  • (Boolean)


91
92
93
# File 'lib/docx/containers/text_run.rb', line 91

def underlined?
  @formatting[:underline]
end