Class: Card::Content::Chunk::Link

Inherits:
Reference show all
Defined in:
mod/core/chunk/link.rb

Constant Summary collapse

CODE =

L for "Link"

"L".freeze

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Reference

delete_if_referer_missing, map_referees, mass_insert, recreate_all, #referee, #referer, repair_all, unmap_if_referee_missing, unmap_referees

Instance Attribute Details

Returns the value of attribute link_text.



8
9
10
# File 'mod/core/chunk/link.rb', line 8

def link_text
  @link_text
end

Instance Method Details

#divider_index(string) ⇒ Object



36
37
38
39
40
41
42
43
44
45
# File 'mod/core/chunk/link.rb', line 36

def divider_index string
  # there's probably a better way to do the following.
  # point is to find the first pipe that's not inside an nest
  return unless string.index "|"
  string_copy = string.dup
  string.scan(/\{\{[^\}]*\}\}/) do |incl|
    string_copy.gsub! incl, ("x" * incl.length)
  end
  string_copy.index "|"
end

#explicit_link?Boolean

Returns:

  • (Boolean)


107
108
109
# File 'mod/core/chunk/link.rb', line 107

def explicit_link?
  @explicit_link
end

#inspectObject



85
86
87
88
# File 'mod/core/chunk/link.rb', line 85

def inspect
  "<##{self.class}:e[#{@explicit_link}]n[#{@name}]l[#{@link_text}]" \
  "p[#{@process_chunk}] txt:#{@text}>"
end

#interpret(match, _content) ⇒ Object



18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# File 'mod/core/chunk/link.rb', line 18

def interpret match, _content
  target, @link_text =
    if (raw_syntax = match[1])
      if (i = divider_index(raw_syntax))  # [[A | B]]
        [raw_syntax[0..(i - 1)], raw_syntax[(i + 1)..-1]]
      else                                # [[ A ]]
        [raw_syntax, nil]
      end
    end

  @link_text = objectify @link_text
  if target =~ %r{/|mailto:}
    @explicit_link = objectify target
  else
    @name = target
  end
end


73
74
75
76
77
78
79
# File 'mod/core/chunk/link.rb', line 73

def link_target
  if @explicit_link
    render_obj @explicit_link
  elsif @name
    referee_name
  end
end

#objectify(raw) ⇒ Object



52
53
54
55
56
57
58
59
60
# File 'mod/core/chunk/link.rb', line 52

def objectify raw
  return unless raw
  raw.strip!
  if raw =~ /(^|[^\\])\{\{/
    Card::Content.new raw, format
  else
    raw
  end
end

#optionsObject

view options



48
49
50
# File 'mod/core/chunk/link.rb', line 48

def options
  link_text ? { title: link_text } : {}
end

#process_chunkObject



81
82
83
# File 'mod/core/chunk/link.rb', line 81

def process_chunk
  @process_chunk ||= render_link
end

#reference_codeObject



14
15
16
# File 'mod/core/chunk/link.rb', line 14

def reference_code
  CODE
end


62
63
64
65
66
67
68
69
70
71
# File 'mod/core/chunk/link.rb', line 62

def render_link view: :link, explicit_link_opts: {}
  @link_text = render_obj @link_text

  if @explicit_link
    @explicit_link = render_obj @explicit_link
    format.link_to_resource @explicit_link, @link_text, explicit_link_opts
  elsif @name
    format.nest referee_name, options.merge(view: view)
  end
end


97
98
99
100
101
102
103
104
105
# File 'mod/core/chunk/link.rb', line 97

def replace_link_text old_name, new_name
  if @link_text.is_a?(Card::Content)
    @link_text.find_chunks(Card::Content::Chunk::Reference).each do |chunk|
      chunk.replace_reference old_name, new_name
    end
  elsif @link_text.present?
    @link_text = old_name.to_name.sub_in(@link_text, with: new_name)
  end
end

#replace_reference(old_name, new_name) ⇒ Object



90
91
92
93
94
95
# File 'mod/core/chunk/link.rb', line 90

def replace_reference old_name, new_name
  replace_name_reference old_name, new_name
  replace_link_text old_name, new_name
  @text =
    @link_text.nil? ? "[[#{referee_name}]]" : "[[#{referee_name}|#{@link_text}]]"
end