Skip to content
Snippets Groups Projects
Commit 604c8491 authored by Daviti Gogshelidze's avatar Daviti Gogshelidze
Browse files

Fix connectivity issues

parent e3f3745c
No related branches found
No related tags found
No related merge requests found
# v2.9.1
## Feature
- On clicking the connectivity diagram, the viewer navigates to the connected region
## Bugfix
- Fix connectivity bug on cohort filter
{ {
"name": "interactive-viewer", "name": "interactive-viewer",
"version": "2.9.0", "version": "2.9.1",
"description": "siibra-explorer - explore brain atlases. Based on humanbrainproject/nehuba & google/neuroglancer. Built with angular", "description": "siibra-explorer - explore brain atlases. Based on humanbrainproject/nehuba & google/neuroglancer. Built with angular",
"scripts": { "scripts": {
"lint": "eslint src --ext .ts", "lint": "eslint src --ext .ts",
......
...@@ -117,6 +117,7 @@ ...@@ -117,6 +117,7 @@
[region]="region" [region]="region"
[sxplr-sapiviews-features-connectivity-browser-atlas]="atlas" [sxplr-sapiviews-features-connectivity-browser-atlas]="atlas"
[sxplr-sapiviews-features-connectivity-browser-parcellation]="parcellation" [sxplr-sapiviews-features-connectivity-browser-parcellation]="parcellation"
[sxplr-sapiviews-features-connectivity-browser-space]="template"
[accordionExpanded]="expandedPanel === CONST.CONNECTIVITY" [accordionExpanded]="expandedPanel === CONST.CONNECTIVITY"
[types]="hasConnectivityDirective.availableModalities" [types]="hasConnectivityDirective.availableModalities"
> >
......
...@@ -10,7 +10,7 @@ import { ...@@ -10,7 +10,7 @@ import {
} from "src/atlasComponents/sapi"; } from "src/atlasComponents/sapi";
import { atlasAppearance, atlasSelection } from "src/state"; import { atlasAppearance, atlasSelection } from "src/state";
import {PARSE_TYPEDARRAY} from "src/atlasComponents/sapi/sapi.service"; import {PARSE_TYPEDARRAY} from "src/atlasComponents/sapi/sapi.service";
import {SapiModalityModel, SapiParcellationFeatureMatrixModel, SapiParcellationFeatureModel} from "src/atlasComponents/sapi/type"; import {SapiModalityModel, SapiParcellationFeatureMatrixModel, SapiParcellationFeatureModel, SapiSpaceModel} from "src/atlasComponents/sapi/type";
import { of } from "rxjs"; import { of } from "rxjs";
import {CustomLayer} from "src/state/atlasAppearance"; import {CustomLayer} from "src/state/atlasAppearance";
import { HttpClient } from "@angular/common/http"; import { HttpClient } from "@angular/common/http";
...@@ -25,6 +25,9 @@ export class ConnectivityBrowserComponent implements AfterViewInit, OnDestroy { ...@@ -25,6 +25,9 @@ export class ConnectivityBrowserComponent implements AfterViewInit, OnDestroy {
@Input('sxplr-sapiviews-features-connectivity-browser-atlas') @Input('sxplr-sapiviews-features-connectivity-browser-atlas')
atlas: SapiAtlasModel atlas: SapiAtlasModel
@Input('sxplr-sapiviews-features-connectivity-browser-space')
space: SapiSpaceModel
@Input('sxplr-sapiviews-features-connectivity-browser-parcellation') @Input('sxplr-sapiviews-features-connectivity-browser-parcellation')
parcellation: SapiParcellationModel parcellation: SapiParcellationModel
...@@ -140,17 +143,9 @@ export class ConnectivityBrowserComponent implements AfterViewInit, OnDestroy { ...@@ -140,17 +143,9 @@ export class ConnectivityBrowserComponent implements AfterViewInit, OnDestroy {
) )
this.subscriptions.push( this.subscriptions.push(
fromEvent(this.connectivityComponentElement?.nativeElement, 'customToolEvent', {capture: true})
.subscribe((e: CustomEvent) => {
if (e.detail.name === 'export csv') {
// ToDo Fix in future to use component
const a = document.querySelector('hbp-connectivity-matrix-row');
(a as any).downloadCSV()
}
}),
fromEvent(this.connectivityComponentElement?.nativeElement, 'connectedRegionClicked', {capture: true}) fromEvent(this.connectivityComponentElement?.nativeElement, 'connectedRegionClicked', {capture: true})
.subscribe((e: CustomEvent) => { .subscribe((e: CustomEvent) => {
this.navigateToRegion(this.getRegionWithName(e.detail.name)) this.navigateToRegion(e.detail.name)
}), }),
) )
} }
...@@ -351,17 +346,21 @@ export class ConnectivityBrowserComponent implements AfterViewInit, OnDestroy { ...@@ -351,17 +346,21 @@ export class ConnectivityBrowserComponent implements AfterViewInit, OnDestroy {
} }
//ToDo bestViewPoint is null for the most cases //ToDo bestViewPoint is null for the most cases
navigateToRegion(region: SapiRegionModel) { navigateToRegion(regionName: string) {
const regionCentroid = this.region.hasAnnotation?.bestViewPoint?.coordinates this.sapi.getRegion(this.atlas["@id"], this.parcellation["@id"], regionName)
if (regionCentroid) .getDetail(this.space["@id"])
this.store$.dispatch( .subscribe(r => {
atlasSelection.actions.navigateTo({ const regionCentroid = r.hasAnnotation?.bestViewPoint?.coordinates
navigation: { if (regionCentroid)
position: regionCentroid.map(v => v.value*1e6), this.store$.dispatch(
}, atlasSelection.actions.navigateTo({
animation: true navigation: {
}) position: regionCentroid.map(v => v.value*1e6),
) },
animation: true
})
)
})
} }
getRegionWithName(region: string) { getRegionWithName(region: string) {
......
...@@ -18,12 +18,13 @@ ...@@ -18,12 +18,13 @@
</mat-select> </mat-select>
</mat-form-field> </mat-form-field>
<mat-form-field *ngIf="!fetching && selectedType" class="flex-grow-1 flex-shrink-1 w-100"> <mat-form-field *ngIf="selectedType" class="flex-grow-1 flex-shrink-1 w-100">
<mat-label> <mat-label>
Cohort Cohort
</mat-label> </mat-label>
<mat-select <mat-select
[disabled]="fetching"
[value]="selectedCohort" [value]="selectedCohort"
(selectionChange)="selectCohort($event.value)"> (selectionChange)="selectCohort($event.value)">
<mat-option <mat-option
...@@ -96,10 +97,10 @@ ...@@ -96,10 +97,10 @@
<i class="fas fa-download mr-2"></i> <i class="fas fa-download mr-2"></i>
<span>Export</span> <span>Export</span>
</button> </button>
<button *ngIf="selectedDataset" iav-stop="mousedown click" class="icons" mat-icon-button sxplr-dialog [sxplr-dialog-size]="null" <button *ngIf="selectedDataset && selectedDataset['@id']" iav-stop="mousedown click" class="icons" mat-icon-button sxplr-dialog [sxplr-dialog-size]="null"
[sxplr-dialog-data]="{ [sxplr-dialog-data]="{
title: selectedDataset?.name, title: selectedDataset?.name,
descMd: selectedDataset?.description + '' + selectedDataset?.authors.join(), descMd: selectedDataset?.description + ' ' + (selectedDataset?.authors? selectedDataset?.authors.join() : ''),
actions: selectedDataset | connectivityDoiPipe actions: selectedDataset | connectivityDoiPipe
}"> }">
<i class="fas fa-info"></i> <i class="fas fa-info"></i>
...@@ -108,8 +109,8 @@ ...@@ -108,8 +109,8 @@
<hbp-connectivity-matrix-row <hbp-connectivity-matrix-row
#connectivityComponent #connectivityComponent
[style.visibility]="selectedCohort && (selectedSubjectDatasetIndex >= 0 || !averageDisabled)? 'visible' : 'hidden'" [style.visibility]="regionName && !fetching && !noConnectivityForRegion && selectedCohort
*ngIf="regionName && !fetching && !noConnectivityForRegion" && (selectedSubjectDatasetIndex >= 0 || !averageDisabled)? 'visible' : 'hidden'"
[region]="regionName + (regionHemisphere? ' - ' + regionHemisphere : '')" [region]="regionName + (regionHemisphere? ' - ' + regionHemisphere : '')"
[connections]="connectionsString" [connections]="connectionsString"
show-export="true" hide-export-view="true" show-export="true" hide-export-view="true"
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment