-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4cb034f
commit cdf65db
Showing
3 changed files
with
134 additions
and
4 deletions.
There are no files selected for viewing
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,72 @@ | ||
import cn from 'classnames' | ||
import { createUseStyles } from 'react-jss' | ||
import { faCopy } from '@fortawesome/pro-regular-svg-icons' | ||
import { generateThemedControlsStyles } from './utils' | ||
import { IconButton } from 'components/IconButton' | ||
import { Tooltip } from 'components/Tooltip' | ||
import React, { FC } from 'react' | ||
import { styleguide, ThemeType } from 'components/assets/styles' | ||
|
||
const { borderRadius, spacing } = styleguide | ||
|
||
const { light, dark } = ThemeType | ||
|
||
const useStyles = createUseStyles({ | ||
codeControls: { | ||
...generateThemedControlsStyles(light), | ||
borderRadius, | ||
padding: `${spacing.xs}px ${spacing.s}px`, | ||
position: 'absolute', | ||
right: spacing['s+'] | ||
}, | ||
iconButton: { | ||
padding: { | ||
left: spacing.s, | ||
right: spacing.s | ||
} | ||
}, | ||
// eslint-disable-next-line sort-keys | ||
'@global': { | ||
[`.${dark}`]: { | ||
'& $codeControls': generateThemedControlsStyles(dark) | ||
} | ||
} | ||
}) | ||
|
||
// This is left as an object so more controls (e.g. download) can be added later | ||
export interface DisplayCodeControls { | ||
copy?: boolean | ||
} | ||
|
||
interface Props { | ||
classes?: string[] | ||
displayControls?: DisplayCodeControls | ||
isCopied?: boolean | ||
onClickCopyCode: () => void | ||
} | ||
|
||
export const CodeControls: FC<Props> = ({ | ||
classes = [], | ||
displayControls = {}, | ||
isCopied = false, | ||
onClickCopyCode | ||
}: Props) => { | ||
const compClasses = useStyles() | ||
|
||
const { copy = true } = displayControls | ||
|
||
return ( | ||
<div className={cn(compClasses.codeControls, classes)}> | ||
{copy && ( | ||
<Tooltip placement='top' title={isCopied ? 'Copied!' : 'Copy'}> | ||
<IconButton | ||
classes={[compClasses.iconButton]} | ||
icon={faCopy} | ||
onClick={onClickCopyCode} | ||
size={14} | ||
/> | ||
</Tooltip> | ||
)} | ||
</div> | ||
) | ||
} |
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
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