-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathFormatter.tsx
125 lines (122 loc) · 2.93 KB
/
Formatter.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
import {
Box,
Button,
Flex,
Icon,
IconButton,
Text,
useBreakpointValue,
useClipboard,
useToast,
} from '@chakra-ui/react';
import { CloseIcon, CopyIcon } from '@chakra-ui/icons';
import CodeEditor from '@/components/CodeEditor';
import CodeDisplay from '@/components/CodeDisplay';
import { OnChange } from '@monaco-editor/react';
interface Props {
language: string;
unformattedCode: string;
formattedCode: string;
handleChange: OnChange;
clearData: VoidFunction;
pasteCode: VoidFunction;
}
export default function Formatter({
language,
formattedCode,
unformattedCode,
handleChange,
clearData,
pasteCode,
}: Props) {
const { onCopy } = useClipboard(formattedCode);
const buttonSize = useBreakpointValue({ base: 'md', lg: 'lg' });
const toast = useToast({
title: 'Code copied!',
status: 'success',
isClosable: true,
variant: 'top-accent',
position: 'bottom',
});
return (
<Box
maxW={'full'}
boxShadow={'2xl'}
rounded={'md'}
p={6}
overflow={'hidden'}
mt='12'
>
<Flex gap={2} direction={'column'}>
<Box flex={2}>
<Flex justify='space-between' align='center' mb='3'>
<Text fontSize={'xl'} mb='2'>
Input Code
</Text>
<Flex gap={2}>
<Button
colorScheme='teal'
size={buttonSize}
gap={2}
onClick={pasteCode}
>
<PasteIcon />
Paste
</Button>
<IconButton
size={buttonSize}
colorScheme='teal'
aria-label='clear'
onClick={clearData}
>
<CloseIcon />
</IconButton>
</Flex>
</Flex>
<CodeEditor
language={language}
code={unformattedCode}
handleChange={handleChange}
/>
</Box>
<Box flex={1}>
<Flex justify='space-between' align='center' my='3'>
<Text fontSize={'xl'} mb='2'>
Formatted Code
</Text>
<Button
colorScheme='teal'
size={buttonSize}
gap={2}
onClick={() => {
onCopy();
toast();
}}
>
<CopyIcon />
Copy
</Button>
</Flex>
<CodeDisplay language={language} code={formattedCode} />
</Box>
</Flex>
</Box>
);
}
const PasteIcon = () => (
<Icon
w='6'
h='6'
fill='none'
stroke='currentColor'
viewBox='0 0 24 24'
xmlns='http://www.w3.org/2000/svg'
>
<path
strokeLinecap='round'
strokeLinejoin='round'
strokeWidth={2}
d='M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2'
/>
</Icon>
);