| /* |
| * Licensed 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 { CdkDragDrop } from '@angular/cdk/drag-drop'; |
| import { ChangeDetectionStrategy, ChangeDetectorRef, Component, Input, OnInit } from '@angular/core'; |
| |
| import { get } from 'lodash'; |
| |
| import { GraphConfig, VisualizationScatterChart } from '@zeppelin/sdk'; |
| import { TableData, Visualization } from '@zeppelin/visualization'; |
| |
| @Component({ |
| selector: 'zeppelin-visualization-scatter-setting', |
| templateUrl: './scatter-setting.component.html', |
| styleUrls: ['./scatter-setting.component.less'], |
| changeDetection: ChangeDetectionStrategy.OnPush |
| }) |
| export class VisualizationScatterSettingComponent implements OnInit { |
| @Input() visualization!: Visualization; |
| |
| config!: GraphConfig; |
| columns: Array<Exclude<VisualizationScatterChart[keyof VisualizationScatterChart], undefined>> = []; |
| |
| field: { |
| xAxis: Array<Exclude<VisualizationScatterChart['xAxis'], undefined>>; |
| yAxis: Array<Exclude<VisualizationScatterChart['yAxis'], undefined>>; |
| group: Array<Exclude<VisualizationScatterChart['group'], undefined>>; |
| size: Array<Exclude<VisualizationScatterChart['size'], undefined>>; |
| } = { |
| xAxis: [], |
| yAxis: [], |
| group: [], |
| size: [] |
| }; |
| |
| // eslint-disable-next-line |
| drop(event: CdkDragDrop<any[]>) { |
| this.clean(event.container.data, false); |
| event.container.data.push(event.previousContainer.data[event.previousIndex]); |
| this.cdr.markForCheck(); |
| this.updateConfig(); |
| } |
| |
| // eslint-disable-next-line |
| clean(data: any[], update = true): void { |
| while (data.length > 0) { |
| data.splice(0, 1); |
| } |
| if (update) { |
| this.updateConfig(); |
| } |
| this.cdr.markForCheck(); |
| } |
| |
| noReturnPredicate() { |
| return false; |
| } |
| |
| updateConfig() { |
| if (!this.visualization.configChange$) { |
| throw new Error('configChange$ is not defined'); |
| } |
| if (!this.config.setting.scatterChart) { |
| this.config.setting.scatterChart = {}; |
| } |
| const scatterSetting = this.config.setting.scatterChart; |
| scatterSetting.xAxis = this.field.xAxis[0]; |
| scatterSetting.yAxis = this.field.yAxis[0]; |
| scatterSetting.size = this.field.size[0]; |
| scatterSetting.group = this.field.group[0]; |
| this.visualization.configChange$.next(this.config); |
| } |
| |
| constructor(private cdr: ChangeDetectorRef) {} |
| |
| init() { |
| const tableData = this.visualization.getTransformation().getTableData() as TableData; |
| this.config = this.visualization.getConfig(); |
| this.columns = tableData.columns.map((name, index) => ({ |
| name, |
| index, |
| aggr: 'sum' |
| })); |
| |
| const xAxis = get(this.config.setting, 'scatterChart.xAxis', this.columns[0]); |
| const yAxis = get(this.config.setting, 'scatterChart.yAxis', this.columns[1]); |
| const group = get(this.config.setting, 'scatterChart.group'); |
| const size = get(this.config.setting, 'scatterChart.size'); |
| const arrayWrapper = <T extends VisualizationScatterChart[keyof VisualizationScatterChart]>(value: T) => |
| value ? [value] : []; |
| this.field.xAxis = arrayWrapper(xAxis); |
| this.field.yAxis = arrayWrapper(yAxis); |
| this.field.group = arrayWrapper(group); |
| this.field.size = arrayWrapper(size); |
| this.cdr.markForCheck(); |
| } |
| |
| ngOnInit() { |
| this.init(); |
| } |
| } |