2020-12-03 20:35:27 +05:30
|
|
|
{{$resolved := (index .comments 0).IsResolved}}
|
|
|
|
{{$resolveDoer := (index .comments 0).ResolveDoer}}
|
|
|
|
{{$isNotPending := (not (eq (index .comments 0).Review.Type 0))}}
|
2021-01-09 03:19:55 +05:30
|
|
|
<div class="conversation-holder" data-path="{{(index .comments 0).TreePath}}" data-side="{{if lt (index .comments 0).Line 0}}left{{else}}right{{end}}" data-idx="{{(index .comments 0).UnsignedLine}}">
|
2020-12-03 20:35:27 +05:30
|
|
|
{{if $resolved}}
|
2023-02-13 23:29:59 +05:30
|
|
|
<div class="ui attached header resolved-placeholder gt-df gt-ac gt-sb">
|
2021-04-01 03:49:53 +05:30
|
|
|
<div class="ui grey text">
|
2023-02-13 23:29:59 +05:30
|
|
|
{{svg "octicon-check" 16 "icon gt-mr-2"}}
|
2022-06-28 02:28:46 +05:30
|
|
|
<b>{{$resolveDoer.Name}}</b> {{$.locale.Tr "repo.issues.review.resolved_by"}}
|
2021-04-01 03:49:53 +05:30
|
|
|
</div>
|
|
|
|
<div>
|
2023-04-29 17:05:59 +05:30
|
|
|
<button id="show-outdated-{{(index .comments 0).ID}}" data-comment="{{(index .comments 0).ID}}" class="ui tiny labeled button show-outdated gt-df gt-ac">
|
2023-02-13 23:29:59 +05:30
|
|
|
{{svg "octicon-unfold" 16 "gt-mr-3"}}
|
2022-06-28 02:28:46 +05:30
|
|
|
{{$.locale.Tr "repo.issues.review.show_resolved"}}
|
2021-04-01 03:49:53 +05:30
|
|
|
</button>
|
2023-04-29 17:05:59 +05:30
|
|
|
<button id="hide-outdated-{{(index .comments 0).ID}}" data-comment="{{(index .comments 0).ID}}" class="ui tiny labeled button hide-outdated gt-df gt-ac gt-hidden">
|
2023-02-13 23:29:59 +05:30
|
|
|
{{svg "octicon-fold" 16 "gt-mr-3"}}
|
2022-06-28 02:28:46 +05:30
|
|
|
{{$.locale.Tr "repo.issues.review.hide_resolved"}}
|
2021-04-01 03:49:53 +05:30
|
|
|
</button>
|
|
|
|
</div>
|
2020-12-03 20:35:27 +05:30
|
|
|
</div>
|
|
|
|
{{end}}
|
2023-02-19 09:36:14 +05:30
|
|
|
<div id="code-comments-{{(index .comments 0).ID}}" class="field comment-code-cloud {{if $resolved}}gt-hidden{{end}}">
|
2020-12-03 20:35:27 +05:30
|
|
|
<div class="comment-list">
|
|
|
|
<ui class="ui comments">
|
|
|
|
{{template "repo/diff/comments" dict "root" $ "comments" .comments}}
|
|
|
|
</ui>
|
|
|
|
</div>
|
2023-02-13 23:29:59 +05:30
|
|
|
<div class="gt-df gt-je gt-js-small gt-ac gt-fw gt-mt-3">
|
|
|
|
<div class="ui buttons gt-mr-2">
|
2021-06-28 01:27:01 +05:30
|
|
|
<button class="ui icon tiny basic button previous-conversation">
|
2022-06-28 02:28:46 +05:30
|
|
|
{{svg "octicon-arrow-up" 12 "icon"}} {{$.locale.Tr "repo.issues.previous"}}
|
2021-06-28 01:27:01 +05:30
|
|
|
</button>
|
|
|
|
<button class="ui icon tiny basic button next-conversation">
|
2022-06-28 02:28:46 +05:30
|
|
|
{{svg "octicon-arrow-down" 12 "icon"}} {{$.locale.Tr "repo.issues.next"}}
|
2021-06-28 01:27:01 +05:30
|
|
|
</button>
|
|
|
|
</div>
|
2021-05-08 20:58:25 +05:30
|
|
|
{{if and $.CanMarkConversation $isNotPending}}
|
|
|
|
<button class="ui icon tiny basic button resolve-conversation" data-origin="diff" data-action="{{if not $resolved}}Resolve{{else}}UnResolve{{end}}" data-comment-id="{{(index .comments 0).ID}}" data-update-url="{{$.RepoLink}}/issues/resolve_conversation">
|
|
|
|
{{if $resolved}}
|
2022-06-28 02:28:46 +05:30
|
|
|
{{$.locale.Tr "repo.issues.review.un_resolve_conversation"}}
|
2021-05-08 20:58:25 +05:30
|
|
|
{{else}}
|
2022-06-28 02:28:46 +05:30
|
|
|
{{$.locale.Tr "repo.issues.review.resolve_conversation"}}
|
2021-05-08 20:58:25 +05:30
|
|
|
{{end}}
|
|
|
|
</button>
|
|
|
|
{{end}}
|
|
|
|
{{if and $.SignedUserID (not $.Repository.IsArchived)}}
|
2023-02-13 23:29:59 +05:30
|
|
|
<button class="comment-form-reply ui green tiny labeled icon button gt-ml-2 gt-mr-0">
|
|
|
|
{{svg "octicon-reply" 16 "reply icon gt-mr-2"}}{{$.locale.Tr "repo.diff.comment.reply"}}
|
2021-05-08 20:58:25 +05:30
|
|
|
</button>
|
|
|
|
{{end}}
|
|
|
|
</div>
|
2020-12-03 20:35:27 +05:30
|
|
|
{{template "repo/diff/comment_form_datahandler" dict "hidden" true "reply" (index .comments 0).ReviewID "root" $ "comment" (index .comments 0)}}
|
|
|
|
</div>
|
2021-04-01 03:49:53 +05:30
|
|
|
</div>
|