Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
67 changes: 37 additions & 30 deletions superset-frontend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion superset-frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,7 @@
"omnibar": "^2.1.1",
"polished": "^3.6.5",
"prop-types": "^15.7.2",
"query-string": "^6.13.7",
"re-resizable": "^6.6.1",
"react": "^16.13.1",
"react-ace": "^5.10.0",
Expand Down Expand Up @@ -166,7 +167,7 @@
"rison": "^0.1.1",
"shortid": "^2.2.6",
"urijs": "^1.18.10",
"use-query-params": "^0.4.5"
"use-query-params": "^1.1.9"
},
"devDependencies": {
"@babel/cli": "^7.11.5",
Expand Down
40 changes: 40 additions & 0 deletions superset-frontend/spec/helpers/ProviderWrapper.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
/**
* 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 { ThemeProvider } from '@superset-ui/core';
import { BrowserRouter as Router, Route } from 'react-router-dom';
import { QueryParamProvider } from 'use-query-params';

export function ProviderWrapper(props: any) {
const { children, theme } = props;

return (
<ThemeProvider theme={theme}>
<Router>
<QueryParamProvider
ReactRouterRoute={Route}
stringifyOptions={{ encode: false }}
>
{children}
</QueryParamProvider>
</Router>
</ThemeProvider>
);
}
7 changes: 4 additions & 3 deletions superset-frontend/spec/helpers/theming.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,9 @@
* under the License.
*/
import { shallow as enzymeShallow, mount as enzymeMount } from 'enzyme';
import { supersetTheme, ThemeProvider } from '@superset-ui/core';
import { supersetTheme } from '@superset-ui/core';
import { ReactElement } from 'react';
import { ProviderWrapper } from './ProviderWrapper';

type optionsType = {
wrappingComponentProps?: any;
Expand All @@ -32,7 +33,7 @@ export function styledMount(
) {
return enzymeMount(component, {
...options,
wrappingComponent: ThemeProvider,
wrappingComponent: ProviderWrapper,
wrappingComponentProps: {
theme: supersetTheme,
...options?.wrappingComponentProps,
Expand All @@ -46,7 +47,7 @@ export function styledShallow(
) {
return enzymeShallow(component, {
...options,
wrappingComponent: ThemeProvider,
wrappingComponent: ProviderWrapper,
wrappingComponentProps: {
theme: supersetTheme,
...options?.wrappingComponentProps,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
* under the License.
*/
import React from 'react';
import { shallow } from 'enzyme';
import { styledMount as mount } from 'spec/helpers/theming';
import { getChartControlPanelRegistry } from '@superset-ui/core';

import AlteredSliceTag from 'src/components/AlteredSliceTag';
Expand All @@ -34,7 +34,7 @@ import {
} from './fixtures/AlteredSliceTag';

const getTableWrapperFromModalBody = modalBody =>
modalBody.find(ListView).shallow().find(TableCollection).shallow();
modalBody.find(ListView).find(TableCollection);

describe('AlteredSliceTag', () => {
let wrapper;
Expand All @@ -47,7 +47,7 @@ describe('AlteredSliceTag', () => {
fakePluginControls,
);
props = { ...defaultProps };
wrapper = shallow(<AlteredSliceTag {...props} />);
wrapper = mount(<AlteredSliceTag {...props} />);
({ controlsMap } = wrapper.instance().state);
});

Expand All @@ -63,7 +63,7 @@ describe('AlteredSliceTag', () => {
origFormData: props.origFormData,
currentFormData: props.origFormData,
};
wrapper = shallow(<AlteredSliceTag {...props} />);
wrapper = mount(<AlteredSliceTag {...props} />);
expect(wrapper.instance().state.rows).toEqual([]);
expect(wrapper.instance().state.hasDiffs).toBe(false);
expect(wrapper.instance().render()).toBeNull();
Expand All @@ -78,7 +78,7 @@ describe('AlteredSliceTag', () => {
currentFormData: { ...props.currentFormData },
origFormData: { ...props.origFormData },
};
wrapper = shallow(<AlteredSliceTag {...props} />);
wrapper = mount(<AlteredSliceTag {...props} />);
const wrapperInstance = wrapper.instance();
wrapperInstance.UNSAFE_componentWillReceiveProps(newProps);
expect(getRowsFromDiffsStub).toHaveBeenCalled();
Expand All @@ -98,7 +98,7 @@ describe('AlteredSliceTag', () => {

describe('renderTriggerNode', () => {
it('renders a TooltipWrapper', () => {
const triggerNode = shallow(
const triggerNode = mount(
<div>{wrapper.instance().renderTriggerNode()}</div>,
);
expect(triggerNode.find(TooltipWrapper)).toHaveLength(1);
Expand All @@ -107,14 +107,14 @@ describe('AlteredSliceTag', () => {

describe('renderModalBody', () => {
it('renders a Table', () => {
const modalBody = shallow(
const modalBody = mount(
<div>{wrapper.instance().renderModalBody()}</div>,
);
expect(modalBody.find(ListView)).toHaveLength(1);
});

it('renders a thead', () => {
const modalBody = shallow(
const modalBody = mount(
<div>{wrapper.instance().renderModalBody()}</div>,
);
expect(
Expand All @@ -123,7 +123,7 @@ describe('AlteredSliceTag', () => {
});

it('renders th', () => {
const modalBody = shallow(
const modalBody = mount(
<div>{wrapper.instance().renderModalBody()}</div>,
);
const th = getTableWrapperFromModalBody(modalBody).find('th');
Expand All @@ -134,15 +134,15 @@ describe('AlteredSliceTag', () => {
});

it('renders the correct number of Tr', () => {
const modalBody = shallow(
const modalBody = mount(
<div>{wrapper.instance().renderModalBody()}</div>,
);
const tr = getTableWrapperFromModalBody(modalBody).find('tr');
expect(tr).toHaveLength(8);
});

it('renders the correct number of td', () => {
const modalBody = shallow(
const modalBody = mount(
<div>{wrapper.instance().renderModalBody()}</div>,
);
const td = getTableWrapperFromModalBody(modalBody).find('td');
Expand All @@ -155,12 +155,12 @@ describe('AlteredSliceTag', () => {

describe('renderRows', () => {
it('returns an array of rows with one tr and three td', () => {
const modalBody = shallow(
const modalBody = mount(
<div>{wrapper.instance().renderModalBody()}</div>,
);
const rows = getTableWrapperFromModalBody(modalBody).find('tr');
expect(rows).toHaveLength(8);
const fakeRow = shallow(<div>{rows.get(1)}</div>);
const fakeRow = mount(<div>{rows.get(1)}</div>);
expect(fakeRow.find('tr')).toHaveLength(1);
expect(fakeRow.find('td')).toHaveLength(3);
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
* under the License.
*/
import React from 'react';
import { mount, shallow } from 'enzyme';
import { styledMount as mount } from 'spec/helpers/theming';
import { act } from 'react-dom/test-utils';
import { QueryParamProvider } from 'use-query-params';
import { supersetTheme, ThemeProvider } from '@superset-ui/core';
Expand Down Expand Up @@ -338,7 +338,7 @@ describe('ListView', () => {
filters: [...mockedProps.filters, { id: 'some_column' }],
};
expect(() => {
shallow(<ListView {...props} />, {
mount(<ListView {...props} />, {
wrappingComponent: ThemeProvider,
wrappingComponentProps: { theme: supersetTheme },
});
Expand Down
12 changes: 11 additions & 1 deletion superset-frontend/src/components/ListView/Filters.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,18 @@ function SelectFilter({
};

const options = [clearFilterSelect, ...selects];
let initialOption = clearFilterSelect;

const [selectedOption, setSelectedOption] = useState(clearFilterSelect);
// Set initial value if not async
if (!fetchSelects) {
const matchingOption = options.find(x => x.value === initialValue);

if (matchingOption) {
initialOption = matchingOption;
}
}

const [selectedOption, setSelectedOption] = useState(initialOption);
const onChange = (selected: SelectOption | null) => {
if (selected === null) return;
onSelect(
Expand Down
Loading