Skip to content

Commit 11d997b

Browse files
committed
make a copy url link with a toast
1 parent c9238ae commit 11d997b

File tree

1 file changed

+62
-11
lines changed

1 file changed

+62
-11
lines changed

src/components/rawl/editor/EditorSavingMenu.tsx

+62-11
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
import { faClipboard } from "@fortawesome/free-solid-svg-icons";
2-
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
31
import {
42
addDoc,
53
collection,
@@ -83,7 +81,7 @@ const VersionLinks = styled.div`
8381
`;
8482

8583
const VersionLink = styled.a<{ isActive: boolean }>`
86-
color: white;
84+
color: ${(props) => (props.isActive ? "white" : "gray")};
8785
text-decoration: ${(props) => (props.isActive ? "none" : "underline")};
8886
font-weight: ${(props) => (props.isActive ? "bold" : "normal")};
8987
cursor: pointer;
@@ -93,6 +91,39 @@ const VersionLink = styled.a<{ isActive: boolean }>`
9391
}
9492
`;
9593

94+
// Add these new styled components
95+
const ClickableLink = styled.div`
96+
color: #4a9eff;
97+
cursor: pointer;
98+
text-decoration: underline;
99+
display: inline-block;
100+
margin-bottom: 10px;
101+
102+
&:hover {
103+
opacity: 0.8;
104+
}
105+
`;
106+
107+
const ToastNotification = styled.div`
108+
background-color: #333;
109+
color: white;
110+
padding: 6px 12px;
111+
border-radius: 4px;
112+
font-size: 12px;
113+
position: absolute;
114+
margin-top: 5px;
115+
animation: fadeIn 0.3s;
116+
117+
@keyframes fadeIn {
118+
from {
119+
opacity: 0;
120+
}
121+
to {
122+
opacity: 1;
123+
}
124+
}
125+
`;
126+
96127
const EditorSavingMenu: React.FC<EditorSavingMenuProps> = ({
97128
score,
98129
initialSource,
@@ -109,6 +140,7 @@ const EditorSavingMenu: React.FC<EditorSavingMenuProps> = ({
109140
const [versions, setVersions] = useState<number>(version || 0);
110141
const [allVersionsContent, setAllVersionsContent] = useState<string[]>([]);
111142
const [documentUpdatedAt, setDocumentUpdatedAt] = useState<Date | null>(null);
143+
const [showToast, setShowToast] = useState(false);
112144

113145
// Get user from context instead of directly from Firebase
114146
const appContext = useContext(AppContext);
@@ -119,6 +151,17 @@ const EditorSavingMenu: React.FC<EditorSavingMenuProps> = ({
119151
return id ? `/ef/${id}` : slug ? `/e/${slug}` : "";
120152
};
121153

154+
// Initialize short link based on current ID and version
155+
useEffect(() => {
156+
if (id && version) {
157+
setShortLink(`/ef/${id}/${version}`);
158+
} else if (id) {
159+
setShortLink(`/ef/${id}`);
160+
} else if (slug) {
161+
setShortLink(`/e/${slug}`);
162+
}
163+
}, [id, slug, version]);
164+
122165
// Initialize component and fetch document details
123166
useEffect(() => {
124167
if (id) {
@@ -307,7 +350,12 @@ const EditorSavingMenu: React.FC<EditorSavingMenuProps> = ({
307350
if (shortLink) {
308351
const fullUrl = window.location.origin + shortLink;
309352
navigator.clipboard.writeText(fullUrl);
310-
alert("URL copied to clipboard!");
353+
setShowToast(true);
354+
355+
// Hide toast after 1 second
356+
setTimeout(() => {
357+
setShowToast(false);
358+
}, 1000);
311359
}
312360
};
313361

@@ -415,8 +463,9 @@ const EditorSavingMenu: React.FC<EditorSavingMenuProps> = ({
415463
</Button>
416464
</MenuRow>
417465

418-
{id && versions > 0 && (
466+
{id && versions > 1 && (
419467
<VersionLinks>
468+
Versions:
420469
{Array.from({ length: versions }, (_, i) => i + 1).map(
421470
(versionNumber) => (
422471
<VersionLink
@@ -432,12 +481,14 @@ const EditorSavingMenu: React.FC<EditorSavingMenuProps> = ({
432481
)}
433482

434483
{shortLink && (
435-
<MenuRow>
436-
<Input type="text" value={shortLink} readOnly />
437-
<Button onClick={handleCopyUrl}>
438-
<FontAwesomeIcon icon={faClipboard} /> Copy
439-
</Button>
440-
</MenuRow>
484+
<div style={{ position: "relative" }}>
485+
<ClickableLink onClick={handleCopyUrl}>
486+
{window.location.origin + shortLink}
487+
</ClickableLink>
488+
{showToast && (
489+
<ToastNotification>Copied to clipboard</ToastNotification>
490+
)}
491+
</div>
441492
)}
442493
</SavingMenuContainer>
443494
);

0 commit comments

Comments
 (0)