Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/rich-moles-compare.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@nextui-org/use-clipboard": patch
---

Fix clipboard get different unicode whitespace (#4225)
29 changes: 3 additions & 26 deletions packages/components/snippet/stories/snippet.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -92,32 +92,9 @@ export const MultiLine = {
args: {
...defaultProps,
children: [
// "npm install @nextui-org/react",
// "yarn add @nextui-org/react",
// "pnpm add @nextui-org/react",
`
{
"name": "Next.js PWA",
"short_name": "NextPWA",
"description": "A Progressive Web App built with Next.js and React",
"start_url": "/",
"display": "standalone",
"background_color": "#ffffff",
"theme_color": "#000000",
"icons": [
{
"src": "/icon-192x192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "/icon-512x512.png",
"sizes": "512x512",
"type": "image/png"
}
]
}
`,
"npm install @nextui-org/react",
"yarn add @nextui-org/react",
"pnpm add @nextui-org/react",
Comment thread
winchesHe marked this conversation as resolved.
],
},
};
10 changes: 9 additions & 1 deletion packages/hooks/use-clipboard/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@ export interface UseClipboardProps {
timeout?: number;
}

const transformValue = (text: string) => {
// Manually replace all   to avoid get different unicode characters;
return text.replace(/[\u00A0]/g, " ");
};

/**
* Copies the given text to the clipboard.
* @param {number} timeout - timeout in ms, default 2000
Expand Down Expand Up @@ -36,8 +41,11 @@ export function useClipboard({timeout = 2000}: UseClipboardProps = {}) {
const copy = useCallback(
(valueToCopy: any) => {
if ("clipboard" in navigator) {
const transformedValue =
typeof valueToCopy === "string" ? transformValue(valueToCopy) : valueToCopy;

navigator.clipboard
.writeText(valueToCopy)
.writeText(transformedValue)
.then(() => handleCopyResult(true))
.catch((err) => setError(err));
} else {
Expand Down