-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: copy shortlink micro interaction #178
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -1,28 +1,45 @@ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
'use client' | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
import { CopyIcon } from 'lucide-react' | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
import { Check, CopyIcon, LoaderCircle } from 'lucide-react' | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
import { shorten } from '@/app/actions' | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
import { useAsyncFn } from 'react-use' | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
import { cn } from '@/lib/utils' | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
export default function Shortlink() { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// for local dev | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const url = window.location.href.replace( | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
'http://localhost:3000', | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
'https://dev.masterbots.ai' | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
'https://alpha.masterbots.ai' | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const [shortlink, getShortlink] = useAsyncFn(async () => { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const formData = new FormData() | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
formData.set('url', url) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const { shortLink } = await shorten({}, formData) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return navigator.clipboard.writeText(shortLink).then(() => shortLink) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Comment on lines
+15
to
+20
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ensure proper error handling in the asynchronous function used to fetch and copy the short link. const [shortlink, getShortlink] = useAsyncFn(async () => {
try {
const formData = new FormData();
formData.set('url', url);
const { shortLink } = await shorten({}, formData);
await navigator.clipboard.writeText(shortLink);
return shortLink;
} catch (error) {
console.error('Failed to fetch and copy shortlink:', error);
throw error; // or handle error appropriately
}
}); Committable suggestion
Suggested change
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const handleIconClick = async (e: any) => { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// Stop propagation to prevent form submission when clicking on the icon | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
e.preventDefault() | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
e.stopPropagation() | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const formData = new FormData() | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
formData.set('url', url) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const { shortLink } = await shorten({}, formData) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
navigator.clipboard | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
.writeText(shortLink) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
.then(() => { console.log('Shortlink copied to clipboard'); }) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
.catch(error => | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
{ console.error('Error copying shortlink to clipboard: ', error); } | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
getShortlink() | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return <CopyIcon className="pointer" onClick={handleIconClick} size={15} /> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const Icon = shortlink.value | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
? Check | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
: shortlink.loading | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
? LoaderCircle | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
: CopyIcon | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return ( | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
<Icon | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
className={cn( | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
'pointer transition-all', | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
shortlink.loading && 'animate-spin' | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
)} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
onClick={handleIconClick} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
size={15} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
/> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Comment on lines
+29
to
+43
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The dynamic icon switching logic is clear and concise. However, consider adding a tooltip or aria-label for accessibility, providing context about the icon's function. <Icon
className={cn('pointer transition-all', shortlink.loading && 'animate-spin')}
onClick={handleIconClick}
size={15}
+ aria-label={shortlink.value ? 'Copy successful' : shortlink.loading ? 'Loading' : 'Copy link'}
/> Committable suggestion
Suggested change
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} |
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -50,7 +50,7 @@ | |||||
"framer-motion": "^10.16.12", | ||||||
"geist": "^1.1.0", | ||||||
"lodash": "^4.17.21", | ||||||
"lucide-react": "^0.297.0", | ||||||
"lucide-react": "latest", | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Using the "latest" tag for - "lucide-react": "latest",
+ "lucide-react": "^current.stable.version", Committable suggestion
Suggested change
|
||||||
"nanoid": "^3.0.0", | ||||||
"next": "latest", | ||||||
"next-themes": "^0.2.1", | ||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Consider grouping imports from the same module to clean up the import statements.
Committable suggestion