mirror of
https://github.com/viarotel-org/escrcpy.git
synced 2024-11-15 03:07:41 +01:00
57 lines
1.4 KiB
JavaScript
57 lines
1.4 KiB
JavaScript
import { resolve } from 'node:path'
|
|
import { contextBridge } from 'electron'
|
|
import { cloneDeep } from 'lodash-es'
|
|
|
|
export const isPackaged = process.env.IS_PACKAGED === 'true'
|
|
|
|
export const extraResolve = (value) => {
|
|
return isPackaged
|
|
? resolve(process.resourcesPath, `extra/${value}`)
|
|
: resolve(`electron/resources/extra/${value}`)
|
|
}
|
|
|
|
export const buildResolve = value =>
|
|
resolve(`electron/resources/build/${value}`)
|
|
|
|
export function exposeContext(key, value) {
|
|
if (process.contextIsolated) {
|
|
try {
|
|
contextBridge.exposeInMainWorld(key, value)
|
|
}
|
|
catch (error) {
|
|
console.error(error)
|
|
}
|
|
}
|
|
else {
|
|
window[key] = value
|
|
}
|
|
}
|
|
|
|
/**
|
|
* 创建一个代理对象,将目标对象的指定方法转发并执行。
|
|
*
|
|
* @param {object} targetObject - 目标对象,包含要代理的方法。
|
|
* @param {string[]} methodNames - 要代理的方法名称数组。
|
|
* @returns {object} - 代理对象,包含转发的方法。
|
|
*/
|
|
export function createProxy(targetObject, methodNames) {
|
|
return methodNames.reduce((proxyObj, methodName) => {
|
|
proxyObj[methodName] = (...args) =>
|
|
targetObject[methodName](...cloneDeep(args))
|
|
|
|
return proxyObj
|
|
}, {})
|
|
}
|
|
|
|
export async function executeI18n(mainWindow, value) {
|
|
try {
|
|
return await mainWindow.webContents.executeJavaScript(
|
|
`window.t('${value}')`,
|
|
)
|
|
}
|
|
catch (error) {
|
|
console.warn(error?.message || error)
|
|
return value
|
|
}
|
|
}
|