From 7377293ebcabfb86b6d44c0327e30a996ffb8a73 Mon Sep 17 00:00:00 2001
From: Alex Orluc <alex.orluc@maarch.org>
Date: Thu, 7 Nov 2019 20:01:44 +0100
Subject: [PATCH] add expanded input

---
 src/frontend/app/diffusions/diffusions-list.component.html | 2 +-
 src/frontend/app/diffusions/diffusions-list.component.ts   | 5 +++++
 src/frontend/app/process/process.component.html            | 2 +-
 3 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/src/frontend/app/diffusions/diffusions-list.component.html b/src/frontend/app/diffusions/diffusions-list.component.html
index cc1bdcdc50e..aa5a7ad3afc 100644
--- a/src/frontend/app/diffusions/diffusions-list.component.html
+++ b/src/frontend/app/diffusions/diffusions-list.component.html
@@ -7,7 +7,7 @@
     </div>
     <ng-container *ngFor="let role of availableRoles">
         <mat-expansion-panel *ngIf="diffList[role.id].items.length > 0" class="diffusionList"
-            [expanded]="role.id === 'dest' || this.adminMode">
+            [expanded]="role.id === 'dest' || this.adminMode || expanded">
             <mat-expansion-panel-header>
                 <mat-panel-title>
                     {{role.label}} <ng-container *ngIf="role.id !== 'dest'">({{diffList[role.id].items.length}})
diff --git a/src/frontend/app/diffusions/diffusions-list.component.ts b/src/frontend/app/diffusions/diffusions-list.component.ts
index 24df3fa4f89..354b44be8e4 100644
--- a/src/frontend/app/diffusions/diffusions-list.component.ts
+++ b/src/frontend/app/diffusions/diffusions-list.component.ts
@@ -56,6 +56,11 @@ export class DiffusionsListComponent implements OnInit {
      */
     @Input('allowedEntities') allowedEntities: number[];
 
+    /**
+     * Expand all roles
+     */
+    @Input('expanded') expanded: boolean = false;
+
     /**
      * To load privilege of current list management
      * @param indexation
diff --git a/src/frontend/app/process/process.component.html b/src/frontend/app/process/process.component.html
index b4ee6441c2d..073893e782c 100644
--- a/src/frontend/app/process/process.component.html
+++ b/src/frontend/app/process/process.component.html
@@ -80,7 +80,7 @@
                     [resId]="currentResourceInformations.resId">
                 </app-notes-list>
                 <app-diffusions-list *ngIf="currentTool === 'diffusionList'" #appDiffusionsList [adminMode]="false"
-                    [resId]="currentResourceInformations.resId">
+                    [resId]="currentResourceInformations.resId" [expanded]="true">
                 </app-diffusions-list>
                 <app-visa-workflow *ngIf="currentTool === 'visa'" #appVisaWorkflow
                     [resId]="currentResourceInformations.resId"></app-visa-workflow>
-- 
GitLab