/*! * @license * Copyright 2016 Alfresco Software, Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import { Directive, ElementRef, EventEmitter, Input, OnInit, Output } from '@angular/core'; import { Point } from './../models/point'; import { RaphaelBase } from './../raphael-base'; import { RaphaelService } from './../raphael.service'; @Directive({selector: 'raphael-icon-user'}) export class RaphaelIconUserDirective extends RaphaelBase implements OnInit { @Input() paper: any; @Input() position: Point; @Input() text: string; @Output() error = new EventEmitter(); @Input() strokeWidth: number; @Input() fillColors: any; @Input() stroke: any; @Input() fillOpacity: any; constructor(public elementRef: ElementRef, raphaelService: RaphaelService) { super(elementRef, raphaelService); } ngOnInit() { this.draw(this.position); } public draw(position: Point) { let path1 = this.paper.path(`m 1,17 16,0 0,-1.7778 -5.333332,-3.5555 0,-1.7778 c 1.244444,0 1.244444,-2.3111 1.244444,-2.3111 l 0,-3.0222 C 12.555557,0.8221 9.0000001,1.0001 9.0000001,1.0001 c 0,0 -3.5555556,-0.178 -3.9111111,3.5555 l 0,3.0222 c 0,0 0,2.3111 1.2444443,2.3111 l 0,1.7778 L 1,15.2222 1,17 17,17`).attr({ 'opacity': 1, 'stroke': this.stroke, 'fill': this.fillColors }); return path1.transform('T' + position.x + ',' + position.y); } }