]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.ts
Fix admin edition disabling feature
[github/Chocobozzz/PeerTube.git] / client / src / app / +admin / config / edit-custom-config / edit-vod-transcoding.component.ts
CommitLineData
5f46d28c
C
1
2import { SelectOptionsItem } from 'src/types/select-options-item.model'
b06f1ead 3import { Component, Input, OnChanges, OnInit, SimpleChanges } from '@angular/core'
5f46d28c 4import { FormGroup } from '@angular/forms'
2989628b 5import { HTMLServerConfig } from '@shared/models'
5f46d28c
C
6import { ConfigService } from '../shared/config.service'
7import { EditConfigurationService, ResolutionOption } from './edit-configuration.service'
8
9@Component({
10 selector: 'my-edit-vod-transcoding',
11 templateUrl: './edit-vod-transcoding.component.html',
12 styleUrls: [ './edit-custom-config.component.scss' ]
13})
b06f1ead 14export class EditVODTranscodingComponent implements OnInit, OnChanges {
5f46d28c
C
15 @Input() form: FormGroup
16 @Input() formErrors: any
2989628b 17 @Input() serverConfig: HTMLServerConfig
5f46d28c
C
18
19 transcodingThreadOptions: SelectOptionsItem[] = []
b06f1ead 20 transcodingProfiles: SelectOptionsItem[] = []
5f46d28c
C
21 resolutions: ResolutionOption[] = []
22
0c12054a
C
23 additionalVideoExtensions = ''
24
5f46d28c
C
25 constructor (
26 private configService: ConfigService,
27 private editConfigurationService: EditConfigurationService
28 ) { }
29
30 ngOnInit () {
31 this.transcodingThreadOptions = this.configService.transcodingThreadOptions
32 this.resolutions = this.editConfigurationService.getVODResolutions()
33
34 this.checkTranscodingFields()
35 }
36
b06f1ead
C
37 ngOnChanges (changes: SimpleChanges) {
38 if (changes['serverConfig']) {
39 this.transcodingProfiles = this.buildAvailableTranscodingProfile()
0c12054a
C
40
41 this.additionalVideoExtensions = this.serverConfig.video.file.extensions.join(' ')
b06f1ead
C
42 }
43 }
44
45 buildAvailableTranscodingProfile () {
5f46d28c
C
46 const profiles = this.serverConfig.transcoding.availableProfiles
47
70e33515
C
48 return profiles.map(p => {
49 const description = p === 'default'
50 ? $localize`x264, targeting maximum device compatibility`
51 : ''
52
53 return { id: p, label: p, description }
54 })
5f46d28c
C
55 }
56
57 getResolutionKey (resolution: string) {
58 return 'transcoding.resolutions.' + resolution
59 }
60
61 isTranscodingEnabled () {
62 return this.editConfigurationService.isTranscodingEnabled(this.form)
63 }
64
70e33515
C
65 getTranscodingDisabledClass () {
66 return { 'disabled-checkbox-extra': !this.isTranscodingEnabled() }
67 }
68
5f46d28c
C
69 getTotalTranscodingThreads () {
70 return this.editConfigurationService.getTotalTranscodingThreads(this.form)
71 }
72
73 private checkTranscodingFields () {
74 const hlsControl = this.form.get('transcoding.hls.enabled')
75 const webtorrentControl = this.form.get('transcoding.webtorrent.enabled')
76
77 webtorrentControl.valueChanges
78 .subscribe(newValue => {
79 if (newValue === false && !hlsControl.disabled) {
80 hlsControl.disable()
81 }
82
83 if (newValue === true && !hlsControl.enabled) {
84 hlsControl.enable()
85 }
86 })
87
88 hlsControl.valueChanges
89 .subscribe(newValue => {
90 if (newValue === false && !webtorrentControl.disabled) {
91 webtorrentControl.disable()
92 }
93
94 if (newValue === true && !webtorrentControl.enabled) {
95 webtorrentControl.enable()
96 }
97 })
98 }
99}