Skip to content

Commit

Permalink
feat: showing results pane in dashboard (#20144)
Browse files Browse the repository at this point in the history
  • Loading branch information
zhaoyongjie committed Jun 5, 2022
1 parent 7faf874 commit 41f33a3
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ const createProps = (viz_type = 'sunburst') => ({
chartStatus: 'rendered',
showControls: true,
supersetCanShare: true,
formData: { slice_id: 1, datasource: '58__table' },
formData: { slice_id: 1, datasource: '58__table', viz_type: 'sunburst' },
});

test('Should render', () => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,9 @@ import { FeatureFlag, isFeatureEnabled } from 'src/featureFlags';
import CrossFilterScopingModal from 'src/dashboard/components/CrossFilterScopingModal/CrossFilterScopingModal';
import Icons from 'src/components/Icons';
import ModalTrigger from 'src/components/ModalTrigger';
import Button from 'src/components/Button';
import ViewQueryModal from 'src/explore/components/controls/ViewQueryModal';
import { ResultsPane } from 'src/explore/components/DataTablesPane';

const MENU_KEYS = {
CROSS_FILTER_SCOPING: 'cross_filter_scoping',
Expand All @@ -46,6 +48,7 @@ const MENU_KEYS = {
FULLSCREEN: 'fullscreen',
TOGGLE_CHART_DESCRIPTION: 'toggle_chart_description',
VIEW_QUERY: 'view_query',
VIEW_RESULTS: 'view_results',
};

const VerticalDotsContainer = styled.div`
Expand Down Expand Up @@ -102,7 +105,7 @@ export interface SliceHeaderControlsProps {
updatedDttm: number | null;
isFullSize?: boolean;
isDescriptionExpanded?: boolean;
formData: Pick<QueryFormData, 'slice_id' | 'datasource'>;
formData: QueryFormData;
onExploreChart: () => void;

forceRefresh: (sliceId: number, dashboardId: number) => void;
Expand Down Expand Up @@ -327,6 +330,39 @@ class SliceHeaderControls extends React.PureComponent<
</Menu.Item>
)}

{this.props.supersetCanExplore && (
<Menu.Item key={MENU_KEYS.VIEW_RESULTS}>
<ModalTrigger
triggerNode={
<span data-test="view-query-menu-item">
{t('Drill to detail')}
</span>
}
modalTitle={t('Chart Data: %s', slice.slice_name)}
modalBody={
<ResultsPane
queryFormData={this.props.formData}
queryForce={false}
dataSize={20}
isRequest
/>
}
modalFooter={
<Button
buttonStyle="secondary"
buttonSize="small"
onClick={this.props.onExploreChart}
>
{t('Edit chart')}
</Button>
}
draggable
resizable
responsive
/>
</Menu.Item>
)}

{(slice.description || this.props.supersetCanExplore) && (
<Menu.Divider />
)}
Expand Down

0 comments on commit 41f33a3

Please sign in to comment.