style: format code for better readability and consistency

This commit is contained in:
Jan-Marlon Leibl 2025-03-06 11:56:00 +01:00
parent 1569922fda
commit 9c12ccd716
Signed by: jleibl
GPG key ID: 300B2F906DC6F1D5
2 changed files with 20 additions and 14 deletions

View file

@ -1,4 +1,13 @@
import { Component, ElementRef, EventEmitter, Input, Output, ViewChild, AfterViewInit, OnDestroy } from '@angular/core';
import {
Component,
ElementRef,
EventEmitter,
Input,
Output,
ViewChild,
AfterViewInit,
OnDestroy,
} from '@angular/core';
import { ModalAnimationService } from '../../services/modal-animation.service';
import gsap from 'gsap';
@ -27,10 +36,7 @@ export class ConfirmationComponent implements AfterViewInit, OnDestroy {
}
private openModal() {
this.modalAnimationService.openModal(
this.modalCard.nativeElement,
this.modalBg.nativeElement
);
this.modalAnimationService.openModal(this.modalCard.nativeElement, this.modalBg.nativeElement);
}
public closeModal() {

View file

@ -2,7 +2,7 @@ import { Injectable } from '@angular/core';
import gsap from 'gsap';
@Injectable({
providedIn: 'root'
providedIn: 'root',
})
export class ModalAnimationService {
private readonly defaultDuration = 0.3;
@ -14,13 +14,13 @@ export class ModalAnimationService {
opacity: 0,
scale: 0.95,
y: 20,
display: 'block'
display: 'block',
});
gsap.to(overlayElement, {
opacity: 1,
duration: this.defaultDuration,
ease: this.defaultEase
ease: this.defaultEase,
});
gsap.to(modalElement, {
@ -28,7 +28,7 @@ export class ModalAnimationService {
scale: 1,
y: 0,
duration: this.defaultDuration,
ease: this.defaultEase
ease: this.defaultEase,
});
}
@ -40,14 +40,14 @@ export class ModalAnimationService {
onComplete: () => {
gsap.set([overlayElement, modalElement], { display: 'none' });
onComplete?.();
}
},
});
gsap.to(modalElement, {
scale: 0.95,
y: 20,
duration: this.defaultDuration,
ease: this.defaultEase
ease: this.defaultEase,
});
}
}