2019-01-23 12:58:38 -06:00
{{if and $.root.SignedUserID (not $.Repository.IsArchived)}}
2023-02-06 12:09:18 -06:00
<form class="ui form {{if $.hidden}}hide comment-form comment-form-reply{{end}}" action="{{$.root.Issue.Link}}/files/reviews/comments" method="post">
2018-08-05 23:43:22 -05:00
{{$.root.CsrfTokenHtml}}
2021-01-08 15:49:55 -06:00
<input type="hidden" name="origin" value="{{if $.root.PageIsPullFiles}}diff{{else}}timeline{{end}}">
2020-01-08 19:47:45 -06:00
<input type="hidden" name="latest_commit_id" value="{{$.root.AfterCommitID}}"/>
2018-08-05 23:43:22 -05:00
<input type="hidden" name="side" value="{{if $.Side}}{{$.Side}}{{end}}">
<input type="hidden" name="line" value="{{if $.Line}}{{$.Line}}{{end}}">
<input type="hidden" name="path" value="{{if $.File}}{{$.File}}{{end}}">
<input type="hidden" name="diff_start_cid">
<input type="hidden" name="diff_end_cid">
<input type="hidden" name="diff_base_cid">
2021-11-18 10:45:00 -06:00
<div class="ui top tabular menu" data-write="write" data-preview="preview">
2022-06-27 15:58:46 -05:00
<a class="active item" data-tab="write">{{$.root.locale.Tr "write"}}</a>
2023-02-06 12:09:18 -06:00
<a class="item" data-tab="preview" data-url="{{$.root.Repository.Link}}/markdown" data-context="{{$.root.RepoLink}}">{{$.root.locale.Tr "preview"}}</a>
2018-08-05 23:43:22 -05:00
</div>
2020-05-14 14:15:21 -05:00
<div class="field">
<div class="ui active tab" data-tab="write">
2022-06-27 15:58:46 -05:00
<textarea name="content" placeholder="{{$.root.locale.Tr "repo.diff.comment.placeholder"}}"></textarea>
2018-08-05 23:43:22 -05:00
</div>
2021-05-07 03:43:41 -05:00
<div class="ui tab markup" data-tab="preview">
2022-06-27 15:58:46 -05:00
{{.locale.Tr "loading"}}
2020-05-14 14:15:21 -05:00
</div>
2018-08-05 23:43:22 -05:00
</div>
2021-05-08 10:28:25 -05:00
<div class="field footer mx-3">
2022-06-27 15:58:46 -05:00
<span class="markup-info">{{svg "octicon-markup"}} {{$.root.locale.Tr "repo.diff.comment.markdown_info"}}</span>
2020-05-14 14:15:21 -05:00
<div class="ui right">
2018-10-22 15:13:35 -05:00
{{if $.reply}}
2022-06-27 15:58:46 -05:00
<button class="ui submit green tiny button btn-reply" type="submit">{{$.root.locale.Tr "repo.diff.comment.reply"}}</button>
2020-05-14 14:15:21 -05:00
<input type="hidden" name="reply" value="{{$.reply}}">
2018-10-22 15:13:35 -05:00
{{else}}
2018-08-05 23:43:22 -05:00
{{if $.root.CurrentReview}}
2022-09-02 16:59:10 -05:00
{{/* if there is only one "Add comment" button, the quick-submit should submit the form with is_review=true even if the "Add comment" button is not really clicked */}}
<input type="hidden" name="is_review" value="true">
2018-08-05 23:43:22 -05:00
<button name="is_review" value="true" type="submit"
2022-06-27 15:58:46 -05:00
class="ui submit green tiny button btn-add-comment">{{$.root.locale.Tr "repo.diff.comment.add_review_comment"}}</button>
2018-08-05 23:43:22 -05:00
{{else}}
2020-05-14 14:15:21 -05:00
<button name="is_review" value="true" type="submit"
2022-06-27 15:58:46 -05:00
class="ui submit green tiny button btn-start-review">{{$.root.locale.Tr "repo.diff.comment.start_review"}}</button>
2018-10-22 15:13:35 -05:00
<button type="submit"
2022-06-27 15:58:46 -05:00
class="ui submit tiny basic button btn-add-single">{{$.root.locale.Tr "repo.diff.comment.add_single_comment"}}</button>
2018-08-05 23:43:22 -05:00
{{end}}
{{end}}
{{if or (not $.HasComments) $.hidden}}
2022-06-27 15:58:46 -05:00
<button type="button" class="ui submit tiny basic button btn-cancel cancel-code-comment">{{$.root.locale.Tr "cancel"}}</button>
2018-08-05 23:43:22 -05:00
{{end}}
</div>
</div>
</form>
{{end}}