2021-06-05 14:32:19 +02:00
{{ if or .blobBase .blobHead }}
2019-09-16 11:03:22 +02:00
<tr>
2021-02-27 18:25:00 +01:00
<td colspan="2">
2023-10-11 14:34:21 +02:00
<div class="image-diff"
data-path-before=" {{ .root .BeforeRawPath }} / {{ PathEscapeSegments .file .OldName }} "
data-path-after=" {{ .root .RawPath }} / {{ PathEscapeSegments .file .Name }} "
data-mime-before=" {{ .sniffedTypeBase .GetMimeType }} "
data-mime-after=" {{ .sniffedTypeHead .GetMimeType }} "
>
2024-03-15 03:05:31 +01:00
<overflow-menu class="ui secondary pointing tabular top attached borderless menu">
<div class="overflow-menu-items tw-justify-center">
2023-09-25 10:56:50 +02:00
<a class="item active" data-tab="diff-side-by-side- {{ .file .Index }} "> {{ ctx .Locale .Tr "repo.diff.image.side_by_side" }} </a>
2021-06-05 14:32:19 +02:00
{{ if and .blobBase .blobHead }}
2023-09-25 10:56:50 +02:00
<a class="item" data-tab="diff-swipe- {{ .file .Index }} "> {{ ctx .Locale .Tr "repo.diff.image.swipe" }} </a>
<a class="item" data-tab="diff-overlay- {{ .file .Index }} "> {{ ctx .Locale .Tr "repo.diff.image.overlay" }} </a>
2021-02-27 18:25:00 +01:00
{{ end }}
</div>
2024-03-15 03:05:31 +01:00
</overflow-menu>
2023-08-24 20:13:23 +08:00
<div class="image-diff-tabs is-loading">
2022-08-31 17:58:54 +02:00
<div class="ui bottom attached tab image-diff-container active" data-tab="diff-side-by-side- {{ .file .Index }} ">
2021-02-27 18:25:00 +01:00
<div class="diff-side-by-side">
2022-08-31 17:58:54 +02:00
{{ if .blobBase }}
2021-02-27 18:25:00 +01:00
<span class="side">
2023-09-25 10:56:50 +02:00
<p class="side-header"> {{ ctx .Locale .Tr "repo.diff.file_before" }} </p>
2023-03-28 00:05:51 +08:00
<span class="before-container"><img class="image-before"></span>
2021-02-27 18:25:00 +01:00
<p>
2021-06-05 14:32:19 +02:00
<span class="bounds-info-before">
2023-09-25 10:56:50 +02:00
{{ ctx .Locale .Tr "repo.diff.file_image_width" }} : <span class="text bounds-info-width"></span>
2021-06-05 14:32:19 +02:00
|
2023-09-25 10:56:50 +02:00
{{ ctx .Locale .Tr "repo.diff.file_image_height" }} : <span class="text bounds-info-height"></span>
2021-06-05 14:32:19 +02:00
|
</span>
2023-09-25 10:56:50 +02:00
{{ ctx .Locale .Tr "repo.diff.file_byte_size" }} : <span class="text"> {{ FileSize .blobBase .Size }} </span>
2021-02-27 18:25:00 +01:00
</p>
</span>
{{ end }}
2022-08-31 17:58:54 +02:00
{{ if .blobHead }}
2021-02-27 18:25:00 +01:00
<span class="side">
2023-09-25 10:56:50 +02:00
<p class="side-header"> {{ ctx .Locale .Tr "repo.diff.file_after" }} </p>
2023-03-28 00:05:51 +08:00
<span class="after-container"><img class="image-after"></span>
2021-02-27 18:25:00 +01:00
<p>
2021-06-05 14:32:19 +02:00
<span class="bounds-info-after">
2023-09-25 10:56:50 +02:00
{{ ctx .Locale .Tr "repo.diff.file_image_width" }} : <span class="text bounds-info-width"></span>
2021-06-05 14:32:19 +02:00
|
2023-09-25 10:56:50 +02:00
{{ ctx .Locale .Tr "repo.diff.file_image_height" }} : <span class="text bounds-info-height"></span>
2021-06-05 14:32:19 +02:00
|
</span>
2023-09-25 10:56:50 +02:00
{{ ctx .Locale .Tr "repo.diff.file_byte_size" }} : <span class="text"> {{ FileSize .blobHead .Size }} </span>
2021-02-27 18:25:00 +01:00
</p>
</span>
{{ end }}
</div>
</div>
2021-06-05 14:32:19 +02:00
{{ if and .blobBase .blobHead }}
2022-08-31 17:58:54 +02:00
<div class="ui bottom attached tab image-diff-container" data-tab="diff-swipe- {{ .file .Index }} ">
2021-02-27 18:25:00 +01:00
<div class="diff-swipe">
<div class="swipe-frame">
2023-03-28 00:05:51 +08:00
<span class="before-container"><img class="image-before"></span>
2021-02-27 18:25:00 +01:00
<span class="swipe-container">
2023-03-28 00:05:51 +08:00
<span class="after-container"><img class="image-after"></span>
2021-02-27 18:25:00 +01: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 17:58:54 +02:00
<div class="ui bottom attached tab image-diff-container" data-tab="diff-overlay- {{ .file .Index }} ">
2021-02-27 18:25:00 +01:00
<div class="diff-overlay">
2023-08-24 20:13:23 +08:00
<input type="range" min="0" max="100" value="50">
2021-02-27 18:25:00 +01:00
<div class="overlay-frame">
2023-03-28 00:05:51 +08:00
<span class="before-container"><img class="image-before"></span>
<span class="after-container"><img class="image-after"></span>
2021-02-27 18:25:00 +01:00
</div>
</div>
</div>
{{ end }}
</div>
</div>
</td>
</tr>
2021-04-11 05:46:37 +02:00
{{ end }}