-
Notifications
You must be signed in to change notification settings - Fork 13.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Migrating shared NVD3 controls to new module (#9525)
* proto module * caught a missed 'freq' unique control * line_interpolation * linting * showLegend * show_controls * xAxisLabel * bottomMargin * x_ticks_layout * missed one * x_axis_format * yLogScale * y_axis_bounds * linting * nixing yarn lock * x_axis_showminmax * xAxisShowminmax control * richTooltip * linting, syntax fix * show_bar_value, bar_stacked * reduceXticks, yaxislabel * left_margin, max_bubble_size, y_axis_showminmax * show_labels * send_time_range, y_axis_2_format, show_markers, order_bars * nixing commented imports * fake controls * looking up actual controls for comparison. * adding key to test setup * controls inventory * apache junk * lint ✨ * ignore null controls * fixing goofed up spread operation for xAxisFormat config * lint ✨ * fixes for errors caused by <hr> element in filterbox controls * fixing filter controls for 'druid_time_origin', 'granularity', 'granularity_sqla', 'time_grain_sqla' * getControlsInventory -> getControlsForVizType * further renaming of chartControlsInventory - > getControlsForVizType Co-authored-by: David Aaron Suddjian <aasuddjian@gmail.com>
- Loading branch information
Showing
27 changed files
with
991 additions
and
420 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
104 changes: 104 additions & 0 deletions
104
superset-frontend/spec/javascripts/utils/getControlsForVizType_spec.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,104 @@ | ||
/** | ||
* 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 { getChartControlPanelRegistry } from '@superset-ui/chart'; | ||
import getControlsForVizType from 'src/utils/getControlsForVizType'; | ||
|
||
const fakePluginControls = { | ||
controlPanelSections: [ | ||
{ | ||
label: 'Fake Control Panel Sections', | ||
expanded: true, | ||
controlSetRows: [ | ||
['url_params'], | ||
[ | ||
{ | ||
name: 'y_axis_bounds', | ||
config: { | ||
type: 'BoundsControl', | ||
label: 'Value bounds', | ||
default: [null, null], | ||
description: 'Value bounds for the y axis', | ||
}, | ||
}, | ||
], | ||
[ | ||
{ | ||
name: 'adhoc_filters', | ||
config: { | ||
type: 'AdhocFilterControl', | ||
label: 'Fake Filters', | ||
default: null, | ||
}, | ||
}, | ||
], | ||
], | ||
}, | ||
{ | ||
label: 'Fake Control Panel Sections 2', | ||
expanded: true, | ||
controlSetRows: [ | ||
[ | ||
{ | ||
name: 'column_collection', | ||
config: { | ||
type: 'CollectionControl', | ||
label: 'Fake Collection Control', | ||
}, | ||
}, | ||
], | ||
], | ||
}, | ||
], | ||
}; | ||
|
||
describe('getControlsForVizType', () => { | ||
beforeEach(() => { | ||
getChartControlPanelRegistry().registerValue( | ||
'chart_controls_inventory_fake', | ||
fakePluginControls, | ||
); | ||
}); | ||
|
||
it('returns a map of the controls', () => { | ||
expect(getControlsForVizType('chart_controls_inventory_fake')).toEqual({ | ||
url_params: { | ||
type: 'HiddenControl', | ||
label: 'URL Parameters', | ||
hidden: true, | ||
description: 'Extra parameters for use in jinja templated queries', | ||
}, | ||
y_axis_bounds: { | ||
type: 'BoundsControl', | ||
label: 'Value bounds', | ||
default: [null, null], | ||
description: 'Value bounds for the y axis', | ||
}, | ||
adhoc_filters: { | ||
type: 'AdhocFilterControl', | ||
label: 'Fake Filters', | ||
default: null, | ||
}, | ||
column_collection: { | ||
type: 'CollectionControl', | ||
label: 'Fake Collection Control', | ||
}, | ||
}); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.