mirror of
https://github.com/SigNoz/signoz.git
synced 2026-04-30 15:40:27 +01:00
* fix(platform): fix semantic tokens and component upgrade issue in platform surfaces * fix: updated signozhq/ui version
52 lines
1.4 KiB
TypeScript
52 lines
1.4 KiB
TypeScript
import { Check, Copy } from '@signozhq/icons';
|
|
import { Badge, Button, Callout } from '@signozhq/ui';
|
|
import type { ServiceaccounttypesGettableFactorAPIKeyWithKeyDTO } from 'api/generated/services/sigNoz.schemas';
|
|
|
|
export interface KeyCreatedPhaseProps {
|
|
createdKey: ServiceaccounttypesGettableFactorAPIKeyWithKeyDTO;
|
|
hasCopied: boolean;
|
|
expiryLabel: string;
|
|
onCopy: () => void;
|
|
}
|
|
|
|
function KeyCreatedPhase({
|
|
createdKey,
|
|
hasCopied,
|
|
expiryLabel,
|
|
onCopy,
|
|
}: KeyCreatedPhaseProps): JSX.Element {
|
|
return (
|
|
<div className="add-key-modal__form">
|
|
<div className="add-key-modal__field">
|
|
<span className="add-key-modal__label">Key</span>
|
|
<div className="add-key-modal__key-display">
|
|
<span className="add-key-modal__key-text">{createdKey.key}</span>
|
|
<Button
|
|
variant="link"
|
|
color="secondary"
|
|
onClick={onCopy}
|
|
className="add-key-modal__copy-btn"
|
|
>
|
|
{hasCopied ? <Check size={12} /> : <Copy size={12} />}
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
|
|
<div className="add-key-modal__expiry-meta">
|
|
<span className="add-key-modal__expiry-label">Expiration</span>
|
|
<Badge color="vanilla">{expiryLabel}</Badge>
|
|
</div>
|
|
|
|
<div className="add-key-modal__callout-wrapper">
|
|
<Callout
|
|
type="info"
|
|
showIcon
|
|
title="Store the key securely. This is the only time it will be displayed."
|
|
/>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default KeyCreatedPhase;
|