2019-11-15 02:52:59 +00:00
|
|
|
{{if $.IsSplitStyle}}
|
2020-07-13 13:21:19 +00:00
|
|
|
{{range $k, $line := $.section.Lines}}
|
2023-05-07 09:49:46 +00:00
|
|
|
<tr class="{{.GetHTMLDiffLineType}}-code nl-{{$k}} ol-{{$k}}">
|
2020-07-13 13:21:19 +00:00
|
|
|
{{if eq .GetType 4}}
|
|
|
|
<td class="lines-num lines-num-old" data-line-num="{{if $line.LeftIdx}}{{$line.LeftIdx}}{{end}}">
|
2024-03-22 13:45:10 +00:00
|
|
|
<div class="tw-flex">
|
2022-08-31 15:58:54 +00:00
|
|
|
{{if or (eq $line.GetExpandDirection 3) (eq $line.GetExpandDirection 5)}}
|
2024-02-25 05:07:23 +00:00
|
|
|
<button class="code-expander-button" hx-target="closest tr" hx-get="{{$.RepoLink}}/blob_excerpt/{{PathEscape $.AfterCommitID}}?{{$line.GetBlobExcerptQuery}}&style=split&direction=down&wiki={{$.PageIsWiki}}&anchor={{$.Anchor}}">
|
2020-09-11 20:19:00 +00:00
|
|
|
{{svg "octicon-fold-down"}}
|
2023-05-21 20:47:41 +00:00
|
|
|
</button>
|
2020-07-13 13:21:19 +00:00
|
|
|
{{end}}
|
2022-08-31 15:58:54 +00:00
|
|
|
{{if or (eq $line.GetExpandDirection 3) (eq $line.GetExpandDirection 4)}}
|
2024-02-25 05:07:23 +00:00
|
|
|
<button class="code-expander-button" hx-target="closest tr" hx-get="{{$.RepoLink}}/blob_excerpt/{{PathEscape $.AfterCommitID}}?{{$line.GetBlobExcerptQuery}}&style=split&direction=up&wiki={{$.PageIsWiki}}&anchor={{$.Anchor}}">
|
2020-09-11 20:19:00 +00:00
|
|
|
{{svg "octicon-fold-up"}}
|
2023-05-21 20:47:41 +00:00
|
|
|
</button>
|
2020-07-13 13:21:19 +00:00
|
|
|
{{end}}
|
|
|
|
{{if eq $line.GetExpandDirection 2}}
|
2024-02-25 05:07:23 +00:00
|
|
|
<button class="code-expander-button" hx-target="closest tr" hx-get="{{$.RepoLink}}/blob_excerpt/{{PathEscape $.AfterCommitID}}?{{$line.GetBlobExcerptQuery}}&style=split&direction=&wiki={{$.PageIsWiki}}&anchor={{$.Anchor}}">
|
2020-09-11 20:19:00 +00:00
|
|
|
{{svg "octicon-fold"}}
|
2023-05-21 20:47:41 +00:00
|
|
|
</button>
|
2020-07-13 13:21:19 +00:00
|
|
|
{{end}}
|
2023-05-21 20:47:41 +00:00
|
|
|
</div>
|
2020-07-13 13:21:19 +00:00
|
|
|
</td>
|
2023-09-25 12:42:40 +00:00
|
|
|
<td colspan="7" class="lines-code lines-code-old ">{{$inlineDiff := $.section.GetComputedInlineDiffFor $line ctx.Locale}}{{/*
|
2023-09-24 20:31:58 +00:00
|
|
|
*/}}{{template "repo/diff/section_code" dict "diff" $inlineDiff}}</td>
|
2020-07-13 13:21:19 +00:00
|
|
|
{{else}}
|
2023-09-25 12:42:40 +00:00
|
|
|
{{$inlineDiff := $.section.GetComputedInlineDiffFor $line ctx.Locale}}
|
2022-05-08 22:29:50 +00:00
|
|
|
<td class="lines-num lines-num-old" data-line-num="{{if $line.LeftIdx}}{{$line.LeftIdx}}{{end}}"><span rel="{{if $line.LeftIdx}}diff-{{$.FileNameHash}}L{{$line.LeftIdx}}{{end}}"></span></td>
|
2023-09-24 20:31:58 +00:00
|
|
|
<td class="blob-excerpt lines-escape lines-escape-old">{{if and $line.LeftIdx $inlineDiff.EscapeStatus.Escaped}}<button class="toggle-escape-button btn interact-bg" title="{{template "repo/diff/escape_title" dict "diff" $inlineDiff}}"></button>{{end}}</td>
|
2024-03-28 08:31:07 +00:00
|
|
|
<td class="blob-excerpt lines-type-marker lines-type-marker-old">{{if $line.LeftIdx}}<span class="tw-font-mono" data-type-marker=""></span>{{end}}</td>
|
2023-04-04 11:05:07 +00:00
|
|
|
<td class="blob-excerpt lines-code lines-code-old">{{/*
|
2023-09-24 20:31:58 +00:00
|
|
|
*/}}{{if $line.LeftIdx}}{{template "repo/diff/section_code" dict "diff" $inlineDiff}}{{else}}{{/*
|
2022-08-13 18:32:34 +00:00
|
|
|
*/}}<code class="code-inner"></code>{{/*
|
|
|
|
*/}}{{end}}{{/*
|
2022-02-01 19:08:33 +00:00
|
|
|
*/}}</td>
|
2022-05-08 22:29:50 +00:00
|
|
|
<td class="lines-num lines-num-new" data-line-num="{{if $line.RightIdx}}{{$line.RightIdx}}{{end}}"><span rel="{{if $line.RightIdx}}diff-{{$.FileNameHash}}R{{$line.RightIdx}}{{end}}"></span></td>
|
2023-09-24 20:31:58 +00:00
|
|
|
<td class="blob-excerpt lines-escape lines-escape-new">{{if and $line.RightIdx $inlineDiff.EscapeStatus.Escaped}}<button class="toggle-escape-button btn interact-bg" title="{{template "repo/diff/escape_title" dict "diff" $inlineDiff}}"></button>{{end}}</td>
|
2024-03-28 08:31:07 +00:00
|
|
|
<td class="blob-excerpt lines-type-marker lines-type-marker-new">{{if $line.RightIdx}}<span class="tw-font-mono" data-type-marker=""></span>{{end}}</td>
|
2023-04-04 11:05:07 +00:00
|
|
|
<td class="blob-excerpt lines-code lines-code-new">{{/*
|
2023-09-24 20:31:58 +00:00
|
|
|
*/}}{{if $line.RightIdx}}{{template "repo/diff/section_code" dict "diff" $inlineDiff}}{{else}}{{/*
|
2022-08-13 18:32:34 +00:00
|
|
|
*/}}<code class="code-inner"></code>{{/*
|
|
|
|
*/}}{{end}}{{/*
|
2022-01-07 01:18:52 +00:00
|
|
|
*/}}</td>
|
2020-07-13 13:21:19 +00:00
|
|
|
{{end}}
|
|
|
|
</tr>
|
|
|
|
{{end}}
|
2019-11-15 02:52:59 +00:00
|
|
|
{{else}}
|
2020-07-13 13:21:19 +00:00
|
|
|
{{range $k, $line := $.section.Lines}}
|
2023-05-07 09:49:46 +00:00
|
|
|
<tr class="{{.GetHTMLDiffLineType}}-code nl-{{$k}} ol-{{$k}}">
|
2020-07-13 13:21:19 +00:00
|
|
|
{{if eq .GetType 4}}
|
|
|
|
<td colspan="2" class="lines-num">
|
2024-03-22 13:45:10 +00:00
|
|
|
<div class="tw-flex">
|
2023-05-21 20:47:41 +00:00
|
|
|
{{if or (eq $line.GetExpandDirection 3) (eq $line.GetExpandDirection 5)}}
|
2024-06-20 17:43:42 +00:00
|
|
|
<button class="code-expander-button" hx-target="closest tr" hx-get="{{$.RepoLink}}/blob_excerpt/{{PathEscape $.AfterCommitID}}?{{$line.GetBlobExcerptQuery}}&style=unified&direction=down&wiki={{$.PageIsWiki}}&anchor={{$.Anchor}}">
|
2023-05-21 20:47:41 +00:00
|
|
|
{{svg "octicon-fold-down"}}
|
|
|
|
</button>
|
|
|
|
{{end}}
|
|
|
|
{{if or (eq $line.GetExpandDirection 3) (eq $line.GetExpandDirection 4)}}
|
2024-06-20 17:43:42 +00:00
|
|
|
<button class="code-expander-button" hx-target="closest tr" hx-get="{{$.RepoLink}}/blob_excerpt/{{PathEscape $.AfterCommitID}}?{{$line.GetBlobExcerptQuery}}&style=unified&direction=up&wiki={{$.PageIsWiki}}&anchor={{$.Anchor}}">
|
2023-05-21 20:47:41 +00:00
|
|
|
{{svg "octicon-fold-up"}}
|
|
|
|
</button>
|
|
|
|
{{end}}
|
|
|
|
{{if eq $line.GetExpandDirection 2}}
|
2024-06-20 17:43:42 +00:00
|
|
|
<button class="code-expander-button" hx-target="closest tr" hx-get="{{$.RepoLink}}/blob_excerpt/{{PathEscape $.AfterCommitID}}?{{$line.GetBlobExcerptQuery}}&style=unified&direction=&wiki={{$.PageIsWiki}}&anchor={{$.Anchor}}">
|
2023-05-21 20:47:41 +00:00
|
|
|
{{svg "octicon-fold"}}
|
|
|
|
</button>
|
|
|
|
{{end}}
|
|
|
|
</div>
|
2020-07-13 13:21:19 +00:00
|
|
|
</td>
|
|
|
|
{{else}}
|
2022-05-08 22:29:50 +00:00
|
|
|
<td class="lines-num lines-num-old" data-line-num="{{if $line.LeftIdx}}{{$line.LeftIdx}}{{end}}"><span rel="{{if $line.LeftIdx}}diff-{{$.FileNameHash}}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-{{$.FileNameHash}}R{{$line.RightIdx}}{{end}}"></span></td>
|
2020-07-13 13:21:19 +00:00
|
|
|
{{end}}
|
2023-09-25 12:42:40 +00:00
|
|
|
{{$inlineDiff := $.section.GetComputedInlineDiffFor $line ctx.Locale}}
|
2023-09-24 20:31:58 +00:00
|
|
|
<td class="blob-excerpt lines-escape">{{if $inlineDiff.EscapeStatus.Escaped}}<button class="toggle-escape-button btn interact-bg" title="{{template "repo/diff/escape_title" dict "diff" $inlineDiff}}"></button>{{end}}</td>
|
2024-03-28 08:31:07 +00:00
|
|
|
<td class="blob-excerpt lines-type-marker"><span class="tw-font-mono" data-type-marker="{{$line.GetLineTypeMarker}}"></span></td>
|
2023-09-24 20:31:58 +00:00
|
|
|
<td class="blob-excerpt lines-code{{if (not $line.RightIdx)}} lines-code-old{{end}}"><code {{if $inlineDiff.EscapeStatus.Escaped}}class="code-inner has-escaped" title="{{template "repo/diff/escape_title" dict "diff" $inlineDiff}}"{{else}}class="code-inner"{{end}}>{{$inlineDiff.Content}}</code></td>
|
2020-07-13 13:21:19 +00:00
|
|
|
</tr>
|
|
|
|
{{end}}
|
2020-02-11 17:02:41 +00:00
|
|
|
{{end}}
|