aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+videos/+video-watch/comment/video-comment-add.component.html
blob: 3ee818c8b5db5e25cffe7f231180a8401a6a4a75 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<form novalidate [formGroup]="form" (ngSubmit)="formValidated()">
  <div class="avatar-and-textarea">
    <my-actor-avatar [account]="user?.account" size="25"></my-actor-avatar>

    <div class="form-group">
      <textarea i18n-placeholder placeholder="Add comment..." myAutoResize
                [readonly]="(user === null) ? true : false"
                (click)="openVisitorModal($event)"
                formControlName="text" [ngClass]="{ 'input-error': formErrors['text'] }"
                (keyup.control.enter)="onValidKey()" (keyup.meta.enter)="onValidKey()" #textarea>
      </textarea>

      <my-help
        [ngClass]="{ 'is-rtl': isRTL() }" class="markdown-guide" helpType="custom" iconName="markdown"
        tooltipPlacement="left auto" autoClose="true" i18n-title title="Markdown compatible"
      >
        <ng-template ptTemplate="customHtml">
          <span i18n>Markdown compatible that supports:</span>

          <ul>
            <li><span i18n>Auto generated links</span></li>
            <li><span i18n>Break lines</span></li>
            <li><span i18n>Lists</span></li>
            <li>
              <span i18n>Emphasis</span>
              <code>**<strong i18n>bold</strong>** _<i i18n>italic</i>_</code>
            </li>
            <li>
              <span i18n>Emoji shortcuts</span>
              <code>:) &lt;3</code>
            </li>
            <li>
              <span i18n>Emoji markup</span>
              <code>:smile:</code>
              <div><a href="" (click)="openEmojiModal($event)" i18n>See complete list</a></div>
            </li>
          </ul>
        </ng-template>
      </my-help>
      <div *ngIf="formErrors.text" class="form-error">
        {{ formErrors.text }}
      </div>
    </div>
  </div>

  <div class="comment-buttons">
    <button *ngIf="isAddButtonDisplayed()" class="peertube-button tertiary-button cancel-button" (click)="cancelCommentReply()" type="button" i18n>
      Cancel
    </button>

    <button *ngIf="isAddButtonDisplayed()" class="peertube-button orange-button" [ngClass]="{ disabled: !form.valid || addingComment }">
      {{ addingCommentButtonValue }}
    </button>
  </div>
</form>

<ng-template #visitorModal let-modal>
  <div class="modal-header">
    <h4 class="modal-title" id="modal-basic-title" i18n>You are one step away from commenting</h4>
    <my-global-icon iconName="cross" aria-label="Close" role="button" (click)="hideModals()"></my-global-icon>
  </div>

  <div class="modal-body">
    <span i18n>
      You can comment using an account on any ActivityPub-compatible instance (PeerTube/Mastodon/Pleroma account for example).
    </span>

    <my-remote-subscribe [interact]="true" [uri]="getUri()"></my-remote-subscribe>
  </div>

  <div class="modal-footer inputs">
    <input
      type="button" role="button" i18n-value value="Cancel" class="peertube-button grey-button"
      (click)="hideModals()" (key.enter)="hideModals()"
    >

    <input
      type="submit" i18n-value value="Login to comment" class="peertube-button orange-button"
      (click)="gotoLogin()"
    >
  </div>
</ng-template>

<ng-template #emojiModal>
  <div class="modal-header">
    <h4 class="modal-title" id="modal-basic-title" i18n>Markdown Emoji List</h4>
    <my-global-icon iconName="cross" aria-label="Close" role="button" (click)="hideModals()"></my-global-icon>
  </div>
  <div class="modal-body">
    <div class="emoji-flex">
      <div class="emoji-flex-item" *ngFor="let emojiMarkup of emojiMarkupList">
        {{ emojiMarkup[0] }} <code>:{{ emojiMarkup[1] }}:</code>
      </div>
    </div>
  </div>
</ng-template>