* Add folder for api settings * Init create api key page * Update create api key page * Implement api call to create apiKey * Add create api key mutation * Get id when creating apiKey * Display created Api Key * Add delete api key button * Remove button from InputText * Update stuff * Add test for ApiDetail * Fix type * Use recoil instead of router state * Remane route paths * Remove online return * Move and test date util * Remove useless Component * Rename ApiKeys paths * Rename ApiKeys files * Add input text info testing * Rename hooks to webhooks * Remove console error * Add tests to reach minimum coverage
52 lines
1.4 KiB
TypeScript
52 lines
1.4 KiB
TypeScript
import { useTheme } from '@emotion/react';
|
|
import styled from '@emotion/styled';
|
|
|
|
import { IconCopy } from '@/ui/display/icon';
|
|
import { useSnackBar } from '@/ui/feedback/snack-bar/hooks/useSnackBar';
|
|
import { Button } from '@/ui/input/button/components/Button';
|
|
import { TextInput } from '@/ui/input/components/TextInput';
|
|
import { beautifyDateDiff } from '~/utils/date-utils';
|
|
|
|
const StyledContainer = styled.div`
|
|
display: flex;
|
|
flex-direction: row;
|
|
`;
|
|
|
|
const StyledLinkContainer = styled.div`
|
|
flex: 1;
|
|
margin-right: ${({ theme }) => theme.spacing(2)};
|
|
`;
|
|
|
|
type ApiKeyInputProps = { expiresAt?: string | null; apiKey: string };
|
|
|
|
export const ApiKeyInput = ({ expiresAt, apiKey }: ApiKeyInputProps) => {
|
|
const theme = useTheme();
|
|
const computeInfo = () => {
|
|
if (!expiresAt) {
|
|
return '';
|
|
}
|
|
return `This key will expire in ${beautifyDateDiff(expiresAt)}`;
|
|
};
|
|
|
|
const { enqueueSnackBar } = useSnackBar();
|
|
return (
|
|
<StyledContainer>
|
|
<StyledLinkContainer>
|
|
<TextInput info={computeInfo()} value={apiKey} fullWidth />
|
|
</StyledLinkContainer>
|
|
<Button
|
|
Icon={IconCopy}
|
|
title="Copy"
|
|
onClick={() => {
|
|
enqueueSnackBar('Api Key copied to clipboard', {
|
|
variant: 'success',
|
|
icon: <IconCopy size={theme.icon.size.md} />,
|
|
duration: 2000,
|
|
});
|
|
navigator.clipboard.writeText(apiKey);
|
|
}}
|
|
/>
|
|
</StyledContainer>
|
|
);
|
|
};
|