From 25492f3e68dd5a5928a72d699cd546cb1dba35f2 Mon Sep 17 00:00:00 2001 From: Lea Date: Wed, 26 Feb 2025 12:52:34 +0100 Subject: [PATCH] style: fixed prettier and hopefully eslint --- frontend/src/app/app.config.ts | 2 +- .../app/feature/deposit/deposit.component.html | 11 +++++------ .../src/app/feature/deposit/deposit.component.ts | 15 ++++++++++----- frontend/src/app/feature/home/home.component.html | 11 ++++------- frontend/src/app/feature/home/home.component.ts | 8 ++++---- frontend/src/index.html | 9 ++++++--- frontend/src/styles.css | 10 ++++++++-- 7 files changed, 38 insertions(+), 28 deletions(-) diff --git a/frontend/src/app/app.config.ts b/frontend/src/app/app.config.ts index d7b84bd..217efd4 100644 --- a/frontend/src/app/app.config.ts +++ b/frontend/src/app/app.config.ts @@ -54,6 +54,6 @@ export const appConfig: ApplicationConfig = { useClass: KeycloakBearerInterceptor, multi: true, }, - provideAnimationsAsync(), provideAnimationsAsync(), + provideAnimationsAsync(), ], }; diff --git a/frontend/src/app/feature/deposit/deposit.component.html b/frontend/src/app/feature/deposit/deposit.component.html index 06e1b72..5375ff2 100644 --- a/frontend/src/app/feature/deposit/deposit.component.html +++ b/frontend/src/app/feature/deposit/deposit.component.html @@ -1,9 +1,6 @@ - +

Guthaben aufladen

@@ -22,7 +19,10 @@
- @@ -30,4 +30,3 @@
- diff --git a/frontend/src/app/feature/deposit/deposit.component.ts b/frontend/src/app/feature/deposit/deposit.component.ts index e6545e5..a4c29b9 100644 --- a/frontend/src/app/feature/deposit/deposit.component.ts +++ b/frontend/src/app/feature/deposit/deposit.component.ts @@ -1,4 +1,12 @@ -import {ChangeDetectionStrategy, Component, EventEmitter, inject, Input, OnInit, Output} from '@angular/core'; +import { + ChangeDetectionStrategy, + Component, + EventEmitter, + inject, + Input, + OnInit, + Output, +} from '@angular/core'; import { FormControl, FormGroup, ReactiveFormsModule, Validators } from '@angular/forms'; import { loadStripe, Stripe } from '@stripe/stripe-js'; import { DepositService } from '../../service/deposit.service'; @@ -9,10 +17,7 @@ import { NgIf } from '@angular/common'; @Component({ selector: 'app-deposit', standalone: true, - imports: [ - ReactiveFormsModule, - NgIf, - ], + imports: [ReactiveFormsModule, NgIf], templateUrl: './deposit.component.html', changeDetection: ChangeDetectionStrategy.OnPush, }) diff --git a/frontend/src/app/feature/home/home.component.html b/frontend/src/app/feature/home/home.component.html index 011f236..bbe04ae 100644 --- a/frontend/src/app/feature/home/home.component.html +++ b/frontend/src/app/feature/home/home.component.html @@ -22,7 +22,7 @@
- +
@@ -41,7 +41,7 @@
- +
@@ -56,14 +56,11 @@
-

Konto

- + @@ -73,7 +70,7 @@
- +

Letzte Transaktionen

diff --git a/frontend/src/app/feature/home/home.component.ts b/frontend/src/app/feature/home/home.component.ts index a77109b..1d16b90 100644 --- a/frontend/src/app/feature/home/home.component.ts +++ b/frontend/src/app/feature/home/home.component.ts @@ -1,9 +1,9 @@ -import {ChangeDetectionStrategy, Component, inject} from '@angular/core'; +import { ChangeDetectionStrategy, Component, inject } from '@angular/core'; import { NavbarComponent } from '../../shared/components/navbar/navbar.component'; import { CurrencyPipe, NgFor } from '@angular/common'; import { Game } from '../../model/Game'; import { Transaction } from '../../model/Transaction'; -import {DepositComponent} from "../deposit/deposit.component"; +import { DepositComponent } from '../deposit/deposit.component'; @Component({ selector: 'app-homepage', @@ -71,10 +71,10 @@ export default class HomeComponent { }, ]; - openDepositModal(){ + openDepositModal() { this.isDepositModalOpen = true; } - closeDepositModal(){ + closeDepositModal() { this.isDepositModalOpen = false; } } diff --git a/frontend/src/index.html b/frontend/src/index.html index bd4ced1..41fedf4 100644 --- a/frontend/src/index.html +++ b/frontend/src/index.html @@ -6,9 +6,12 @@ - - - + + + diff --git a/frontend/src/styles.css b/frontend/src/styles.css index 020d133..e2198bc 100644 --- a/frontend/src/styles.css +++ b/frontend/src/styles.css @@ -146,5 +146,11 @@ a { --mdc-dialog-container-shape: 6px important; } -html, body { height: 100%; } -body { margin: 0; font-family: Roboto, "Helvetica Neue", sans-serif; } +html, +body { + height: 100%; +} +body { + margin: 0; + font-family: Roboto, 'Helvetica Neue', sans-serif; +}