From 562eb2bfd39c954e2b11ca76043f5bedd9113612 Mon Sep 17 00:00:00 2001
From: Angapay Divin <divin.angapay@lam.fr>
Date: Wed, 1 Jun 2022 10:26:27 +0200
Subject: [PATCH] remove summury component from dataset, criteria, output
 components

---
 .../search/containers/criteria.component.html   | 17 +----------------
 .../search/containers/dataset.component.html    | 17 +----------------
 .../search/containers/output.component.html     | 17 +----------------
 3 files changed, 3 insertions(+), 48 deletions(-)

diff --git a/client/src/app/instance/search/containers/criteria.component.html b/client/src/app/instance/search/containers/criteria.component.html
index a9025abf..58ddc168 100644
--- a/client/src/app/instance/search/containers/criteria.component.html
+++ b/client/src/app/instance/search/containers/criteria.component.html
@@ -29,22 +29,7 @@
             (deleteCriterion)="deleteCriterion($event)">
         </app-criteria-tabs>
     </div>
-    <div class="col-12 col-md-4 col-lg-3 pt-2">
-        <app-spinner *ngIf="(outputFamilyListIsLoading | async) || (outputCategoryListIsLoading | async)"></app-spinner>
-        <app-summary *ngIf="(outputFamilyListIsLoaded | async) && (outputCategoryListIsLoaded | async)"
-            [currentStep]="currentStep | async"
-            [datasetSelected]="datasetSelected | async"
-            [datasetList]="datasetList | async"
-            [attributeList]="attributeList | async | sortByCriteriaDisplay"
-            [criteriaFamilyList]="criteriaFamilyList | async"
-            [outputFamilyList]="outputFamilyList | async"
-            [outputCategoryList]="outputCategoryList | async"
-            [criteriaList]="criteriaList | async"
-            [outputList]="outputList | async"
-            [queryParams]="queryParams | async"
-            [coneSearch]="coneSearch | async">
-        </app-summary>
-    </div>
+    
 </div>
 <div class="row mt-5 justify-content-between">
     <div class="col">
diff --git a/client/src/app/instance/search/containers/dataset.component.html b/client/src/app/instance/search/containers/dataset.component.html
index d55db1a5..f7f0ada9 100644
--- a/client/src/app/instance/search/containers/dataset.component.html
+++ b/client/src/app/instance/search/containers/dataset.component.html
@@ -28,22 +28,7 @@
                 [datasetGroupList]="datasetGroupList | async">
             </app-dataset-tabs>
         </div>
-        <div class="col-12 col-md-4 col-lg-3 pt-2">
-            <app-spinner *ngIf="(attributeListIsLoading | async) || (criteriaFamilyListIsLoading | async) || (outputFamilyListIsLoading | async) || (outputCategoryListIsLoading | async)"></app-spinner>
-            <app-summary *ngIf="!(pristine | async) && (attributeListIsLoaded | async) && (criteriaFamilyListIsLoaded | async) && (outputFamilyListIsLoaded | async) && (outputCategoryListIsLoaded | async)"
-                [currentStep]="currentStep | async"
-                [datasetSelected]="datasetSelected | async"
-                [datasetList]="datasetList | async"
-                [attributeList]="attributeList | async | sortByOutputDisplay"
-                [criteriaFamilyList]="criteriaFamilyList | async"
-                [outputFamilyList]="outputFamilyList | async"
-                [outputCategoryList]="outputCategoryList | async"
-                [criteriaList]="criteriaList | async"
-                [outputList]="outputList | async"
-                [queryParams]="queryParams | async"
-                [coneSearch]="coneSearch | async">
-            </app-summary>
-        </div>
+       
     </ng-container>
 </div>
 
diff --git a/client/src/app/instance/search/containers/output.component.html b/client/src/app/instance/search/containers/output.component.html
index a5ecb6da..f42b7b03 100644
--- a/client/src/app/instance/search/containers/output.component.html
+++ b/client/src/app/instance/search/containers/output.component.html
@@ -16,22 +16,7 @@
             (change)="updateOutputList($event)">
         </app-output-tabs>
     </div>
-    <div class="col-12 col-md-4 col-lg-3 pt-2">
-        <app-spinner *ngIf="(datasetListIsLoading | async) || (criteriaFamilyListIsLoading | async)"></app-spinner>
-        <app-summary *ngIf="(datasetListIsLoaded | async) && (criteriaFamilyListIsLoaded | async)"
-            [currentStep]="currentStep | async"
-            [datasetSelected]="datasetSelected | async"
-            [datasetList]="datasetList | async"
-            [attributeList]="attributeList | async | sortByOutputDisplay"
-            [criteriaFamilyList]="criteriaFamilyList | async"
-            [outputFamilyList]="outputFamilyList | async"
-            [outputCategoryList]="outputCategoryList | async"
-            [criteriaList]="criteriaList | async"
-            [outputList]="outputList | async"
-            [queryParams]="queryParams | async"
-            [coneSearch]="coneSearch | async">
-        </app-summary>
-    </div>
+  
 </div>
 <div class="row mt-5 justify-content-between">
     <div class="col">
-- 
GitLab