PeerTube/client/src/app/+admin/users/user-edit/user-edit.ts

39 lines
1.5 KiB
TypeScript
Raw Normal View History

import { ServerService } from '../../../core'
2017-09-05 21:29:39 +02:00
import { FormReactive } from '../../../shared'
import { USER_ROLE_LABELS, VideoResolution } from '../../../../../../shared'
import { EditCustomConfigComponent } from '../../../+admin/config/edit-custom-config/'
2017-09-05 21:29:39 +02:00
export abstract class UserEdit extends FormReactive {
// These are used by a HTML select, so convert key into strings
videoQuotaOptions = EditCustomConfigComponent.videoQuotaOptions
.map(q => ({ value: q.value.toString(), label: q.label }))
videoQuotaDailyOptions = EditCustomConfigComponent.videoQuotaDailyOptions
.map(q => ({ value: q.value.toString(), label: q.label }))
2017-09-05 21:29:39 +02:00
2018-06-05 10:58:45 +02:00
roles = Object.keys(USER_ROLE_LABELS).map(key => ({ value: key.toString(), label: USER_ROLE_LABELS[key] }))
protected abstract serverService: ServerService
2017-09-05 21:29:39 +02:00
abstract isCreation (): boolean
abstract getFormButtonTitle (): string
isTranscodingInformationDisplayed () {
const formVideoQuota = parseInt(this.form.value['videoQuota'], 10)
return this.serverService.getConfig().transcoding.enabledResolutions.length !== 0 &&
formVideoQuota > 0
}
computeQuotaWithTranscoding () {
const resolutions = this.serverService.getConfig().transcoding.enabledResolutions
const higherResolution = VideoResolution.H_1080P
let multiplier = 0
for (const resolution of resolutions) {
multiplier += resolution / higherResolution
}
return multiplier * parseInt(this.form.value['videoQuota'], 10)
}
2017-09-05 21:29:39 +02:00
}