| /* |
| * Licensed to the Apache Software Foundation (ASF) under one or more |
| * contributor license agreements. See the NOTICE file distributed with |
| * this work for additional information regarding copyright ownership. |
| * The ASF licenses this file to You under the Apache License, Version 2.0 |
| * (the "License"); you may not use this file except in compliance with |
| * the License. You may obtain a copy of the License at |
| * |
| * http://www.apache.org/licenses/LICENSE-2.0 |
| * |
| * Unless required by applicable law or agreed to in writing, software |
| * distributed under the License is distributed on an "AS IS" BASIS, |
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| * See the License for the specific language governing permissions and |
| * limitations under the License. |
| * |
| */ |
| |
| import { Component, EventEmitter, OnInit, Output } from '@angular/core'; |
| import { StaticMappingComponent } from '../static-mapping/static-mapping'; |
| import { MappingPropertyNary } from '@streampipes/platform-services'; |
| import { DisplayRecommendedPipe } from '../filter/display-recommended.pipe'; |
| |
| @Component({ |
| selector: 'sp-app-static-mapping-nary', |
| templateUrl: './static-mapping-nary.component.html', |
| styleUrls: ['./static-mapping-nary.component.scss'], |
| }) |
| export class StaticMappingNaryComponent |
| extends StaticMappingComponent<MappingPropertyNary> |
| implements OnInit |
| { |
| @Output() inputEmitter: EventEmitter<boolean> = new EventEmitter<boolean>(); |
| |
| constructor(private displayRecommendedPipe: DisplayRecommendedPipe) { |
| super(); |
| } |
| |
| ngOnInit() { |
| this.extractPossibleSelections(); |
| if (!this.staticProperty.selectedProperties) { |
| this.selectNone(); |
| } else { |
| const recommendedProperties = this.displayRecommendedPipe.transform( |
| this.availableProperties, |
| this.staticProperty.propertyScope, |
| this.displayRecommended, |
| ); |
| recommendedProperties.forEach(ep => { |
| if ( |
| this.staticProperty.selectedProperties.indexOf( |
| ep.propertySelector, |
| ) > -1 |
| ) { |
| ep['checked'] = true; |
| } |
| }); |
| } |
| this.inputEmitter.emit(true); |
| } |
| |
| selectOption(property: any, $event) { |
| if (property['checked']) { |
| this.addProperty(property); |
| } else { |
| this.staticProperty.selectedProperties.splice( |
| this.staticProperty.selectedProperties.indexOf( |
| this.makeSelector(property), |
| ), |
| 1, |
| ); |
| property['checked'] = false; |
| } |
| } |
| |
| addProperty(property: any) { |
| if ( |
| this.staticProperty.selectedProperties.indexOf( |
| property.propertySelector, |
| ) < 0 |
| ) { |
| this.staticProperty.selectedProperties.push( |
| this.makeSelector(property), |
| ); |
| } |
| } |
| |
| makeSelector(property: any) { |
| return property.propertySelector; |
| } |
| |
| selectAll() { |
| this.selectNone(); |
| const recommendedProperties = this.displayRecommendedPipe.transform( |
| this.availableProperties, |
| this.staticProperty.propertyScope, |
| this.displayRecommended, |
| ); |
| recommendedProperties.forEach(ep => { |
| ep['checked'] = true; |
| this.addProperty(ep); |
| }); |
| } |
| |
| selectNone() { |
| this.staticProperty.selectedProperties = []; |
| this.availableProperties.forEach(ep => { |
| ep['checked'] = false; |
| }); |
| } |
| |
| onStatusChange(status: any) {} |
| |
| onValueChange(value: any) { |
| this.emitUpdate(); |
| } |
| } |