Compare commits

..

No commits in common. "cd098f717c82177757064041aac443f81d5c235d" and "e8944c46a4e6e34795e7c92e298a0220bbad55b7" have entirely different histories.

4 changed files with 12 additions and 15 deletions

View file

@ -10,9 +10,9 @@ jobs:
image: "cimg/openjdk:23.0-node" image: "cimg/openjdk:23.0-node"
steps: steps:
- name: "Checkout" - name: "Checkout"
uses: actions/checkout@v4 uses: actions/checkout@v3
- name: "Cache Gradle dependencies" - name: "Cache Gradle dependencies"
uses: https://github.com/actions/cache@v4 uses: https://github.com/actions/cache@v3
with: with:
path: | path: |
~/.gradle/caches ~/.gradle/caches
@ -39,7 +39,7 @@ jobs:
uses: actions/checkout@v4 uses: actions/checkout@v4
- name: Install bun - name: Install bun
uses: oven-sh/setup-bun@v2 uses: oven-sh/setup-bun@v2
- uses: actions/cache@v4 - uses: actions/cache@v3
working-directory: ./frontend working-directory: ./frontend
with: with:
path: | path: |
@ -65,7 +65,7 @@ jobs:
uses: actions/checkout@v4 uses: actions/checkout@v4
- name: Install bun - name: Install bun
uses: oven-sh/setup-bun@v2 uses: oven-sh/setup-bun@v2
- uses: actions/cache@v4 - uses: actions/cache@v3
working-directory: ./frontend working-directory: ./frontend
with: with:
path: | path: |
@ -91,7 +91,7 @@ jobs:
uses: actions/checkout@v4 uses: actions/checkout@v4
- name: Install bun - name: Install bun
uses: oven-sh/setup-bun@v2 uses: oven-sh/setup-bun@v2
- uses: actions/cache@v4 - uses: actions/cache@v3
working-directory: ./frontend working-directory: ./frontend
with: with:
path: | path: |
@ -99,7 +99,7 @@ jobs:
key: ${{ runner.os }}-bun- key: ${{ runner.os }}-bun-
restore-keys: | restore-keys: |
${{ runner.os }}-bun- ${{ runner.os }}-bun-
- uses: actions/cache@v4 - uses: actions/cache@v3
working-directory: ./frontend working-directory: ./frontend
with: with:
path: | path: |

View file

@ -32,7 +32,7 @@ import gsap from 'gsap';
}) })
export class DepositComponent implements OnInit, AfterViewInit, OnDestroy, OnChanges { export class DepositComponent implements OnInit, AfterViewInit, OnDestroy, OnChanges {
@Input() isOpen = false; @Input() isOpen = false;
@Output() closeModalEmitter = new EventEmitter<void>(); @Output() close = new EventEmitter<void>();
@ViewChild('modalBg') modalBg!: ElementRef; @ViewChild('modalBg') modalBg!: ElementRef;
@ViewChild('modalCard') modalCard!: ElementRef; @ViewChild('modalCard') modalCard!: ElementRef;
protected form!: FormGroup; protected form!: FormGroup;
@ -110,7 +110,7 @@ export class DepositComponent implements OnInit, AfterViewInit, OnDestroy, OnCha
this.modalAnimationService.closeModal( this.modalAnimationService.closeModal(
this.modalCard.nativeElement, this.modalCard.nativeElement,
this.modalBg.nativeElement, this.modalBg.nativeElement,
() => this.closeModalEmitter.emit() () => this.close.emit()
); );
} }
} }

View file

@ -73,10 +73,7 @@
<h3 class="section-heading text-xl mb-4">Konto</h3> <h3 class="section-heading text-xl mb-4">Konto</h3>
<div class="space-y-4"> <div class="space-y-4">
<button class="button-primary w-full py-2" (click)="openDepositModal()">Einzahlen</button> <button class="button-primary w-full py-2" (click)="openDepositModal()">Einzahlen</button>
<app-deposit <app-deposit [isOpen]="isDepositModalOpen" (close)="closeDepositModal()"></app-deposit>
[isOpen]="isDepositModalOpen"
(closeModalEmitter)="closeDepositModal()"
></app-deposit>
<button class="bg-deep-blue-light hover:bg-deep-blue-contrast w-full py-2 rounded"> <button class="bg-deep-blue-light hover:bg-deep-blue-contrast w-full py-2 rounded">
Transaktionen Transaktionen
</button> </button>
@ -88,7 +85,7 @@
<app-confirmation <app-confirmation
[successful]="isDepositSuccessful" [successful]="isDepositSuccessful"
(closeConfirmation)="closeDepositConfirmationModal()" (close)="closeDepositConfirmationModal()"
></app-confirmation> ></app-confirmation>
<div class="card p-4"> <div class="card p-4">

View file

@ -19,7 +19,7 @@ import gsap from 'gsap';
}) })
export class ConfirmationComponent implements AfterViewInit, OnDestroy { export class ConfirmationComponent implements AfterViewInit, OnDestroy {
@Input() successful = true; @Input() successful = true;
@Output() closeConfirmation = new EventEmitter<void>(); @Output() close = new EventEmitter<void>();
@ViewChild('modalBg') modalBg!: ElementRef; @ViewChild('modalBg') modalBg!: ElementRef;
@ViewChild('modalCard') modalCard!: ElementRef; @ViewChild('modalCard') modalCard!: ElementRef;
@ -43,7 +43,7 @@ export class ConfirmationComponent implements AfterViewInit, OnDestroy {
this.modalAnimationService.closeModal( this.modalAnimationService.closeModal(
this.modalCard.nativeElement, this.modalCard.nativeElement,
this.modalBg.nativeElement, this.modalBg.nativeElement,
() => this.closeConfirmation.emit() () => this.close.emit()
); );
} }
} }