mirror of
https://github.com/apache/superset.git
synced 2026-04-21 00:54:44 +00:00
155 lines
4.6 KiB
TypeScript
155 lines
4.6 KiB
TypeScript
/**
|
|
* 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 { useMemo, FC } from 'react';
|
|
|
|
import { bindActionCreators } from 'redux';
|
|
import { useSelector, useDispatch, shallowEqual } from 'react-redux';
|
|
import { MenuDotsDropdown } from 'src/components/Dropdown';
|
|
import { Menu } from 'src/components/Menu';
|
|
import { styled, t, QueryState } from '@superset-ui/core';
|
|
import {
|
|
removeQueryEditor,
|
|
removeAllOtherQueryEditors,
|
|
queryEditorSetTitle,
|
|
cloneQueryToNewTab,
|
|
toggleLeftBar,
|
|
} from 'src/SqlLab/actions/sqlLab';
|
|
import { QueryEditor, SqlLabRootState } from 'src/SqlLab/types';
|
|
import TabStatusIcon from '../TabStatusIcon';
|
|
|
|
const TabTitleWrapper = styled.div`
|
|
display: flex;
|
|
align-items: center;
|
|
`;
|
|
const TabTitle = styled.span`
|
|
margin-right: ${({ theme }) => theme.gridUnit * 2}px;
|
|
text-transform: none;
|
|
`;
|
|
|
|
const IconContainer = styled.div`
|
|
display: inline-block;
|
|
width: ${({ theme }) => theme.gridUnit * 8}px;
|
|
text-align: center;
|
|
`;
|
|
|
|
interface Props {
|
|
queryEditor: QueryEditor;
|
|
}
|
|
|
|
const SqlEditorTabHeader: FC<Props> = ({ queryEditor }) => {
|
|
const qe = useSelector<SqlLabRootState, QueryEditor>(
|
|
({ sqlLab: { unsavedQueryEditor } }) => ({
|
|
...queryEditor,
|
|
...(queryEditor.id === unsavedQueryEditor?.id && unsavedQueryEditor),
|
|
}),
|
|
shallowEqual,
|
|
);
|
|
const queryState = useSelector<SqlLabRootState, QueryState>(
|
|
({ sqlLab }) => sqlLab.queries[qe.latestQueryId || '']?.state || '',
|
|
);
|
|
const dispatch = useDispatch();
|
|
const actions = useMemo(
|
|
() =>
|
|
bindActionCreators(
|
|
{
|
|
removeQueryEditor,
|
|
removeAllOtherQueryEditors,
|
|
queryEditorSetTitle,
|
|
cloneQueryToNewTab,
|
|
toggleLeftBar,
|
|
},
|
|
dispatch,
|
|
),
|
|
[dispatch],
|
|
);
|
|
|
|
function renameTab() {
|
|
const newTitle = prompt(t('Enter a new title for the tab'));
|
|
if (newTitle) {
|
|
actions.queryEditorSetTitle(qe, newTitle, qe.id);
|
|
}
|
|
}
|
|
|
|
return (
|
|
<TabTitleWrapper>
|
|
<MenuDotsDropdown
|
|
trigger={['click']}
|
|
overlay={
|
|
<Menu>
|
|
<Menu.Item
|
|
className="close-btn"
|
|
key="1"
|
|
onClick={() => actions.removeQueryEditor(qe)}
|
|
data-test="close-tab-menu-option"
|
|
>
|
|
<IconContainer>
|
|
<i className="fa fa-close" />
|
|
</IconContainer>
|
|
{t('Close tab')}
|
|
</Menu.Item>
|
|
<Menu.Item
|
|
key="2"
|
|
onClick={renameTab}
|
|
data-test="rename-tab-menu-option"
|
|
>
|
|
<IconContainer>
|
|
<i className="fa fa-i-cursor" />
|
|
</IconContainer>
|
|
{t('Rename tab')}
|
|
</Menu.Item>
|
|
<Menu.Item
|
|
key="3"
|
|
onClick={() => actions.toggleLeftBar(qe)}
|
|
data-test="toggle-menu-option"
|
|
>
|
|
<IconContainer>
|
|
<i className="fa fa-cogs" />
|
|
</IconContainer>
|
|
{qe.hideLeftBar ? t('Expand tool bar') : t('Hide tool bar')}
|
|
</Menu.Item>
|
|
<Menu.Item
|
|
key="4"
|
|
onClick={() => actions.removeAllOtherQueryEditors(qe)}
|
|
data-test="close-all-other-menu-option"
|
|
>
|
|
<IconContainer>
|
|
<i className="fa fa-times-circle-o" />
|
|
</IconContainer>
|
|
{t('Close all other tabs')}
|
|
</Menu.Item>
|
|
<Menu.Item
|
|
key="5"
|
|
onClick={() => actions.cloneQueryToNewTab(qe, false)}
|
|
data-test="clone-tab-menu-option"
|
|
>
|
|
<IconContainer>
|
|
<i className="fa fa-files-o" />
|
|
</IconContainer>
|
|
{t('Duplicate tab')}
|
|
</Menu.Item>
|
|
</Menu>
|
|
}
|
|
/>
|
|
<TabTitle>{qe.name}</TabTitle> <TabStatusIcon tabState={queryState} />{' '}
|
|
</TabTitleWrapper>
|
|
);
|
|
};
|
|
|
|
export default SqlEditorTabHeader;
|