From cb0d1e4d77e1bfdcf278f1b9efaf7ced7443b093 Mon Sep 17 00:00:00 2001 From: ncoronel Date: Tue, 7 Jul 2026 10:58:51 -0300 Subject: [PATCH] feat(layout): replace AuthLayout with SimpleLayout for login and registration routes --- .../auth-layout/auth-layout.component.html | 13 ------------- .../simple-layout/simple-layout.component.html | 13 +++++++++++++ .../simple-layout.component.scss} | 18 +++++++++--------- .../simple-layout.component.ts} | 8 ++++---- src/app/features/store/store.routes.ts | 6 +++--- 5 files changed, 29 insertions(+), 29 deletions(-) delete mode 100644 src/app/core/layout/auth-layout/auth-layout.component.html create mode 100644 src/app/core/layout/simple-layout/simple-layout.component.html rename src/app/core/layout/{auth-layout/auth-layout.component.scss => simple-layout/simple-layout.component.scss} (68%) rename src/app/core/layout/{auth-layout/auth-layout.component.ts => simple-layout/simple-layout.component.ts} (55%) diff --git a/src/app/core/layout/auth-layout/auth-layout.component.html b/src/app/core/layout/auth-layout/auth-layout.component.html deleted file mode 100644 index f6d82f7..0000000 --- a/src/app/core/layout/auth-layout/auth-layout.component.html +++ /dev/null @@ -1,13 +0,0 @@ -
-
-
-
-
-
- -
-
-
-
-
-
diff --git a/src/app/core/layout/simple-layout/simple-layout.component.html b/src/app/core/layout/simple-layout/simple-layout.component.html new file mode 100644 index 0000000..53dc705 --- /dev/null +++ b/src/app/core/layout/simple-layout/simple-layout.component.html @@ -0,0 +1,13 @@ +
+
+
+
+
+
+ +
+
+
+
+
+
diff --git a/src/app/core/layout/auth-layout/auth-layout.component.scss b/src/app/core/layout/simple-layout/simple-layout.component.scss similarity index 68% rename from src/app/core/layout/auth-layout/auth-layout.component.scss rename to src/app/core/layout/simple-layout/simple-layout.component.scss index 2dc8524..834ee92 100644 --- a/src/app/core/layout/auth-layout/auth-layout.component.scss +++ b/src/app/core/layout/simple-layout/simple-layout.component.scss @@ -2,24 +2,24 @@ display: block; } -.auth-layout { +.simple-layout { padding: 1.5rem 0 2rem; } -.auth-layout__container { +.simple-layout__container { padding-inline: 1rem; } -.auth-layout__row { +.simple-layout__row { padding-block: 1rem; } -.auth-layout__card { +.simple-layout__card { border-radius: 1.5rem; overflow: hidden; } -.auth-layout__body { +.simple-layout__body { padding: 2rem 1.5rem; } @@ -32,19 +32,19 @@ } @media (min-width: 768px) { - .auth-layout { + .simple-layout { padding: 3rem 0; } - .auth-layout__container { + .simple-layout__container { padding-inline: 1.5rem; } - .auth-layout__row { + .simple-layout__row { padding-block: 1.5rem; } - .auth-layout__body { + .simple-layout__body { padding: 3rem; } } diff --git a/src/app/core/layout/auth-layout/auth-layout.component.ts b/src/app/core/layout/simple-layout/simple-layout.component.ts similarity index 55% rename from src/app/core/layout/auth-layout/auth-layout.component.ts rename to src/app/core/layout/simple-layout/simple-layout.component.ts index b78a6fa..4b8a620 100644 --- a/src/app/core/layout/auth-layout/auth-layout.component.ts +++ b/src/app/core/layout/simple-layout/simple-layout.component.ts @@ -2,10 +2,10 @@ import { ChangeDetectionStrategy, Component } from '@angular/core'; import { RouterOutlet } from '@angular/router'; @Component({ - selector: 'app-auth-layout', + selector: 'app-simple-layout', imports: [RouterOutlet], - templateUrl: './auth-layout.component.html', - styleUrl: './auth-layout.component.scss', + templateUrl: './simple-layout.component.html', + styleUrl: './simple-layout.component.scss', changeDetection: ChangeDetectionStrategy.OnPush }) -export class AuthLayoutComponent {} +export class SimpleLayoutComponent {} diff --git a/src/app/features/store/store.routes.ts b/src/app/features/store/store.routes.ts index a62f11a..073ed14 100644 --- a/src/app/features/store/store.routes.ts +++ b/src/app/features/store/store.routes.ts @@ -1,6 +1,6 @@ import { Routes } from '@angular/router'; -import { AuthLayoutComponent } from '../../core/layout/auth-layout/auth-layout.component'; +import { SimpleLayoutComponent } from '../../core/layout/simple-layout/simple-layout.component'; import { StoreLayoutComponent } from '../../core/layout/store-layout/store-layout.component'; import { authGuard, guestOnlyGuard } from '../../core/services/auth/auth.guards'; import { LoginPageComponent } from './pages/login-page/login-page.component'; @@ -19,7 +19,7 @@ export const routes: Routes = [ { path: 'login', canActivate: [guestOnlyGuard], - component: AuthLayoutComponent, + component: SimpleLayoutComponent, children: [ { path: '', @@ -30,7 +30,7 @@ export const routes: Routes = [ { path: 'register', canActivate: [guestOnlyGuard], - component: AuthLayoutComponent, + component: SimpleLayoutComponent, children: [ { path: '',