diff --git a/src/ui/viewerStateController/regionSearch/regionSearch.component.ts b/src/ui/viewerStateController/regionSearch/regionSearch.component.ts index c0e1783234cccfc6c9101b1f0fdc3290d8dea209..3799233316b7e90a159c09cd082bb1a3676ddb9f 100644 --- a/src/ui/viewerStateController/regionSearch/regionSearch.component.ts +++ b/src/ui/viewerStateController/regionSearch/regionSearch.component.ts @@ -1,10 +1,10 @@ -import { Component, EventEmitter, Output, ViewChild, ElementRef, TemplateRef } from "@angular/core"; +import { Component, EventEmitter, Output, ViewChild, ElementRef, TemplateRef, Input } from "@angular/core"; import { Store, select } from "@ngrx/store"; import { Observable } from "rxjs"; -import { map, distinctUntilChanged, startWith, withLatestFrom, filter, debounceTime, tap, share, shareReplay, take } from "rxjs/operators"; +import { map, distinctUntilChanged, startWith, withLatestFrom, debounceTime, shareReplay, take } from "rxjs/operators"; import { getMultiNgIdsRegionsLabelIndexMap, generateLabelIndexId } from "src/services/stateStore.service"; import { FormControl } from "@angular/forms"; -import { MatAutocompleteSelectedEvent, MatAutocompleteTrigger, MatDialog } from "@angular/material"; +import { MatAutocompleteSelectedEvent, MatDialog } from "@angular/material"; import { ADD_TO_REGIONS_SELECTION_WITH_IDS, SELECT_REGIONS } from "src/services/state/viewerState.store"; import { VIEWERSTATE_ACTION_TYPES } from "../viewerState.component"; @@ -20,6 +20,9 @@ const filterRegionBasedOnText = searchTerm => region => region.name.toLowerCase( export class RegionTextSearchAutocomplete{ + @Input() + public showAutoComplete: boolean = true + @ViewChild('autoTrigger', {read: ElementRef}) autoTrigger: ElementRef @ViewChild('regionHierarchy', {read:TemplateRef}) regionHierarchyTemplate: TemplateRef<any> constructor( diff --git a/src/ui/viewerStateController/regionSearch/regionSearch.template.html b/src/ui/viewerStateController/regionSearch/regionSearch.template.html index ef828ac2e265761736d416066215e137c39b3053..8da2718d790889a1d19db87f92168b3a6ac9f5dc 100644 --- a/src/ui/viewerStateController/regionSearch/regionSearch.template.html +++ b/src/ui/viewerStateController/regionSearch/regionSearch.template.html @@ -1,6 +1,6 @@ -<div class="d-flex flex-row align-items-center"> +<div class="d-inline-flex flex-row align-items-center"> - <form class="flex-grow-1 flex-shrink-1"> + <form *ngIf="showAutoComplete" class="flex-grow-1 flex-shrink-1"> <mat-form-field class="w-100"> <input placeholder="Regions" diff --git a/src/ui/viewerStateController/viewerState.template.html b/src/ui/viewerStateController/viewerState.template.html index 9e5ea72d5a5d488b2f3350a77ee2800f75a30a96..4c35cdc15f0d549ea885f38f447946a5f379c443 100644 --- a/src/ui/viewerStateController/viewerState.template.html +++ b/src/ui/viewerStateController/viewerState.template.html @@ -17,6 +17,9 @@ </mat-select> </mat-form-field> + <!-- padding so that info icon lines up --> + <button mat-icon-button class="pe-none invisible"></button> + <ng-container *ngIf="templateSelected$ | async as templateSelected"> <!-- show on hover component --> <sleight-of-hand @@ -75,6 +78,12 @@ </mat-select> </mat-form-field> + <!-- selected regions --> + <region-text-search-autocomplete + [showAutoComplete]="false" + (focusedStateChanged)="focused = $event"> + </region-text-search-autocomplete> + <ng-container *ngIf="parcellationSelected$ | async as parcellationSelected"> <!-- show on hover component --> <sleight-of-hand @@ -119,14 +128,6 @@ <!-- divider --> <mat-divider></mat-divider> - <!-- selected regions --> - - <div class="d-flex"> - <region-text-search-autocomplete - (focusedStateChanged)="focused = $event"> - </region-text-search-autocomplete> - </div> - <!-- chips --> <mat-card class="w-20em mh-10em overflow-auto overflow-x-hidden"> <mat-chip-list class="mat-chip-list-stacked" #selectedRegionsChipList>