Chocobozzz/PeerTube

View on GitHub
client/src/app/+admin/follows/following-list/follow-modal.component.html

Summary

Maintainability
Test Coverage
<ng-template #modal>
  <div class="modal-header">
    <h4 i18n class="modal-title">Follow</h4>

    <button class="border-0 p-0" title="Close this modal" i18n-title (click)="hide()">
      <my-global-icon iconName="cross"></my-global-icon>
    </button>
  </div>

  <div class="modal-body">
    <form novalidate [formGroup]="form" (ngSubmit)="submit()">
      <div class="form-group">
        <label i18n for="hostsOrHandles">1 host (without "http://"), account handle or channel handle per line</label>

        <textarea
          [placeholder]="placeholder" formControlName="hostsOrHandles" type="text" id="hostsOrHandles" name="hostsOrHandles"
          class="form-control" [ngClass]="{ 'input-error': formErrors['hostsOrHandles'] }" ngbAutofocus
        ></textarea>

        <div *ngIf="formErrors.hostsOrHandles" class="form-error" role="alert">
          {{ formErrors.hostsOrHandles }}

          <div *ngIf="form.controls['hostsOrHandles'].errors.validHostsOrHandles">
            {{ form.controls['hostsOrHandles'].errors.validHostsOrHandles.value }}
          </div>
        </div>
      </div>

      <my-alert i18n *ngIf="httpEnabled() === false"  type="warning">
        It seems that you are not on a HTTPS server. Your webserver needs to have TLS activated in order to follow servers.
      </my-alert>

      <div class="form-group inputs">
        <input
          type="button" role="button" i18n-value value="Cancel" class="peertube-button grey-button"
          (click)="hide()" (key.enter)="hide()"
        >

        <input type="submit" i18n-value value="Follow" class="peertube-button orange-button" [disabled]="!form.valid" />
      </div>
    </form>
  </div>

</ng-template>