PeerTube/client/src/app/+admin/follows/shared/redundancy-checkbox.compone...

34 lines
1.0 KiB
TypeScript
Raw Normal View History

2018-09-11 16:27:07 +02:00
import { Component, Input } from '@angular/core'
import { Notifier } from '@app/core'
2020-06-23 14:10:17 +02:00
import { RedundancyService } from '@app/shared/shared-main'
2018-09-11 16:27:07 +02:00
import { I18n } from '@ngx-translate/i18n-polyfill'
@Component({
selector: 'my-redundancy-checkbox',
templateUrl: './redundancy-checkbox.component.html',
styleUrls: [ './redundancy-checkbox.component.scss' ]
})
export class RedundancyCheckboxComponent {
@Input() redundancyAllowed: boolean
@Input() host: string
constructor (
private notifier: Notifier,
2018-09-11 16:27:07 +02:00
private redundancyService: RedundancyService,
private i18n: I18n
) { }
updateRedundancyState () {
this.redundancyService.updateRedundancy(this.host, this.redundancyAllowed)
.subscribe(
() => {
const stateLabel = this.redundancyAllowed ? this.i18n('enabled') : this.i18n('disabled')
2018-09-11 16:27:07 +02:00
this.notifier.success(this.i18n('Redundancy for {{host}} is {{stateLabel}}', { host: this.host, stateLabel }))
},
2018-09-11 16:27:07 +02:00
err => this.notifier.error(err.message)
)
2018-09-11 16:27:07 +02:00
}
}