You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
carbon/components/WindowControls.js

100 lines
2.6 KiB
JavaScript

import React from 'react'
import { useCopyTextHandler } from 'actionsack'
import { COLORS } from '../lib/constants'
import { Controls, ControlsBW, ControlsBoxy } from './svg/Controls'
import CopySVG from './svg/Copy'
import CheckMark from './svg/Checkmark'
const size = 24
const CopyButton = React.memo(function CopyButton({ text }) {
const { onClick, copied } = useCopyTextHandler(text)
return (
<button onClick={onClick} aria-label="Copy Button">
{copied ? (
<CheckMark color={COLORS.GRAY} width={size} height={size} />
) : (
<CopySVG size={size} color={COLORS.GRAY} />
)}
<style jsx>
{`
button {
border: none;
cursor: pointer;
color: ${COLORS.SECONDARY};
background: transparent;
}
&:active {
outline: none;
}
`}
</style>
</button>
)
})
const WINDOW_THEMES_MAP = { bw: <ControlsBW />, boxy: <ControlsBoxy /> }
export default function WindowControls({ theme, copyable, code, light }) {
return (
<div className="window-controls">
{WINDOW_THEMES_MAP[theme] || <Controls />}
<div className="window-title-container">
<input aria-label="Image Title" type="text" spellCheck="false" />
</div>
{copyable && (
<div className="copy-button">
<CopyButton text={code} />
</div>
)}
<style jsx>
{`
.window-controls {
margin-top: -24px;
position: relative;
top: ${theme === 'bw' ? 36 : 34}px;
margin-left: ${theme === 'bw' ? 16 : 14}px;
margin-right: ${theme === 'boxy' ? 16 : 0}px;
z-index: 2;
text-align: ${theme === 'boxy' ? 'right' : 'initial'};
}
.window-title-container {
position: absolute;
margin: 0px;
top: -3px;
left: -9px;
width: 100%;
text-align: center;
}
input {
width: 250px;
background: none;
outline: none;
border: none;
text-align: center;
/**
* 140px is an arbitrary value, but it's roughly equal to:
* 2 * (window theme width + window theme outside margin)
*/
max-width: calc(100% - 140px);
font-size: 14px;
color: ${light ? COLORS.BLACK : COLORS.SECONDARY};
}
.copy-button {
cursor: pointer;
position: absolute;
top: 0px;
right: 16px;
}
`}
</style>
</div>
)
}