blob: b2877e1efcd62e24a99fa5b78b18658b95e9acae [file] [log] [blame]
/**
* 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, { MouseEventHandler, ReactNode } from 'react';
import { useTheme } from '@superset-ui/core';
import { Tooltip } from 'src/components/Tooltip';
import Icons from 'src/components/Icons';
export interface PopoverSectionProps {
title: string;
isSelected?: boolean;
onSelect?: MouseEventHandler<HTMLDivElement>;
info?: string;
children?: ReactNode;
}
export default function PopoverSection({
title,
isSelected,
children,
onSelect,
info,
}: PopoverSectionProps) {
const theme = useTheme();
return (
<div
css={{
paddingBottom: theme.gridUnit * 2,
opacity: isSelected ? 1 : theme.opacity.mediumHeavy,
}}
>
<div
role="button"
tabIndex={0}
onClick={onSelect}
css={{
display: 'flex',
alignItems: 'center',
cursor: onSelect ? 'pointer' : 'default',
}}
>
<strong data-test="popover-title">{title}</strong>
{info && (
<Tooltip title={info} css={{ marginLeft: theme.gridUnit }}>
<Icons.InfoSolidSmall
role="img"
width={14}
height={14}
iconColor={theme.colors.grayscale.light1}
/>
</Tooltip>
)}
<Icons.Check
role="img"
iconColor={
isSelected ? theme.colors.primary.base : theme.colors.grayscale.base
}
/>
</div>
<div
css={{
marginLeft: theme.gridUnit,
marginTop: theme.gridUnit,
}}
>
{children}
</div>
</div>
);
}