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",
"version": "0.1.26",
"version": "0.1.27",
"description": "",
"type": "module",
"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.
*/
export async function applyKeyComb(keys: userInput.Key[]) {
await Promise.all(keys.map((key) => userInput.key("KeyPress", key)))
await sleep(50)
await Promise.all(keys.map((key) => userInput.key("KeyRelease", key)))
// await Promise.all(keys.map((key) => userInput.key("KeyPress", key)))
for (const key of keys) {
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.
* 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()
if (_platform === "macos") {
return applyKeyComb(["MetaLeft", "KeyV"])

View File

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