summaryrefslogtreecommitdiff
path: root/lib/gitlab/conflict/file.rb
diff options
context:
space:
mode:
authorSean McGivern <sean@gitlab.com>2016-07-29 13:29:14 +0100
committerFatih Acet <acetfatih@gmail.com>2016-08-12 23:24:43 +0300
commit7af277f683cd5ee0d5e3ffbc1dd3ce1d61f17848 (patch)
treee442df62fad56f5d907306ca8513a24a319d854b /lib/gitlab/conflict/file.rb
parentd77216356a686029410c16d35775e42ef81a0e64 (diff)
downloadgitlab-ce-7af277f683cd5ee0d5e3ffbc1dd3ce1d61f17848.tar.gz
Auto-highlight conflict when rich_text is called
Diffstat (limited to 'lib/gitlab/conflict/file.rb')
-rw-r--r--lib/gitlab/conflict/file.rb13
1 files changed, 5 insertions, 8 deletions
diff --git a/lib/gitlab/conflict/file.rb b/lib/gitlab/conflict/file.rb
index 80f6f7feecf..9ba8ae0367f 100644
--- a/lib/gitlab/conflict/file.rb
+++ b/lib/gitlab/conflict/file.rb
@@ -21,7 +21,8 @@ module Gitlab
def lines
@lines ||= Gitlab::Conflict::Parser.new.parse(merge_file_result[:data],
our_path: our_path,
- their_path: their_path)
+ their_path: their_path,
+ parent: self)
end
def resolve!(resolution, index:, rugged:)
@@ -57,27 +58,23 @@ module Gitlab
end.compact
end
- def highlighted_lines
- return @highlighted_lines if @highlighted_lines
-
+ def highlight_lines!
their_highlight = Gitlab::Highlight.highlight_lines(repository, their_ref, their_path)
our_highlight = Gitlab::Highlight.highlight_lines(repository, our_ref, our_path)
- @highlighted_lines = lines.map do |line|
- line = line.dup
+ lines.each do |line|
if line.type == 'old'
line.rich_text = their_highlight[line.old_line - 1]
else
line.rich_text = our_highlight[line.new_line - 1]
end
- line
end
end
def sections
return @sections if @sections
- chunked_lines = highlighted_lines.chunk { |line| line.type.nil? }
+ chunked_lines = lines.chunk { |line| line.type.nil? }
match_line = nil
@sections = chunked_lines.flat_map.with_index do |(no_conflict, lines), i|