]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/shared/shared-forms/peertube-checkbox.component.ts
Migrate to $localize
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / shared-forms / peertube-checkbox.component.ts
CommitLineData
421d935d 1import { AfterContentInit, ChangeDetectorRef, Component, ContentChildren, forwardRef, Input, QueryList, TemplateRef } from '@angular/core'
0f7fedc3 2import { ControlValueAccessor, NG_VALUE_ACCESSOR } from '@angular/forms'
67ed6552 3import { PeerTubeTemplateDirective } from '@app/shared/shared-main'
0f7fedc3
C
4
5@Component({
6 selector: 'my-peertube-checkbox',
7 styleUrls: [ './peertube-checkbox.component.scss' ],
8 templateUrl: './peertube-checkbox.component.html',
9 providers: [
10 {
11 provide: NG_VALUE_ACCESSOR,
12 useExisting: forwardRef(() => PeertubeCheckboxComponent),
13 multi: true
14 }
15 ]
16})
421d935d 17export class PeertubeCheckboxComponent implements ControlValueAccessor, AfterContentInit {
0f7fedc3
C
18 @Input() checked = false
19 @Input() inputName: string
20 @Input() labelText: string
2dbbf860 21 @Input() labelInnerHTML: string
fc2df421 22 @Input() helpPlacement = 'top auto'
14e2014a 23 @Input() disabled = false
5411da31 24 @Input() recommended = false
0f7fedc3 25
421d935d
C
26 @ContentChildren(PeerTubeTemplateDirective) templates: QueryList<PeerTubeTemplateDirective<'label' | 'help'>>
27
8dfceec4
C
28 // FIXME: https://github.com/angular/angular/issues/10816#issuecomment-307567836
29 @Input() onPushWorkaround = false
30
421d935d
C
31 labelTemplate: TemplateRef<any>
32 helpTemplate: TemplateRef<any>
33
8dfceec4
C
34 constructor (private cdr: ChangeDetectorRef) { }
35
421d935d
C
36 ngAfterContentInit () {
37 {
38 const t = this.templates.find(t => t.name === 'label')
39 if (t) this.labelTemplate = t.template
40 }
41
42 {
43 const t = this.templates.find(t => t.name === 'help')
44 if (t) this.helpTemplate = t.template
45 }
46 }
47
0f7fedc3
C
48 propagateChange = (_: any) => { /* empty */ }
49
50 writeValue (checked: boolean) {
51 this.checked = checked
8dfceec4
C
52
53 if (this.onPushWorkaround) {
54 this.cdr.markForCheck()
55 }
0f7fedc3
C
56 }
57
58 registerOnChange (fn: (_: any) => void) {
59 this.propagateChange = fn
60 }
61
62 registerOnTouched () {
63 // Unused
64 }
65
66 onModelChange () {
67 this.propagateChange(this.checked)
68 }
69
70 setDisabledState (isDisabled: boolean) {
14e2014a 71 this.disabled = isDisabled
0f7fedc3
C
72 }
73}