Skip to content
Snippets Groups Projects
Commit 3e78e5f4 authored by Xiao Gui's avatar Xiao Gui
Browse files

chore: pipefy get background color

chore: remove uncessary imports
parent aa5950e7
No related branches found
No related tags found
No related merge requests found
import { Component, Input, ViewChild, ElementRef, AfterContentChecked, ChangeDetectionStrategy, ChangeDetectorRef, OnChanges, SimpleChanges, HostBinding, ApplicationRef } from "@angular/core";
import { panelAnimations } from "./panel.animation";
import { Component, Input, ViewChild, ElementRef, ChangeDetectionStrategy } from "@angular/core";
import { ParseAttributeDirective } from "../parseAttribute.directive";
@Component({
......
......@@ -25,6 +25,7 @@ import { KgSingleDatasetService } from "./kgSingleDatasetService.service"
import { SingleDatasetView } from './singleDataset/singleDataset.component'
import { AngularMaterialModule } from 'src/ui/sharedModules/angularMaterial.module'
import { DoiParserPipe } from "src/util/pipes/doiPipe.pipe";
import { RegionBackgroundToRgbPipe } from "./util/regionBackgroundToRgb.pipe";
@NgModule({
imports:[
......@@ -56,7 +57,8 @@ import { DoiParserPipe } from "src/util/pipes/doiPipe.pipe";
FilterDataEntriesbyMethods,
FilterDataEntriesByRegion,
AggregateArrayIntoRootPipe,
DoiParserPipe
DoiParserPipe,
RegionBackgroundToRgbPipe
],
exports:[
DataBrowser,
......
......@@ -306,12 +306,6 @@ export class DatabrowserService implements OnDestroy{
}
public getModalityFromDE = getModalityFromDE
public getBackgroundColorStyleFromRegion(region:any = null){
return region && region.rgb
? `rgb(${region.rgb.join(',')})`
: `white`
}
}
......
......@@ -155,10 +155,6 @@ export class DataBrowser implements OnDestroy,OnInit{
resetFilters(event?:MouseEvent){
this.clearAll()
}
getBackgroundColorStyleFromRegion(region:any) {
return this.dbService.getBackgroundColorStyleFromRegion(region)
}
}
export interface DataEntryFilter{
......
......@@ -16,7 +16,7 @@
<span
*ngFor="let region of regions"
class="badge badge-secondary mr-1 mw-100">
<span [ngStyle]="{backgroundColor:getBackgroundColorStyleFromRegion(region)}" class="dot">
<span [ngStyle]="{backgroundColor: (region | regionBackgroundToRgbPipe)}" class="dot">
</span>
<span class="d-inline-block mw-100 overflow-hidden text-truncate">
......@@ -122,7 +122,7 @@
<span
*ngFor="let region of dataset.parcellationRegion"
class="badge badge-secondary mr-1 mw-100">
<span [ngStyle]="{backgroundColor:getBackgroundColorStyleFromRegion(region)}" class="dot">
<span [ngStyle]="{backgroundColor:(region | regionBackgroundToRgbPipe)}" class="dot">
</span>
<span class="d-inline-block mw-100 overflow-hidden text-truncate">
......
import { Pipe, PipeTransform } from "@angular/core";
@Pipe({
name: 'regionBackgroundToRgbPipe'
})
export class RegionBackgroundToRgbPipe implements PipeTransform{
public transform(region = null): string{
return region && region.rgb
? `rgb(${region.rgb.join(',')})`
: 'white'
}
}
\ No newline at end of file
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