Inside the client/app/view-thread folder, create another folder named upload-video-modal and inside that, create two files named upload-video-modal.html and upload-video-modal.ts. Update client/app/view-thread/upload-video-modal/upload-video-modal.html as shown here:
// SNIPP SNIPP<div class="modal-header"> <h4 class="modal-title">Reply with Video</h4> <button type="button" class="close" aria-label="Close" (click)="activeModal.dismiss('x')"> <span aria-hidden="true">×</span> </button></div><div class="modal-body"> <div class="form-group"> <div class="text-center"> <video #video class="video"></video> </div> <br> <button type="button" class="btn btn-success" [disabled]="isRecording || isProcessing" ...