blob: 61fa028324cb3e2a377570e624ae27c6de71aa98 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
import {Component, HostBinding, Input, OnInit} from "@angular/core";
import {IButtonComponent} from "../customModal/models/modal-button.model";
import {ButtonType} from "../customModal/models/button.type";
import {Mode} from "./models/mode.model";
import {Placement} from "../customModal/models/modal.placement";
@Component({
selector: "sdc-button",
templateUrl: './custom-button.component.html',
styleUrls: ['./custom-button.component.scss']
})
export class CustomButtonComponent implements OnInit, IButtonComponent {
@Input() public text: string;
@Input() public disabled: boolean;
@Input() public type: ButtonType;
@Input() public icon_mode: Mode;
@Input() public size: string;
@Input() public preventDoubleClick: boolean;
@Input() public icon_name: string;
@Input() public icon_position: string;
@Input() public show_spinner: boolean;
@Input() public spinner_position: Placement;
@Input() public testId: string;
public placement = Placement;
private lastClick: Date;
public iconPositionClass: string;
@HostBinding('class.sdc-button__wrapper') true;
constructor() {
this.type = ButtonType.primary;
this.size = "default";
this.disabled = false;
}
public ngOnInit(): void {
this.iconPositionClass = this.icon_position ? 'sdc-icon-' + this.icon_position : '';
}
public onClick = (e): void => {
const now: Date = new Date();
if (this.preventDoubleClick && this.lastClick && (now.getTime() - this.lastClick.getTime()) <= 500) {
e.preventDefault();
e.stopPropagation();
}
this.lastClick = now;
}
public disableButton = () => {
if (!this.disabled) {
this.disabled = true;
}
}
public enableButton = () => {
if (this.disabled) {
this.disabled = false;
}
}
}
|