You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
RTL/src/app/lnd/loop/loop-in-info-graphics/info-graphics.component.ts

35 lines
1.1 KiB
TypeScript

import { Component, OnInit, Input, Output, EventEmitter } from '@angular/core';
import { ScreenSizeEnum } from '../../../shared/services/consts-enums-functions';
import { sliderAnimation } from '../../../shared/animation/slider-animation';
@Component({
selector: 'rtl-loop-in-info-graphics',
templateUrl: './info-graphics.component.html',
styleUrls: ['./info-graphics.component.scss'],
animations: [sliderAnimation]
})
export class LoopInInfoGraphicsComponent implements OnInit {
@Input() animationDirection = 'forward';
@Input() stepNumber = 1;
@Output() stepNumberChange = new EventEmitter();
public screenSize = '';
public screenSizeEnum = ScreenSizeEnum;
constructor() {}
ngOnInit() {}
onSwipe(event: any) {
if(event.direction === 2 && this.stepNumber < 5) {
this.stepNumber++;
this.animationDirection = 'forward';
this.stepNumberChange.emit(this.stepNumber);
} else if(event.direction === 4 && this.stepNumber > 1) {
this.stepNumber--;
this.animationDirection = 'backward';
this.stepNumberChange.emit(this.stepNumber);
}
}
}