style: format component metadata in app components
Some checks failed
Some checks failed
This commit is contained in:
parent
d285297ede
commit
1469918b4b
8 changed files with 34 additions and 34 deletions
|
@ -10,6 +10,6 @@ import { FooterComponent } from './shared/components/footer/footer.component';
|
|||
providers: [],
|
||||
templateUrl: './app.component.html',
|
||||
styleUrl: './app.component.css',
|
||||
changeDetection: ChangeDetectionStrategy.OnPush
|
||||
changeDetection: ChangeDetectionStrategy.OnPush,
|
||||
})
|
||||
export class AppComponent {}
|
||||
|
|
|
@ -27,7 +27,7 @@ import gsap from 'gsap';
|
|||
selector: 'app-deposit',
|
||||
imports: [ReactiveFormsModule, NgIf],
|
||||
templateUrl: './deposit.component.html',
|
||||
changeDetection: ChangeDetectionStrategy.OnPush
|
||||
changeDetection: ChangeDetectionStrategy.OnPush,
|
||||
})
|
||||
export class DepositComponent implements OnInit, AfterViewInit, OnDestroy, OnChanges {
|
||||
@Input() isOpen = false;
|
||||
|
|
|
@ -11,7 +11,7 @@ import { ActivatedRoute } from '@angular/router';
|
|||
selector: 'app-homepage',
|
||||
imports: [NavbarComponent, CurrencyPipe, NgFor, DepositComponent, ConfirmationComponent],
|
||||
templateUrl: './home.component.html',
|
||||
changeDetection: ChangeDetectionStrategy.OnPush
|
||||
changeDetection: ChangeDetectionStrategy.OnPush,
|
||||
})
|
||||
export default class HomeComponent implements OnInit {
|
||||
isDepositModalOpen = false;
|
||||
|
|
|
@ -6,7 +6,7 @@ import { NgFor } from '@angular/common';
|
|||
selector: 'app-landing-page',
|
||||
imports: [NavbarComponent, NgFor],
|
||||
templateUrl: './landing.component.html',
|
||||
changeDetection: ChangeDetectionStrategy.OnPush
|
||||
changeDetection: ChangeDetectionStrategy.OnPush,
|
||||
})
|
||||
export class LandingComponent implements OnInit, OnDestroy {
|
||||
currentSlide = 0;
|
||||
|
|
|
@ -8,7 +8,7 @@ import { Router } from '@angular/router';
|
|||
imports: [],
|
||||
templateUrl: './login-success.component.html',
|
||||
styleUrl: './login-success.component.css',
|
||||
changeDetection: ChangeDetectionStrategy.OnPush
|
||||
changeDetection: ChangeDetectionStrategy.OnPush,
|
||||
})
|
||||
export default class LoginSuccessComponent implements OnInit {
|
||||
private userService: UserService = inject(UserService);
|
||||
|
|
|
@ -14,7 +14,7 @@ import gsap from 'gsap';
|
|||
@Component({
|
||||
selector: 'app-confirmation',
|
||||
imports: [],
|
||||
templateUrl: './confirmation.component.html'
|
||||
templateUrl: './confirmation.component.html',
|
||||
})
|
||||
export class ConfirmationComponent implements AfterViewInit, OnDestroy {
|
||||
@Input() successful = true;
|
||||
|
|
|
@ -7,7 +7,7 @@ import { faPaypal, faGooglePay, faApplePay } from '@fortawesome/free-brands-svg-
|
|||
selector: 'app-footer',
|
||||
templateUrl: './footer.component.html',
|
||||
imports: [FontAwesomeModule],
|
||||
changeDetection: ChangeDetectionStrategy.OnPush
|
||||
changeDetection: ChangeDetectionStrategy.OnPush,
|
||||
})
|
||||
export class FooterComponent {
|
||||
currentYear: number = new Date().getFullYear();
|
||||
|
|
|
@ -8,7 +8,7 @@ import { CurrencyPipe } from '@angular/common';
|
|||
selector: 'app-navbar',
|
||||
templateUrl: './navbar.component.html',
|
||||
imports: [RouterModule, CurrencyPipe],
|
||||
changeDetection: ChangeDetectionStrategy.OnPush
|
||||
changeDetection: ChangeDetectionStrategy.OnPush,
|
||||
})
|
||||
export class NavbarComponent implements OnInit {
|
||||
isMenuOpen = false;
|
||||
|
|
Loading…
Add table
Reference in a new issue