From 5cc4ac77c461acb23cca9a205e7b8b8cd5fe376a Mon Sep 17 00:00:00 2001
From: Xiao Gui <xgui3783@gmail.com>
Date: Wed, 19 Jul 2023 15:35:51 +0200
Subject: [PATCH] maint: show only 6 items at most maint: update text when
 templ/parc not available

---
 .../ATPSelector/wrapper/wrapper.component.ts  |  4 +-
 src/ui/dialogInfo/tmpl/tmpl.style.css         |  6 +++
 src/ui/dialogInfo/tmpl/tmpl.template.html     | 42 +++++++++++--------
 3 files changed, 32 insertions(+), 20 deletions(-)

diff --git a/src/atlasComponents/sapiViews/core/rich/ATPSelector/wrapper/wrapper.component.ts b/src/atlasComponents/sapiViews/core/rich/ATPSelector/wrapper/wrapper.component.ts
index 64aded176..592790906 100644
--- a/src/atlasComponents/sapiViews/core/rich/ATPSelector/wrapper/wrapper.component.ts
+++ b/src/atlasComponents/sapiViews/core/rich/ATPSelector/wrapper/wrapper.component.ts
@@ -90,7 +90,7 @@ export class WrapperATPSelector implements OnDestroy{
                 }
                 return this.#askUser(
                   null,
-                  `Template **${template.name}** does not support the current parcellation **${selectedATP.parcellation.name}**. Please select one of the following parcellations:`,
+                  `Current parcellation **${selectedATP.parcellation.name}** is not mapped in the selected template **${template.name}**. Please select one of the following parcellations:`,
                   parcs.map(p => p.name),
                   {
                     actionsAsList: true
@@ -115,7 +115,7 @@ export class WrapperATPSelector implements OnDestroy{
                 }
                 return this.#askUser(
                   null,
-                  `Parcellation **${parcellation.name}** is not mapped in the current template **${selectedATP.template.name}**. Please select one of the following templates:`,
+                  `Selected parcellation **${parcellation.name}** is not mapped in the current template **${selectedATP.template.name}**. Please select one of the following templates:`,
                   tmpls.map(tmpl => tmpl.name),
                   {
                     actionsAsList: true
diff --git a/src/ui/dialogInfo/tmpl/tmpl.style.css b/src/ui/dialogInfo/tmpl/tmpl.style.css
index 63e67f07f..99437bd95 100644
--- a/src/ui/dialogInfo/tmpl/tmpl.style.css
+++ b/src/ui/dialogInfo/tmpl/tmpl.style.css
@@ -2,3 +2,9 @@ mat-dialog-actions a i
 {
   margin-right: 0.5rem;
 }
+
+mat-dialog-content
+{
+  display: block;
+  max-height: 30dvh;
+}
diff --git a/src/ui/dialogInfo/tmpl/tmpl.template.html b/src/ui/dialogInfo/tmpl/tmpl.template.html
index a15d70274..fc99a7dd3 100644
--- a/src/ui/dialogInfo/tmpl/tmpl.template.html
+++ b/src/ui/dialogInfo/tmpl/tmpl.template.html
@@ -2,27 +2,33 @@
   {{ data.title }}
 </h1>
 
-<div *ngIf="data.descMd || data.desc" mat-dialog-content class="mat-body">
-  <ng-template [ngIf]="data.desc">
-    {{ data.desc }}
-  </ng-template>
-  
-  <markdown-dom *ngIf="data.descMd" [markdown]="data.descMd">
-  </markdown-dom>
-</div>
+<mat-dialog-content>
 
-<ng-template sxplrExperimentalFlag [experimental]="true" #actionExpmt="sxplrExperimentalFlag" [ngIf]="actionExpmt.show$ | async">
-<ng-template [ngIf]="data.actionsAsList">
-  <mat-action-list>
-    <ng-template ngFor [ngForOf]="data.actions" let-action>
-      <button mat-list-item [mat-dialog-close]="action">
-        {{ action }}
-      </button>
+  <div *ngIf="data.descMd || data.desc" mat-dialog-content class="mat-body">
+    <ng-template [ngIf]="data.desc">
+      {{ data.desc }}
     </ng-template>
-  </mat-action-list>
-</ng-template>
-</ng-template>
+    
+    <markdown-dom *ngIf="data.descMd" [markdown]="data.descMd">
+    </markdown-dom>
+  </div>
+  
+  <ng-template sxplrExperimentalFlag [experimental]="true" #actionExpmt="sxplrExperimentalFlag" [ngIf]="actionExpmt.show$ | async">
+  <ng-template [ngIf]="data.actionsAsList">
+    <mat-action-list>
+      <ng-template ngFor [ngForOf]="data.actions" let-action let-first="first">
+        <ng-template [ngIf]="!first">
+          <mat-divider></mat-divider>
+        </ng-template>
+        <button mat-list-item [mat-dialog-close]="action">
+          {{ action }}
+        </button>
+      </ng-template>
+    </mat-action-list>
+  </ng-template>
+  </ng-template>
 
+</mat-dialog-content>
 
 <mat-dialog-actions align="start">
 
-- 
GitLab