]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - client/src/app/+my-account/my-account-video-channels/my-account-video-channel-create.component.ts
Use height instead of width to represent the video resolution
[github/Chocobozzz/PeerTube.git] / client / src / app / +my-account / my-account-video-channels / my-account-video-channel-create.component.ts
... / ...
CommitLineData
1import { Component, OnInit } from '@angular/core'
2import { Router } from '@angular/router'
3import { NotificationsService } from 'angular2-notifications'
4import { MyAccountVideoChannelEdit } from './my-account-video-channel-edit'
5import { VideoChannelCreate } from '../../../../../shared/models/videos'
6import { VideoChannelService } from '@app/shared/video-channel/video-channel.service'
7import { AuthService } from '@app/core'
8import { I18n } from '@ngx-translate/i18n-polyfill'
9import { FormValidatorService } from '@app/shared/forms/form-validators/form-validator.service'
10import { VideoChannelValidatorsService } from '@app/shared/forms/form-validators/video-channel-validators.service'
11
12@Component({
13 selector: 'my-account-video-channel-create',
14 templateUrl: './my-account-video-channel-edit.component.html',
15 styleUrls: [ './my-account-video-channel-edit.component.scss' ]
16})
17export class MyAccountVideoChannelCreateComponent extends MyAccountVideoChannelEdit implements OnInit {
18 error: string
19
20 constructor (
21 protected formValidatorService: FormValidatorService,
22 private authService: AuthService,
23 private videoChannelValidatorsService: VideoChannelValidatorsService,
24 private notificationsService: NotificationsService,
25 private router: Router,
26 private videoChannelService: VideoChannelService,
27 private i18n: I18n
28 ) {
29 super()
30 }
31
32 ngOnInit () {
33 this.buildForm({
34 'display-name': this.videoChannelValidatorsService.VIDEO_CHANNEL_DISPLAY_NAME,
35 description: this.videoChannelValidatorsService.VIDEO_CHANNEL_DESCRIPTION,
36 support: this.videoChannelValidatorsService.VIDEO_CHANNEL_SUPPORT
37 })
38 }
39
40 formValidated () {
41 this.error = undefined
42
43 const body = this.form.value
44 const videoChannelCreate: VideoChannelCreate = {
45 displayName: body['display-name'],
46 description: body.description || null,
47 support: body.support || null
48 }
49
50 this.videoChannelService.createVideoChannel(videoChannelCreate).subscribe(
51 () => {
52 this.authService.refreshUserInformation()
53 this.notificationsService.success(
54 this.i18n('Success'),
55 this.i18n('Video channel {{videoChannelName}} created.', { videoChannelName: videoChannelCreate.displayName })
56 )
57 this.router.navigate([ '/my-account', 'video-channels' ])
58 },
59
60 err => this.error = err.message
61 )
62 }
63
64 isCreation () {
65 return true
66 }
67
68 getFormButtonTitle () {
69 return this.i18n('Create')
70 }
71}