diff --git a/eqlair/src/app/pages/home/home.html b/eqlair/src/app/pages/home/home.html index 30cc22c..b445a00 100644 --- a/eqlair/src/app/pages/home/home.html +++ b/eqlair/src/app/pages/home/home.html @@ -2,4 +2,67 @@ page d'accueil + + stepper + + + formulaire +
+

+ Saisir vos critères +

+ + fiche résumé + + + + + +
+ + filtres +
+ (optionnels) +
+
+
+ + + + + + + + + + + +
+ +
+ + rechercher +
+ + + +
diff --git a/eqlair/src/app/pages/home/home.ts b/eqlair/src/app/pages/home/home.ts index 854dd4d..be5f2c1 100644 --- a/eqlair/src/app/pages/home/home.ts +++ b/eqlair/src/app/pages/home/home.ts @@ -12,5 +12,8 @@ import {FeedbackButton} from 'sae-lib/buttons/feedback-button/feedback-button'; styleUrl: './home.scss' }) export class Home { + fromText: string=''; + disableSearch: boolean = true; + keywords: string=''; } diff --git a/eqlair/src/app/pages/results/results.html b/eqlair/src/app/pages/results/results.html index 511618f..6a3a371 100644 --- a/eqlair/src/app/pages/results/results.html +++ b/eqlair/src/app/pages/results/results.html @@ -1,3 +1,25 @@
résultats +

Sélectionner et explorer

+ + + + description + + + modal: partager les cas sélectionnés + + + modal: feedback form + + + champ de recherche + + + ici une data grid + + + chatbot : + replié, déplié. +
diff --git a/my-workspace/projects/sae-lib/layouts/wip-block/wip-block.css b/my-workspace/projects/sae-lib/layouts/wip-block/wip-block.css new file mode 100644 index 0000000..6bda39f --- /dev/null +++ b/my-workspace/projects/sae-lib/layouts/wip-block/wip-block.css @@ -0,0 +1,8 @@ +:host { + .wip-block { + background: #f3fbff; + padding: 2rem; + border-radius: 0.5rem; + border: 1px solid #ccc; + } +} \ No newline at end of file diff --git a/my-workspace/projects/sae-lib/layouts/wip-block/wip-block.html b/my-workspace/projects/sae-lib/layouts/wip-block/wip-block.html new file mode 100644 index 0000000..d7f6cf6 --- /dev/null +++ b/my-workspace/projects/sae-lib/layouts/wip-block/wip-block.html @@ -0,0 +1,3 @@ +
+ +
\ No newline at end of file diff --git a/my-workspace/projects/sae-lib/layouts/wip-block/wip-block.spec.ts b/my-workspace/projects/sae-lib/layouts/wip-block/wip-block.spec.ts new file mode 100644 index 0000000..38f647a --- /dev/null +++ b/my-workspace/projects/sae-lib/layouts/wip-block/wip-block.spec.ts @@ -0,0 +1,23 @@ +import { ComponentFixture, TestBed } from '@angular/core/testing'; + +import { WipBlock } from './wip-block'; + +describe('WipBlock', () => { + let component: WipBlock; + let fixture: ComponentFixture; + + beforeEach(async () => { + await TestBed.configureTestingModule({ + imports: [WipBlock] + }) + .compileComponents(); + + fixture = TestBed.createComponent(WipBlock); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/my-workspace/projects/sae-lib/layouts/wip-block/wip-block.ts b/my-workspace/projects/sae-lib/layouts/wip-block/wip-block.ts new file mode 100644 index 0000000..7e91a84 --- /dev/null +++ b/my-workspace/projects/sae-lib/layouts/wip-block/wip-block.ts @@ -0,0 +1,11 @@ +import { Component } from '@angular/core'; + +@Component({ + selector: 'sae-wip-block', + imports: [], + templateUrl: './wip-block.html', + styleUrl: './wip-block.scss' +}) +export class WipBlock { + +}