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
Original file line number Diff line number Diff line change
Expand Up @@ -128,10 +128,10 @@ describe('DashboardBuilder', () => {
expect(parentSize.find(Tabs.TabPane)).toHaveLength(2);
});

it('should set animated=true on Tabs for perf', () => {
it('should have default animated=true on Tabs for perf', () => {
const wrapper = setup({ dashboardLayout: undoableDashboardLayoutWithTabs });
const tabProps = wrapper.find(ParentSize).find(Tabs).props();
expect(tabProps.animated).toEqual({ inkBar: true, tabPane: false });
expect(tabProps.animated).toEqual(true);
});

it('should render a TabPane and DashboardGrid for first Tab', () => {
Expand Down Expand Up @@ -182,7 +182,7 @@ describe('DashboardBuilder', () => {
dashboardLayout: undoableDashboardLayoutWithTabs,
});

expect(wrapper.find(Tabs).prop('activeKey')).toBe(DASHBOARD_GRID_ID);
expect(wrapper.find(Tabs).at(1).prop('activeKey')).toBe(DASHBOARD_GRID_ID);

wrapper
.find('.dashboard-component-tabs .ant-tabs .ant-tabs-tab')
Expand Down
131 changes: 62 additions & 69 deletions superset-frontend/src/components/Tabs/Tabs.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,87 +26,80 @@ export interface TabsProps extends AntDTabsProps {
allowOverflow?: boolean;
}

const notForwardedProps = ['fullWidth', 'allowOverflow'];

const StyledTabs = styled(AntDTabs, {
shouldForwardProp: prop => !notForwardedProps.includes(String(prop)),
})<TabsProps>`
overflow: ${({ allowOverflow }) => (allowOverflow ? 'visible' : 'hidden')};

.ant-tabs-content-holder {
overflow: ${({ allowOverflow }) => (allowOverflow ? 'visible' : 'auto')};
}

.ant-tabs-tab {
flex: 1 1 auto;

&.ant-tabs-tab-active .ant-tabs-tab-btn {
color: inherit;
}

&:hover {
.anchor-link-container {
cursor: pointer;

.fa.fa-link {
visibility: visible;
}
const StyledTabs = ({
animated = false,
fullWidth = true,
allowOverflow = true,
...props
}: TabsProps) => (
<AntDTabs
animated={animated}
{...props}
css={theme => css`
overflow: ${allowOverflow ? 'visible' : 'hidden'};

.ant-tabs-content-holder {
overflow: ${allowOverflow ? 'visible' : 'auto'};
}
}

.short-link-trigger.btn {
padding: 0 ${({ theme }) => theme.gridUnit}px;

& > .fa.fa-link {
top: 0;
.ant-tabs-tab {
flex: 1 1 auto;
&.ant-tabs-tab-active .ant-tabs-tab-btn {
color: inherit;
}
&:hover {
.anchor-link-container {
cursor: pointer;
.fa.fa-link {
visibility: visible;
}
}
}
.short-link-trigger.btn {
padding: 0 ${theme.gridUnit}px;
& > .fa.fa-link {
top: 0;
}
}
}
}
}
${fullWidth &&
css`
.ant-tabs-nav-list {
width: 100%;
}

${({ fullWidth }) =>
fullWidth &&
css`
.ant-tabs-nav-list {
width: 100%;
.ant-tabs-tab {
width: 0;
margin-right: 0;
}
`};

.ant-tabs-tab-btn {
display: flex;
flex: 1 1 auto;
align-items: center;
justify-content: center;
font-size: ${theme.typography.sizes.s}px;
text-align: center;
text-transform: uppercase;
user-select: none;
.required {
margin-left: ${theme.gridUnit / 2}px;
color: ${theme.colors.error.base};
}
}

.ant-tabs-tab {
width: 0;
.ant-tabs-ink-bar {
background: ${theme.colors.secondary.base};
}
`};

.ant-tabs-tab-btn {
display: flex;
flex: 1 1 auto;
align-items: center;
justify-content: center;
font-size: ${({ theme }) => theme.typography.sizes.s}px;
text-align: center;
text-transform: uppercase;
user-select: none;

.required {
margin-left: ${({ theme }) => theme.gridUnit / 2}px;
color: ${({ theme }) => theme.colors.error.base};
}
}

.ant-tabs-ink-bar {
background: ${({ theme }) => theme.colors.secondary.base};
}
`;
`}
/>
);

const StyledTabPane = styled(AntDTabs.TabPane)``;

const Tabs = Object.assign(StyledTabs, {
TabPane: StyledTabPane,
});

Tabs.defaultProps = {
fullWidth: true,
animated: { inkBar: true, tabPane: false },
};

const StyledEditableTabs = styled(StyledTabs)`
.ant-tabs-content-holder {
background: white;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ const DashboardContainer: FC<DashboardContainerProps> = ({ topLevelTabs }) => {
activeKey={activeKey}
renderTabBar={() => <></>}
fullWidth={false}
animated
allowOverflow
>
{childIds.map((id, index) => (
Expand Down