/** * 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, { useState, ReactNode } from 'react'; import { styled, useTheme, t } from '@superset-ui/core'; import { noOp } from 'src/utils/common'; import Modal from 'src/components/Modal'; import Button from 'src/components/Button'; import { isCurrentUserBot } from 'src/utils/isBot'; import Icons from 'src/components/Icons'; import { ErrorLevel, ErrorSource } from './types'; import CopyToClipboard from '../CopyToClipboard'; const ErrorAlertDiv = styled.div<{ level: ErrorLevel }>` align-items: center; background-color: ${({ level, theme }) => theme.colors[level].light2}; border-radius: ${({ theme }) => theme.borderRadius}px; border: 1px solid ${({ level, theme }) => theme.colors[level].base}; color: ${({ level, theme }) => theme.colors[level].dark2}; padding: ${({ theme }) => 2 * theme.gridUnit}px; width: 100%; .top-row { display: flex; justify-content: space-between; } .error-body { padding-top: ${({ theme }) => theme.gridUnit}px; padding-left: ${({ theme }) => 8 * theme.gridUnit}px; } .icon { margin-right: ${({ theme }) => 2 * theme.gridUnit}px; } .link { color: ${({ level, theme }) => theme.colors[level].dark2}; text-decoration: underline; } `; const ErrorModal = styled(Modal)<{ level: ErrorLevel }>` color: ${({ level, theme }) => theme.colors[level].dark2}; overflow-wrap: break-word; .ant-modal-header { background-color: ${({ level, theme }) => theme.colors[level].light2}; padding: ${({ theme }) => 4 * theme.gridUnit}px; } .icon { margin-right: ${({ theme }) => 2 * theme.gridUnit}px; } .header { display: flex; align-items: center; font-size: ${({ theme }) => theme.typography.sizes.l}px; } `; const LeftSideContent = styled.div` align-items: center; display: flex; `; interface ErrorAlertProps { body: ReactNode; copyText?: string; level: ErrorLevel; source?: ErrorSource; subtitle: ReactNode; title: ReactNode; description?: string; } export default function ErrorAlert({ body, copyText, level = 'error', source = 'dashboard', subtitle, title, description, }: ErrorAlertProps) { const theme = useTheme(); const [isModalOpen, setIsModalOpen] = useState(false); const [isBodyExpanded, setIsBodyExpanded] = useState(isCurrentUserBot()); const isExpandable = isCurrentUserBot() || ['explore', 'sqllab'].includes(source); const iconColor = theme.colors[level].base; return (
{level === 'error' ? ( ) : ( )} {title} {!isExpandable && !description && ( setIsModalOpen(true)} > {t('See more')} )}
{description && (

{description}

{!isExpandable && ( setIsModalOpen(true)} > {t('See more')} )}
)} {isExpandable ? (

{subtitle}

{body && ( <> {!isBodyExpanded && ( setIsBodyExpanded(true)} > {t('See more')} )} {isBodyExpanded && ( <>
{body} setIsBodyExpanded(false)} > {t('See less')} )} )}
) : ( setIsModalOpen(false)} destroyOnClose title={
{level === 'error' ? ( ) : ( )}
{title}
} footer={ <> {copyText && ( {t('Copy message')}} /> )} } > <>

{subtitle}

{/* This break was in the original design of the modal but the spacing looks really off if there is only subtitle or a body */} {subtitle && body &&
} {body}
)}
); }