| /** |
| * 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 { FC } from 'react'; |
| import { t, useTheme, styled } from '@superset-ui/core'; |
| import Icons from 'src/components/Icons'; |
| import { DropdownButton } from 'src/components/DropdownButton'; |
| import Button from 'src/components/Button'; |
| import { DropdownButtonProps } from 'antd/lib/dropdown'; |
| |
| interface SaveDatasetActionButtonProps { |
| setShowSave: (arg0: boolean) => void; |
| overlayMenu: JSX.Element | null; |
| } |
| |
| const SaveDatasetActionButton = ({ |
| setShowSave, |
| overlayMenu, |
| }: SaveDatasetActionButtonProps) => { |
| const theme = useTheme(); |
| |
| const StyledDropdownButton = styled( |
| DropdownButton as FC<DropdownButtonProps>, |
| )` |
| &.ant-dropdown-button button.ant-btn.ant-btn-default { |
| font-weight: ${theme.gridUnit * 150}; |
| background-color: ${theme.colors.primary.light4}; |
| color: ${theme.colors.primary.dark1}; |
| &:nth-of-type(2) { |
| &:before, |
| &:hover:before { |
| border-left: 2px solid ${theme.colors.primary.dark2}; |
| } |
| } |
| } |
| span[name='caret-down'] { |
| margin-left: ${theme.gridUnit * 1}px; |
| color: ${theme.colors.primary.dark2}; |
| } |
| `; |
| |
| return !overlayMenu ? ( |
| <Button onClick={() => setShowSave(true)} buttonStyle="primary"> |
| {t('Save')} |
| </Button> |
| ) : ( |
| <StyledDropdownButton |
| onClick={() => setShowSave(true)} |
| overlay={overlayMenu} |
| icon={ |
| <Icons.CaretDown |
| iconColor={theme.colors.grayscale.light5} |
| name="caret-down" |
| /> |
| } |
| trigger={['click']} |
| > |
| {t('Save')} |
| </StyledDropdownButton> |
| ); |
| }; |
| |
| export default SaveDatasetActionButton; |