blob: 2e464243247c7a8ccf7f623769a9e3a9af90cb88 [file] [log] [blame]
import {
AfterViewChecked,
Component,
ElementRef,
EventEmitter,
Input,
Output
} from "@angular/core";
import * as _ from 'lodash';
@Component({
selector : 'vid-svg-icon',
template: `
<svg-icon
[mode]="mode"
[size]="size"
[name]="name"
[testId]="testId"
[clickable]="clickable">
</svg-icon>
`,
})
export class SvgComponent implements AfterViewChecked{
@Input() mode : string = 'primary';
@Input() size : string = 'large';
@Input() testId : string = null;
@Input() name : string = null;
@Input() clickable : boolean = false;
@Input() fill : string ;
@Input() widthViewBox: string = null;
@Input() heightViewBox: string = null;
constructor(private elRef: ElementRef) {}
ngAfterViewChecked(): void {
if(!_.isNil(this.fill)){
this.elRef.nativeElement.children[0].children[0].children[0].style.fill = this.fill;
}
if(this.widthViewBox && this.heightViewBox){
this.elRef.nativeElement.children[0].children[0].children[0].setAttribute('viewBox', "1 1 " + this.widthViewBox + " " + this.heightViewBox)
}
}
}