This repository has been archived by the owner on Dec 10, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 272
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add certification icon to metrics (#748)
- Loading branch information
Erik Ritter
authored
Aug 20, 2020
1 parent
b3c6c55
commit 7995f0d
Showing
2 changed files
with
91 additions
and
5 deletions.
There are no files selected for viewing
67 changes: 67 additions & 0 deletions
67
packages/superset-ui-chart-controls/src/components/CertifiedIconWithTooltip.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
/** | ||
* 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 from 'react'; | ||
import { t } from '@superset-ui/translation'; | ||
import { supersetTheme } from '@superset-ui/style'; | ||
import { Tooltip, OverlayTrigger } from 'react-bootstrap'; | ||
import { kebabCase } from 'lodash'; | ||
|
||
const tooltipStyle: React.CSSProperties = { wordWrap: 'break-word' }; | ||
|
||
interface CertifiedIconWithTooltipProps { | ||
certifiedBy?: string | null; | ||
details?: string | null; | ||
metricName: string; | ||
} | ||
|
||
function CertifiedIconWithTooltip({ | ||
certifiedBy, | ||
details, | ||
metricName, | ||
}: CertifiedIconWithTooltipProps) { | ||
return ( | ||
<OverlayTrigger | ||
placement="top" | ||
overlay={ | ||
<Tooltip id={`${kebabCase(metricName)}-tooltip`} style={tooltipStyle}> | ||
{certifiedBy && <div>{t('Certified by %s', certifiedBy)}</div>} | ||
<div>{details}</div> | ||
</Tooltip> | ||
} | ||
> | ||
{/* TODO: move Icons to superset-ui to remove duplicated icon code here */} | ||
<svg | ||
xmlns="http://www.w3.org/2000/svg" | ||
enableBackground="new 0 0 24 24" | ||
height="16" | ||
viewBox="0 0 24 24" | ||
width="16" | ||
> | ||
<g> | ||
<path | ||
fill={supersetTheme.colors.primary.base} | ||
d="M23,12l-2.44-2.79l0.34-3.69l-3.61-0.82L15.4,1.5L12,2.96L8.6,1.5L6.71,4.69L3.1,5.5L3.44,9.2L1,12l2.44,2.79l-0.34,3.7 l3.61,0.82L8.6,22.5l3.4-1.47l3.4,1.46l1.89-3.19l3.61-0.82l-0.34-3.69L23,12z M9.38,16.01L7,13.61c-0.39-0.39-0.39-1.02,0-1.41 l0.07-0.07c0.39-0.39,1.03-0.39,1.42,0l1.61,1.62l5.15-5.16c0.39-0.39,1.03-0.39,1.42,0l0.07,0.07c0.39,0.39,0.39,1.02,0,1.41 l-5.92,5.94C10.41,16.4,9.78,16.4,9.38,16.01z" | ||
/> | ||
</g> | ||
</svg> | ||
</OverlayTrigger> | ||
); | ||
} | ||
|
||
export default CertifiedIconWithTooltip; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters