2019-07-07 11:18:12 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Gitlab
|
|
|
|
module Diff
|
|
|
|
class Suggestion
|
|
|
|
include Suggestible
|
|
|
|
include Gitlab::Utils::StrongMemoize
|
|
|
|
|
|
|
|
attr_reader :diff_file, :lines_above, :lines_below,
|
|
|
|
:target_line
|
|
|
|
|
|
|
|
def initialize(text, line:, above:, below:, diff_file:)
|
|
|
|
@text = text
|
|
|
|
@target_line = line
|
|
|
|
@lines_above = above.to_i
|
|
|
|
@lines_below = below.to_i
|
|
|
|
@diff_file = diff_file
|
|
|
|
end
|
|
|
|
|
|
|
|
def to_hash
|
|
|
|
{
|
|
|
|
from_content: from_content,
|
|
|
|
to_content: to_content,
|
|
|
|
lines_above: @lines_above,
|
|
|
|
lines_below: @lines_below
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
def from_content
|
|
|
|
strong_memoize(:from_content) do
|
|
|
|
fetch_from_content
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def to_content
|
2019-09-04 21:01:54 +05:30
|
|
|
return "" if @text.blank?
|
|
|
|
|
2019-07-07 11:18:12 +05:30
|
|
|
# The parsed suggestion doesn't have information about the correct
|
|
|
|
# ending characters (we may have a line break, or not), so we take
|
|
|
|
# this information from the last line being changed (last
|
|
|
|
# characters).
|
|
|
|
endline_chars = line_break_chars(from_content.lines.last)
|
|
|
|
"#{@text}#{endline_chars}"
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def line_break_chars(line)
|
2019-12-04 20:38:33 +05:30
|
|
|
match = Gitlab::Regex.breakline_regex.match(line)
|
2019-07-07 11:18:12 +05:30
|
|
|
match[0] if match
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|