escrcpy/electron/events/handles/index.js

67 lines
1.5 KiB
JavaScript

import fs from 'fs-extra'
import { dialog, ipcMain, shell } from 'electron'
import themeHandles from './theme/index.js'
export default (mainWindow) => {
themeHandles(mainWindow)
ipcMain.handle(
'show-open-dialog',
async (event, { preset = '', ...options } = {}) => {
// console.log('options', options)
const res = await dialog
.showOpenDialog(options)
.catch(e => console.warn(e))
if (res.canceled) {
throw new Error('User cancel operation')
}
if (!res.filePaths.length) {
throw new Error('Get the directory or file path failure')
}
const filePaths = res.filePaths
switch (preset) {
case 'replaceFile':
await fs.copy(filePaths[0], options.filePath, { overwrite: true })
break
}
return filePaths
},
)
ipcMain.handle('open-path', async (event, pathValue) => {
return shell.openPath(pathValue)
})
ipcMain.handle('show-item-in-folder', async (event, filePath) => {
return shell.showItemInFolder(filePath)
})
ipcMain.handle(
'show-save-dialog',
async (event, { filePath = '', ...options } = {}) => {
const res = await dialog
.showSaveDialog({
...options,
})
.catch(e => console.warn(e))
if (res.canceled) {
throw new Error('User cancel operation')
}
if (!res.filePath) {
throw new Error('Failure to obtain the file path')
}
const destinationPath = res.filePath
await fs.copy(filePath, destinationPath)
},
)
}