All checks were successful
FarmMaps.Develop/FarmMapsLib/pipeline/head This commit looks good
89 lines
3.7 KiB
TypeScript
89 lines
3.7 KiB
TypeScript
import { Component, Input, OnInit, ComponentFactoryResolver, ViewChild, SimpleChanges, ComponentFactory, Inject} from '@angular/core';
|
|
import { Feature } from 'ol';
|
|
import { FeatureListComponent,AbstractFeatureListComponent } from '../feature-list/feature-list.component';
|
|
import { WidgetHostDirective } from '../widget-host/widget-host.directive';
|
|
import {IQueryState,PackageService } from '@farmmaps/common';
|
|
import * as mapReducers from '../../reducers/map.reducer';
|
|
import * as mapActions from '../../actions/map.actions';
|
|
import { Store } from '@ngrx/store';
|
|
import { Observable } from 'rxjs';
|
|
|
|
|
|
@Component({
|
|
selector: 'fm-map-feature-list-container',
|
|
templateUrl: './feature-list-container.component.html',
|
|
styleUrls: ['./feature-list-container.component.scss']
|
|
})
|
|
export class FeatureListContainerComponent {
|
|
|
|
constructor(private store: Store<mapReducers.State>,private componentFactoryResolver: ComponentFactoryResolver, @Inject(AbstractFeatureListComponent) public featureLists: AbstractFeatureListComponent[],private packageService:PackageService ) {
|
|
}
|
|
|
|
@Input() features: Array<Feature>
|
|
@Input() queryState: IQueryState;
|
|
@Input() selectedFeature: Feature;
|
|
@Input() clickedFeature:Observable<Feature>;
|
|
|
|
@ViewChild(WidgetHostDirective, { static: true }) widgetHost: WidgetHostDirective;
|
|
componentRef:any;
|
|
|
|
loadComponent(queryState:IQueryState) {
|
|
let componentFactory: ComponentFactory<AbstractFeatureListComponent> = this.componentFactoryResolver.resolveComponentFactory(FeatureListComponent); // default
|
|
let selected = -1;
|
|
let maxMatches =0;
|
|
let showItem = true;
|
|
for (let i = 0; i < this.featureLists.length; i++) {
|
|
let matches=0;
|
|
let criteria=0;
|
|
if (this.featureLists[i]['forItemType']) {
|
|
criteria++;
|
|
if( this.featureLists[i]['forItemType'].indexOf(queryState.itemType) >= 0) {
|
|
matches++;
|
|
}
|
|
}
|
|
if(this.featureLists[i]['forChild'] ) {
|
|
criteria++;
|
|
if(queryState.parentCode && queryState.parentCode != "") {
|
|
matches++;
|
|
}
|
|
}
|
|
if(criteria == matches && matches > maxMatches) {
|
|
selected=i;
|
|
maxMatches = matches;
|
|
}
|
|
}
|
|
if (selected >= 0) {
|
|
componentFactory = this.componentFactoryResolver.resolveComponentFactory(this.featureLists[selected]['constructor'] as any);
|
|
if (this.featureLists[selected]['collapseSearch'] === true) {
|
|
this.store.dispatch(new mapActions.CollapseSearch());
|
|
}
|
|
}
|
|
const viewContainerRef = this.widgetHost.viewContainerRef;
|
|
viewContainerRef.clear();
|
|
if(showItem) {
|
|
this.componentRef = viewContainerRef.createComponent(componentFactory);
|
|
(<AbstractFeatureListComponent>this.componentRef.instance).features = null;
|
|
(<AbstractFeatureListComponent>this.componentRef.instance).queryState = queryState;
|
|
(<AbstractFeatureListComponent>this.componentRef.instance).selectedFeature = null;
|
|
}
|
|
}
|
|
|
|
ngOnInit() {
|
|
this.clickedFeature.subscribe((feature => {
|
|
(<AbstractFeatureListComponent>this.componentRef.instance).handleFeatureClick(feature);
|
|
}));
|
|
}
|
|
|
|
ngOnChanges(changes: SimpleChanges) {
|
|
if ((changes["queryState"] && changes["queryState"].currentValue)) {
|
|
this.loadComponent(changes["queryState"].currentValue);
|
|
}
|
|
if ((changes["features"] && changes["features"].currentValue)) {
|
|
(<AbstractFeatureListComponent>this.componentRef.instance).features = changes["features"].currentValue;
|
|
}
|
|
if(changes["selectedFeature"]) {
|
|
(<AbstractFeatureListComponent>this.componentRef.instance).selectedFeature = changes["selectedFeature"].currentValue;
|
|
}
|
|
}
|
|
}
|