import React, { useRef } from 'react';
import PropTypes from 'prop-types';
import copy from 'copy-to-clipboard';
import { IconButton, FontSizes, TooltipHost } from '@fluentui/react';
import { TOOLTIP_BACKGROUND_COLOR } from '@static/const';
const COPIED_TOOLTIP_CLOSE_DELAY = 1000;
const CopyButton = ({ value, hideTooltip }): any => {
const ref = useRef(null);
return (
): void => {
event.stopPropagation();
copy(value);
ref.current && (ref as any).current.show();
setTimeout(() => {
ref.current !== null && (ref as any).current.dismiss();
}, COPIED_TOOLTIP_CLOSE_DELAY);
}}
onMouseDown={(e): void => {
e.stopPropagation();
}}
onMouseUp={(e): void => {
e.stopPropagation();
}}
/>
);
};
CopyButton.propTypes = {
value: PropTypes.string.isRequired,
hideTooltip: PropTypes.bool
};
export default CopyButton;