aboutsummaryrefslogblamecommitdiffhomepage
path: root/client/src/app/+videos/+video-edit/video-update.component.html
blob: 41501714f68a04c10ee085de4641de3c0c38adb9 (plain) (tree)
1
2
3
4
5
6
7
8
9
                            


                                                                           
        
 
                                      
 
                  
                                                                                                         
                                                                                       
                                                                                           
                                                                        
                             
                     
 
                                  
                                                                                       
                                                              

                                                                     

          
      
<div class="margin-content">
  <div class="title-page title-page-single">
    <span class="mr-1" i18n>Update</span>
    <a [routerLink]="[ '/videos/watch', video.uuid ]">{{ video?.name }}</a>
  </div>

  <form novalidate [formGroup]="form">

    <my-video-edit
      [form]="form" [formErrors]="formErrors" [schedulePublicationPossible]="schedulePublicationPossible"
      [validationMessages]="validationMessages" [userVideoChannels]="userVideoChannels"
      [videoCaptions]="videoCaptions" [waitTranscodingEnabled]="isWaitTranscodingEnabled()"
      type="update" (pluginFieldsAdded)="hydratePluginFieldsFromVideo()"
      [liveVideo]="liveVideo"
    ></my-video-edit>

    <div class="submit-container">
      <my-button className="orange-button" i18n-label label="Update" icon="circle-tick"
                 (click)="update()" (keydown.enter)="update()"
                 [disabled]="!form.valid || isUpdatingVideo === true"
      ></my-button>
    </div>
  </form>
</div>