2021-06-05 15:32:19 +03:00
{{ if or .blobBase .blobHead }}
2019-09-16 12:03:22 +03:00
<tr>
2021-02-27 20:25:00 +03:00
<td colspan="2">
2021-11-16 21:18:25 +03:00
<div class="image-diff" data-path-before=" {{ .root .BeforeRawPath }} / {{ PathEscapeSegments .file .OldName }} " data-path-after=" {{ .root .RawPath }} / {{ PathEscapeSegments .file .Name }} ">
2023-05-01 19:08:37 +03:00
<div class="ui secondary pointing tabular top attached borderless menu new-menu">
2021-02-27 20:25:00 +03:00
<div class="new-menu-inner">
2022-08-31 18:58:54 +03:00
<a class="item active" data-tab="diff-side-by-side- {{ .file .Index }} "> {{ .root .locale .Tr "repo.diff.image.side_by_side" }} </a>
2021-06-05 15:32:19 +03:00
{{ if and .blobBase .blobHead }}
2022-08-31 18:58:54 +03:00
<a class="item" data-tab="diff-swipe- {{ .file .Index }} "> {{ .root .locale .Tr "repo.diff.image.swipe" }} </a>
<a class="item" data-tab="diff-overlay- {{ .file .Index }} "> {{ .root .locale .Tr "repo.diff.image.overlay" }} </a>
2021-02-27 20:25:00 +03:00
{{ end }}
</div>
</div>
2023-02-19 07:06:14 +03:00
<div class="gt-hidden">
2022-08-31 18:58:54 +03:00
<div class="ui bottom attached tab image-diff-container active" data-tab="diff-side-by-side- {{ .file .Index }} ">
2021-02-27 20:25:00 +03:00
<div class="diff-side-by-side">
2022-08-31 18:58:54 +03:00
{{ if .blobBase }}
2021-02-27 20:25:00 +03:00
<span class="side">
2022-06-27 23:58:46 +03:00
<p class="side-header"> {{ .root .locale .Tr "repo.diff.file_before" }} </p>
2023-03-27 19:05:51 +03:00
<span class="before-container"><img class="image-before"></span>
2021-02-27 20:25:00 +03:00
<p>
2021-06-05 15:32:19 +03:00
<span class="bounds-info-before">
2022-06-27 23:58:46 +03:00
{{ .root .locale .Tr "repo.diff.file_image_width" }} : <span class="text bounds-info-width"></span>
2021-06-05 15:32:19 +03:00
|
2022-06-27 23:58:46 +03:00
{{ .root .locale .Tr "repo.diff.file_image_height" }} : <span class="text bounds-info-height"></span>
2021-06-05 15:32:19 +03:00
|
</span>
2022-06-27 23:58:46 +03:00
{{ .root .locale .Tr "repo.diff.file_byte_size" }} : <span class="text"> {{ FileSize .blobBase .Size }} </span>
2021-02-27 20:25:00 +03:00
</p>
</span>
{{ end }}
2022-08-31 18:58:54 +03:00
{{ if .blobHead }}
2021-02-27 20:25:00 +03:00
<span class="side">
2022-06-27 23:58:46 +03:00
<p class="side-header"> {{ .root .locale .Tr "repo.diff.file_after" }} </p>
2023-03-27 19:05:51 +03:00
<span class="after-container"><img class="image-after"></span>
2021-02-27 20:25:00 +03:00
<p>
2021-06-05 15:32:19 +03:00
<span class="bounds-info-after">
2022-06-27 23:58:46 +03:00
{{ .root .locale .Tr "repo.diff.file_image_width" }} : <span class="text bounds-info-width"></span>
2021-06-05 15:32:19 +03:00
|
2022-06-27 23:58:46 +03:00
{{ .root .locale .Tr "repo.diff.file_image_height" }} : <span class="text bounds-info-height"></span>
2021-06-05 15:32:19 +03:00
|
</span>
2022-06-27 23:58:46 +03:00
{{ .root .locale .Tr "repo.diff.file_byte_size" }} : <span class="text"> {{ FileSize .blobHead .Size }} </span>
2021-02-27 20:25:00 +03:00
</p>
</span>
{{ end }}
</div>
</div>
2021-06-05 15:32:19 +03:00
{{ if and .blobBase .blobHead }}
2022-08-31 18:58:54 +03:00
<div class="ui bottom attached tab image-diff-container" data-tab="diff-swipe- {{ .file .Index }} ">
2021-02-27 20:25:00 +03:00
<div class="diff-swipe">
<div class="swipe-frame">
2023-03-27 19:05:51 +03:00
<span class="before-container"><img class="image-before"></span>
2021-02-27 20:25:00 +03:00
<span class="swipe-container">
2023-03-27 19:05:51 +03:00
<span class="after-container"><img class="image-after"></span>
2021-02-27 20:25:00 +03:00
</span>
<span class="swipe-bar">
<span class="handle top-handle"></span>
<span class="handle bottom-handle"></span>
</span>
</div>
</div>
</div>
2022-08-31 18:58:54 +03:00
<div class="ui bottom attached tab image-diff-container" data-tab="diff-overlay- {{ .file .Index }} ">
2021-02-27 20:25:00 +03:00
<div class="diff-overlay">
<div class="overlay-frame">
<div class="ui centered">
2023-03-27 19:05:51 +03:00
<input type="range" min="0" max="100" value="50">
2021-02-27 20:25:00 +03:00
</div>
2023-03-27 19:05:51 +03:00
<span class="before-container"><img class="image-before"></span>
<span class="after-container"><img class="image-after"></span>
2021-02-27 20:25:00 +03:00
</div>
</div>
</div>
{{ end }}
</div>
2023-02-13 20:59:59 +03:00
<div class="ui active centered inline loader gt-mb-4"></div>
2021-02-27 20:25:00 +03:00
</div>
</td>
</tr>
2021-04-11 06:46:37 +03:00
{{ end }}