1
- import { faClipboard } from "@fortawesome/free-solid-svg-icons" ;
2
- import { FontAwesomeIcon } from "@fortawesome/react-fontawesome" ;
3
1
import {
4
2
addDoc ,
5
3
collection ,
@@ -83,7 +81,7 @@ const VersionLinks = styled.div`
83
81
` ;
84
82
85
83
const VersionLink = styled . a < { isActive : boolean } > `
86
- color: white;
84
+ color: ${ ( props ) => ( props . isActive ? " white" : "gray" ) } ;
87
85
text-decoration: ${ ( props ) => ( props . isActive ? "none" : "underline" ) } ;
88
86
font-weight: ${ ( props ) => ( props . isActive ? "bold" : "normal" ) } ;
89
87
cursor: pointer;
@@ -93,6 +91,39 @@ const VersionLink = styled.a<{ isActive: boolean }>`
93
91
}
94
92
` ;
95
93
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
+
96
127
const EditorSavingMenu : React . FC < EditorSavingMenuProps > = ( {
97
128
score,
98
129
initialSource,
@@ -109,6 +140,7 @@ const EditorSavingMenu: React.FC<EditorSavingMenuProps> = ({
109
140
const [ versions , setVersions ] = useState < number > ( version || 0 ) ;
110
141
const [ allVersionsContent , setAllVersionsContent ] = useState < string [ ] > ( [ ] ) ;
111
142
const [ documentUpdatedAt , setDocumentUpdatedAt ] = useState < Date | null > ( null ) ;
143
+ const [ showToast , setShowToast ] = useState ( false ) ;
112
144
113
145
// Get user from context instead of directly from Firebase
114
146
const appContext = useContext ( AppContext ) ;
@@ -119,6 +151,17 @@ const EditorSavingMenu: React.FC<EditorSavingMenuProps> = ({
119
151
return id ? `/ef/${ id } ` : slug ? `/e/${ slug } ` : "" ;
120
152
} ;
121
153
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
+
122
165
// Initialize component and fetch document details
123
166
useEffect ( ( ) => {
124
167
if ( id ) {
@@ -307,7 +350,12 @@ const EditorSavingMenu: React.FC<EditorSavingMenuProps> = ({
307
350
if ( shortLink ) {
308
351
const fullUrl = window . location . origin + shortLink ;
309
352
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 ) ;
311
359
}
312
360
} ;
313
361
@@ -415,8 +463,9 @@ const EditorSavingMenu: React.FC<EditorSavingMenuProps> = ({
415
463
</ Button >
416
464
</ MenuRow >
417
465
418
- { id && versions > 0 && (
466
+ { id && versions > 1 && (
419
467
< VersionLinks >
468
+ Versions:
420
469
{ Array . from ( { length : versions } , ( _ , i ) => i + 1 ) . map (
421
470
( versionNumber ) => (
422
471
< VersionLink
@@ -432,12 +481,14 @@ const EditorSavingMenu: React.FC<EditorSavingMenuProps> = ({
432
481
) }
433
482
434
483
{ 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 >
441
492
) }
442
493
</ SavingMenuContainer >
443
494
) ;
0 commit comments