forked from muhamadzolfaghari/ladder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGeminiTools.tsx
170 lines (164 loc) · 5.45 KB
/
GeminiTools.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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
import ShareOutlinedIcon from "@mui/icons-material/ShareOutlined";
import TuneOutlinedIcon from "@mui/icons-material/TuneOutlined";
import googleicon from "../../public/icons/google-icon.svg";
import ContentCopyOutlinedIcon from "@mui/icons-material/ContentCopyOutlined";
import {
Box,
IconButton,
ListItemIcon,
MenuItem,
MenuList,
SvgIcon,
Typography,
Menu,
Popover,
} from "@mui/material";
import EmailOutlinedIcon from '@mui/icons-material/EmailOutlined';
import BeachAccessOutlinedIcon from '@mui/icons-material/BeachAccessOutlined';
import ShortTextIcon from '@mui/icons-material/ShortText';
import FeedOutlinedIcon from '@mui/icons-material/FeedOutlined';
import NotesIcon from '@mui/icons-material/Notes';
import DownloadDoneIcon from '@mui/icons-material/DownloadDone';
import WorkOutlineOutlinedIcon from '@mui/icons-material/WorkOutlineOutlined';
import Image from "next/image";
import Link from "next/link";
import { useState } from "react";
import flag from "../../public/icons/flag.svg";
interface CopyToClipboardProps {
text: string;
}
function GeminiTools({ text }: CopyToClipboardProps) {
const [menuAnchorEl, setMenuAnchorEl] = useState<null | HTMLElement>(null);
const [menu, setMenu] = useState<string | null>(null);
const openMenu = (event: React.MouseEvent<HTMLElement>, menuName: string) => {
setMenuAnchorEl(event.currentTarget);
setMenu((prevMenu) => (prevMenu === menuName ? null : menuName));
};
const handleCopy = async () => {
try {
await navigator.clipboard.writeText(text);
alert("Text copied to clipboard");
} catch (err) {
console.error("Failed to copy: ", err);
}
};
return (
<Box
width={50}
gap={4}
sx={{ display: "flex", justifyContent: "space-around", marginTop: 2 }}
alignContent="center"
>
<IconButton onClick={handleCopy}>
<ContentCopyOutlinedIcon />
</IconButton>
<Box alignItems="center" display="flex">
<Link href="/" passHref>
<Image width={24} height={24} src={googleicon.src} alt="G-MAIL" />
</Link>
</Box>
<Box>
<IconButton
onClick={(event) => openMenu(event, 'tune')}
aria-controls={menu === 'tune' ? 'tune-menu' : undefined}
aria-haspopup="true"
>
<TuneOutlinedIcon sx={{ transform: "rotate(90deg)" }} />
</IconButton>
<Popover
id="tune-menu"
anchorEl={menuAnchorEl}
open={menu === 'tune'}
onClose={() => setMenu(null)}
anchorOrigin={{
vertical: 'top',
horizontal: 'left',
}}
transformOrigin={{
vertical: 'bottom',
horizontal: 'left',
}}
>
<MenuList>
<MenuItem onClick={() => setMenu(null)}>
<ListItemIcon>
<ShortTextIcon fontSize="small" />
</ListItemIcon>
<Typography variant="inherit">Shorter</Typography>
</MenuItem>
<MenuItem onClick={() => setMenu(null)}>
<ListItemIcon>
<NotesIcon fontSize="small"/>
</ListItemIcon>
<Typography variant="inherit">Longer</Typography>
</MenuItem>
<MenuItem onClick={() => setMenu(null)}>
<ListItemIcon>
<DownloadDoneIcon fontSize="small"/>
</ListItemIcon>
<Typography variant="inherit" noWrap>
Simpler
</Typography>
</MenuItem>
<MenuItem onClick={() => setMenu(null)}>
<ListItemIcon>
<BeachAccessOutlinedIcon fontSize="small"/>
</ListItemIcon>
<Typography variant="inherit" noWrap>
Less formal
</Typography>
</MenuItem>
<MenuItem onClick={() => setMenu(null)}>
<ListItemIcon>
<WorkOutlineOutlinedIcon fontSize="small"/>
</ListItemIcon>
<Typography variant="inherit" noWrap>
professional
</Typography>
</MenuItem>
</MenuList>
</Popover>
</Box>
<Box>
<IconButton
onClick={(event) => openMenu(event, 'share')}
aria-controls={menu === 'share' ? 'share-menu' : undefined}
aria-haspopup="true"
>
<ShareOutlinedIcon />
</IconButton>
<Popover
id="share-menu"
anchorEl={menuAnchorEl}
open={menu === 'share'}
onClose={() => setMenu(null)}
anchorOrigin={{
vertical: 'top',
horizontal: 'left',
}}
transformOrigin={{
vertical: 'bottom',
horizontal: 'left',
}}
>
<MenuList>
<MenuItem onClick={() => setMenu(null)}>
<ListItemIcon>
<FeedOutlinedIcon fontSize="small" />
</ListItemIcon>
<Typography variant="inherit">Export to document</Typography>
</MenuItem>
<MenuItem onClick={() => setMenu(null)}>
<ListItemIcon><EmailOutlinedIcon fontSize="small"/></ListItemIcon>
<Typography variant="inherit">Draft in Gmail</Typography>
</MenuItem>
</MenuList>
</Popover>
</Box>
<IconButton>
<Image src={flag.src} width={24} height={24} alt="flag" />
</IconButton>
</Box>
);
}
export default GeminiTools;