mirror of
https://github.com/kunkunsh/kunkun.git
synced 2025-04-03 22:26:43 +00:00
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:
parent
330678cb45
commit
441abbcdae
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@kksh/desktop",
|
||||
"version": "0.1.26",
|
||||
"version": "0.1.27",
|
||||
"description": "",
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
|
@ -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"])
|
||||
|
@ -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"))
|
||||
|
Loading…
x
Reference in New Issue
Block a user