Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
alecarn committed May 22, 2024
1 parent e3d1d0f commit ccb7f54
Show file tree
Hide file tree
Showing 41 changed files with 109 additions and 999 deletions.
6 changes: 0 additions & 6 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
# See https://help.github.com/ignore-files/ for more about ignoring files.

# bundled locale for the demo
/src/locale/libs_locale

# compiled output
/dist
/tmp
Expand Down Expand Up @@ -39,6 +36,3 @@ testem.log
#System Files
.DS_Store
Thumbs.db

#Compodoc
/documentation
9 changes: 0 additions & 9 deletions src/app/app.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,5 @@
[isHandset]="isHandset()"
[options]="config.navigation?.options"
>
<ng-container navigation-actions>
<button mat-icon-button compact>
<mat-icon>add</mat-icon>
</button>
<button mat-icon-button compact>
<mat-icon>delete</mat-icon>
</button>
<button mat-stroked-button compact>Déconnexion</button>
</ng-container>
<router-outlet></router-outlet>
</sdg-navigation>
2 changes: 1 addition & 1 deletion src/app/app.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import { DomUtils } from '@igo2/utils';
import { delay, first } from 'rxjs';

import { EnvironmentOptions } from '../environments/environnement.interface';
import { routes } from './app.routing';
import { routes } from './app.routes';
import { AppService } from './app.service';

@Component({
Expand Down
15 changes: 12 additions & 3 deletions src/app/app.routing.ts → src/app/app.routes.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Routes } from '@angular/router';
import { INavigationRoutes } from '@igo2/sdg';

export const routes: Routes = [
export const routes: INavigationRoutes = [
{ path: '', redirectTo: '', pathMatch: 'full' },
{
path: '',
Expand All @@ -18,6 +18,15 @@ export const routes: Routes = [
path: 'en-savoir-plus',
title: 'En savoir plus',
loadChildren: () =>
import('./pages/about/about.routing').then((m) => m.routes)
import('./pages/about/about.routes').then((m) => m.routes)
},
{
path: 'contact-us',
title: 'header.contactUs',
hidden: true,
loadComponent: () =>
import('./pages/contact-us/contact-us.component').then(
(m) => m.ContactUsComponent
)
}
];
10 changes: 0 additions & 10 deletions src/app/components/screen/basic-screen/basic-screen.component.html

This file was deleted.

This file was deleted.

28 changes: 0 additions & 28 deletions src/app/components/screen/basic-screen/basic-screen.component.ts

This file was deleted.

This file was deleted.

Empty file.

This file was deleted.

This file was deleted.

106 changes: 0 additions & 106 deletions src/app/components/screen/map-screen/map-screen.component.html

This file was deleted.

Loading

0 comments on commit ccb7f54

Please sign in to comment.