forked from apache/superset
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(legacy-plugin-chart-event-flow): control panel (apache#501)
- Loading branch information
1 parent
a0dc924
commit 76a7a5a
Showing
3 changed files
with
132 additions
and
0 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
128 changes: 128 additions & 0 deletions
128
...old-potentially-deprecate/superset-ui-legacy-plugin-chart-event-flow/src/controlPanel.jsx
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,128 @@ | ||
/** | ||
* 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 React from 'react'; | ||
import { t } from '@superset-ui/translation'; | ||
import { validateNonEmpty } from '@superset-ui/validator'; | ||
import { | ||
ColumnOption, | ||
internalSharedControls, | ||
formatSelectOptionsForRange, | ||
} from '@superset-ui/control-utils'; | ||
|
||
const { columnChoices } = internalSharedControls; | ||
|
||
export default { | ||
requiresTime: true, | ||
controlPanelSections: [ | ||
{ | ||
label: t('Event definition'), | ||
controlSetRows: [ | ||
['entity'], | ||
[ | ||
{ | ||
name: 'all_columns_x', | ||
config: { | ||
type: 'SelectControl', | ||
label: t('Column containing event names'), | ||
default: control => | ||
control.choices && control.choices.length > 0 ? control.choices[0][0] : null, | ||
}, | ||
description: t('Columns to display'), | ||
mapStateToProps: state => ({ | ||
choices: columnChoices(state.datasource), | ||
}), | ||
validators: [validateNonEmpty], | ||
}, | ||
], | ||
['row_limit'], | ||
[ | ||
{ | ||
name: 'order_by_entity', | ||
config: { | ||
type: 'CheckboxControl', | ||
label: t('Order by entity id'), | ||
description: t( | ||
'Important! Select this if the table is not already sorted by entity id, ' + | ||
'else there is no guarantee that all events for each entity are returned.', | ||
), | ||
default: true, | ||
}, | ||
}, | ||
], | ||
[ | ||
{ | ||
name: 'min_leaf_node_event_count', | ||
config: { | ||
type: 'SelectControl', | ||
freeForm: false, | ||
label: t('Minimum leaf node event count'), | ||
default: 1, | ||
choices: formatSelectOptionsForRange(1, 10), | ||
description: t( | ||
'Leaf nodes that represent fewer than this number of events will be initially ' + | ||
'hidden in the visualization', | ||
), | ||
}, | ||
}, | ||
], | ||
], | ||
}, | ||
{ | ||
label: t('Query'), | ||
expanded: true, | ||
controlSetRows: [['adhoc_filters']], | ||
}, | ||
{ | ||
label: t('Additional metadata'), | ||
controlSetRows: [ | ||
[ | ||
{ | ||
name: 'all_columns', | ||
config: { | ||
type: 'SelectControl', | ||
multi: true, | ||
label: t('Meta data'), | ||
default: [], | ||
description: t('Select any columns for metadata inspection'), | ||
optionRenderer: c => <ColumnOption showType column={c} />, | ||
valueRenderer: c => <ColumnOption column={c} />, | ||
valueKey: 'column_name', | ||
allowAll: true, | ||
mapStateToProps: state => ({ | ||
options: state.datasource ? state.datasource.columns : [], | ||
}), | ||
commaChoosesOption: false, | ||
freeForm: true, | ||
}, | ||
}, | ||
], | ||
], | ||
}, | ||
], | ||
controlOverrides: { | ||
entity: { | ||
label: t('Column containing entity ids'), | ||
description: t('e.g., a "user id" column'), | ||
}, | ||
row_limit: { | ||
label: t('Event count limit'), | ||
description: t('The maximum number of events to return, equivalent to the number of rows'), | ||
}, | ||
}, | ||
}; |
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