2018-08-06 10:13:22 +05:30
|
|
|
{{$file := .file}}
|
2016-08-28 17:01:42 +05:30
|
|
|
{{range $j, $section := $file.Sections}}
|
|
|
|
{{range $k, $line := $section.Lines}}
|
2020-08-08 06:52:34 +05:30
|
|
|
{{if or $.root.AfterCommitID (ne .GetType 4)}}
|
2021-01-09 03:19:55 +05:30
|
|
|
<tr class="{{DiffLineTypeToStr .GetType}}-code nl-{{$k}} ol-{{$k}}" data-line-type="{{DiffLineTypeToStr .GetType}}">
|
2020-08-08 06:52:34 +05:30
|
|
|
{{if eq .GetType 4}}
|
|
|
|
<td colspan="2" class="lines-num">
|
|
|
|
{{if or (eq $line.GetExpandDirection 3) (eq $line.GetExpandDirection 5) }}
|
2021-11-16 23:48:25 +05:30
|
|
|
<a role="button" class="blob-excerpt" data-url="{{$.root.RepoLink}}/blob_excerpt/{{PathEscape $.root.AfterCommitID}}" data-query="{{$line.GetBlobExcerptQuery}}&style=unified&direction=down" data-anchor="diff-{{Sha1 $file.Name}}K{{$line.SectionInfo.RightIdx}}">
|
2020-09-12 01:49:00 +05:30
|
|
|
{{svg "octicon-fold-down"}}
|
2020-08-08 06:52:34 +05:30
|
|
|
</a>
|
|
|
|
{{end}}
|
|
|
|
{{if or (eq $line.GetExpandDirection 3) (eq $line.GetExpandDirection 4) }}
|
2021-11-16 23:48:25 +05:30
|
|
|
<a role="button" class="blob-excerpt" data-url="{{$.root.RepoLink}}/blob_excerpt/{{PathEscape $.root.AfterCommitID}}" data-query="{{$line.GetBlobExcerptQuery}}&style=unified&direction=up" data-anchor="diff-{{Sha1 $file.Name}}K{{$line.SectionInfo.RightIdx}}">
|
2020-09-12 01:49:00 +05:30
|
|
|
{{svg "octicon-fold-up"}}
|
2020-08-08 06:52:34 +05:30
|
|
|
</a>
|
|
|
|
{{end}}
|
|
|
|
{{if eq $line.GetExpandDirection 2}}
|
2021-11-16 23:48:25 +05:30
|
|
|
<a role="button" class="blob-excerpt" data-url="{{$.root.RepoLink}}/blob_excerpt/{{PathEscape $.root.AfterCommitID}}" data-query="{{$line.GetBlobExcerptQuery}}&style=unified&direction=" data-anchor="diff-{{Sha1 $file.Name}}K{{$line.SectionInfo.RightIdx}}">
|
2020-09-12 01:49:00 +05:30
|
|
|
{{svg "octicon-fold"}}
|
2020-08-08 06:52:34 +05:30
|
|
|
</a>
|
|
|
|
{{end}}
|
|
|
|
</td>
|
|
|
|
{{else}}
|
|
|
|
<td class="lines-num lines-num-old" data-line-num="{{if $line.LeftIdx}}{{$line.LeftIdx}}{{end}}"><span rel="{{if $line.LeftIdx}}diff-{{Sha1 $file.Name}}L{{$line.LeftIdx}}{{end}}"></span></td>
|
|
|
|
<td class="lines-num lines-num-new" data-line-num="{{if $line.RightIdx}}{{$line.RightIdx}}{{end}}"><span rel="{{if $line.RightIdx}}diff-{{Sha1 $file.Name}}R{{$line.RightIdx}}{{end}}"></span></td>
|
2019-11-15 08:22:59 +05:30
|
|
|
{{end}}
|
2020-08-08 06:52:34 +05:30
|
|
|
<td class="lines-type-marker"><span class="mono" data-type-marker="{{$line.GetLineTypeMarker}}"></span></td>
|
|
|
|
{{if eq .GetType 4}}
|
2020-11-04 12:44:07 +05:30
|
|
|
<td class="chroma lines-code blob-hunk"><code class="code-inner">{{$section.GetComputedInlineDiffFor $line}}</code></td>
|
2020-08-08 06:52:34 +05:30
|
|
|
{{else}}
|
2021-11-19 07:58:27 +05:30
|
|
|
<td class="chroma lines-code{{if (not $line.RightIdx)}} lines-code-old{{end}}">{{if and $.root.SignedUserID $.root.PageIsPullFiles}}<a class="ui primary button add-code-comment add-code-comment-{{if $line.RightIdx}}right{{else}}left{{end}}{{if (not $line.CanComment)}} invisible{{end}}" data-side="{{if $line.RightIdx}}right{{else}}left{{end}}" data-idx="{{if $line.RightIdx}}{{$line.RightIdx}}{{else}}{{$line.LeftIdx}}{{end}}">{{svg "octicon-plus"}}</a>{{end}}<code class="code-inner">{{$section.GetComputedInlineDiffFor $line}}</code></td>
|
2019-11-15 08:22:59 +05:30
|
|
|
{{end}}
|
2020-08-08 06:52:34 +05:30
|
|
|
</tr>
|
|
|
|
{{if gt (len $line.Comments) 0}}
|
2021-01-09 03:19:55 +05:30
|
|
|
<tr class="add-comment" data-line-type="{{DiffLineTypeToStr .GetType}}">
|
2020-08-08 06:52:34 +05:30
|
|
|
<td colspan="2" class="lines-num"></td>
|
|
|
|
<td class="add-comment-left add-comment-right" colspan="2">
|
2020-12-03 20:35:27 +05:30
|
|
|
{{template "repo/diff/conversation" mergeinto $.root "comments" $line.Comments}}
|
2020-08-08 06:52:34 +05:30
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
{{end}}
|
2018-08-06 10:13:22 +05:30
|
|
|
{{end}}
|
2016-08-28 17:01:42 +05:30
|
|
|
{{end}}
|
2018-08-06 10:13:22 +05:30
|
|
|
{{end}}
|