]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/shared/forms/peertube-checkbox.component.ts
Use grid to organise settings in admin, my-account
[github/Chocobozzz/PeerTube.git] / client / src / app / 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'
421d935d 3import { PeerTubeTemplateDirective } from '@app/shared/angular/peertube-template.directive'
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
0f7fedc3 24
421d935d
C
25 @ContentChildren(PeerTubeTemplateDirective) templates: QueryList<PeerTubeTemplateDirective<'label' | 'help'>>
26
8dfceec4
C
27 // FIXME: https://github.com/angular/angular/issues/10816#issuecomment-307567836
28 @Input() onPushWorkaround = false
29
421d935d
C
30 labelTemplate: TemplateRef<any>
31 helpTemplate: TemplateRef<any>
32
8dfceec4
C
33 constructor (private cdr: ChangeDetectorRef) { }
34
421d935d
C
35 ngAfterContentInit () {
36 {
37 const t = this.templates.find(t => t.name === 'label')
38 if (t) this.labelTemplate = t.template
39 }
40
41 {
42 const t = this.templates.find(t => t.name === 'help')
43 if (t) this.helpTemplate = t.template
44 }
45 }
46
0f7fedc3
C
47 propagateChange = (_: any) => { /* empty */ }
48
49 writeValue (checked: boolean) {
50 this.checked = checked
8dfceec4
C
51
52 if (this.onPushWorkaround) {
53 this.cdr.markForCheck()
54 }
0f7fedc3
C
55 }
56
57 registerOnChange (fn: (_: any) => void) {
58 this.propagateChange = fn
59 }
60
61 registerOnTouched () {
62 // Unused
63 }
64
65 onModelChange () {
66 this.propagateChange(this.checked)
67 }
68
69 setDisabledState (isDisabled: boolean) {
14e2014a 70 this.disabled = isDisabled
0f7fedc3
C
71 }
72}