Fix: clipboard paste timing (#191)

* fix(desktop): improve hotkey and paste functionality with refined key press timing

* fix(clipboard): streamline clipboard handling for macOS and add TODO for Windows/Linux support

* removed a comment
This commit is contained in:
Huakun 2025-02-22 07:21:15 -05:00 committed by GitHub
parent 330678cb45
commit 441abbcdae
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 17 additions and 13 deletions

View File

@ -1,6 +1,6 @@
{ {
"name": "@kksh/desktop", "name": "@kksh/desktop",
"version": "0.1.26", "version": "0.1.27",
"description": "", "description": "",
"type": "module", "type": "module",
"scripts": { "scripts": {

View File

@ -75,16 +75,23 @@ export async function updateAppHotkey(newHotkey: string[], oldHotkey?: string[]
* @param keys - The array of keys to press and release. * @param keys - The array of keys to press and release.
*/ */
export async function applyKeyComb(keys: userInput.Key[]) { export async function applyKeyComb(keys: userInput.Key[]) {
await Promise.all(keys.map((key) => userInput.key("KeyPress", key))) // await Promise.all(keys.map((key) => userInput.key("KeyPress", key)))
await sleep(50) for (const key of keys) {
await Promise.all(keys.map((key) => userInput.key("KeyRelease", key))) await userInput.key("KeyPress", key)
await sleep(20)
}
await sleep(100)
for (const key of keys) {
await userInput.key("KeyRelease", key)
await sleep(20)
}
} }
/** /**
* Simulates a paste operation based on the operating system. * Simulates a paste operation based on the operating system.
* On macOS, it uses Command+V. On Windows and Linux, it uses Shift+Insert. * On macOS, it uses Command+V. On Windows and Linux, it uses Shift+Insert.
*/ */
export function paste() { export async function paste() {
const _platform = os.platform() const _platform = os.platform()
if (_platform === "macos") { if (_platform === "macos") {
return applyKeyComb(["MetaLeft", "KeyV"]) return applyKeyComb(["MetaLeft", "KeyV"])

View File

@ -191,14 +191,11 @@
return Promise.reject(new Error("No data found")) return Promise.reject(new Error("No data found"))
} }
return writeToClipboard(data).then(async () => { return writeToClipboard(data).then(async () => {
if (_platform === "macos") { return app
// TODO: add support for Windows and Linux .hide()
return app .then(() => sleep(100))
.hide() .then(() => curWin.hide())
.then(() => sleep(100)) .then(() => paste())
.then(() => curWin.hide())
.then(() => paste())
}
}) })
}) })
.then(() => toast.success("Copied to clipboard")) .then(() => toast.success("Copied to clipboard"))