From 467d2de97ae0c07320eb4b6bd13caf681b9e2180 Mon Sep 17 00:00:00 2001 From: lecepin <383810086@qq.com> Date: Sat, 2 Dec 2023 21:58:10 +0800 Subject: [PATCH] feat: fmt --- electron/ipc.js | 5 +++-- electron/proxyServer.js | 21 ++++++++------------- package.json | 2 +- src/App.jsx | 16 +++------------- src/fsm.js | 25 +++++++++++++++++-------- 5 files changed, 32 insertions(+), 37 deletions(-) diff --git a/electron/ipc.js b/electron/ipc.js index 17d1d47..df195f9 100644 --- a/electron/ipc.js +++ b/electron/ipc.js @@ -36,9 +36,10 @@ export default function initIPC() { }); ipcMain.handle('invoke_下载视频', async (event, { url, decodeKey, savePath }) => { - console.log(url,decodeKey); + console.log(url, decodeKey); return downloadFile( - url,decodeKey, + url, + decodeKey, `${savePath}/${Date.now()}.mp4`, throttle(value => win?.webContents?.send?.('e_进度变化', value), 1000), ).catch(err => { diff --git a/electron/proxyServer.js b/electron/proxyServer.js index 5315dc7..d7bc2a1 100644 --- a/electron/proxyServer.js +++ b/electron/proxyServer.js @@ -11,8 +11,7 @@ if (process.platform === 'win32') { process.env.OPENSSL_CONF = CONFIG.OPEN_SSL_CNF_PATH; } - -const injection_script =` +const injection_script = ` (function () { if (window.wvds !== undefined) { return @@ -68,11 +67,7 @@ const injection_script =` })() `; - -export async function startServer({ - win, - setProxyErrorCallback = f => f, -}) { +export async function startServer({ win, setProxyErrorCallback = f => f }) { const port = await getPort(); return new Promise(async (resolve, reject) => { @@ -99,12 +94,12 @@ export async function startServer({ { phase: 'request', hostname: 'aaaa.com', - as: 'json' + as: 'json', }, (req, res) => { - res.string = "ok"; + res.string = 'ok'; res.statusCode = 200; - win?.webContents?.send?.('VIDEO_CAPTURE', req.json) + win?.webContents?.send?.('VIDEO_CAPTURE', req.json); }, ); @@ -112,11 +107,11 @@ export async function startServer({ { phase: 'response', hostname: 'res.wx.qq.com', - as: "string" + as: 'string', }, async (req, res) => { - if (req.url.includes("polyfills.publish")) { - res.string = res.string + "\n" + injection_script; + if (req.url.includes('polyfills.publish')) { + res.string = res.string + '\n' + injection_script; } }, ); diff --git a/package.json b/package.json index 44f2de9..427d81d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "wechat-video-downloader", - "version": "1.0.1", + "version": "2.0.0", "description": "", "main": "./build-electron/index.js", "homepage": "./", diff --git a/src/App.jsx b/src/App.jsx index fd706b5..4c9e896 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -61,7 +61,7 @@ function App() { dataIndex: 'action', key: 'action', width: '210px', - render: (_, { url, decodeKey, hdUrl, fixUrl, fullFileName, }) => ( + render: (_, { url, decodeKey, hdUrl, fixUrl, fullFileName }) => (
{fullFileName ? ( )} -     -
), }, diff --git a/src/fsm.js b/src/fsm.js index 678e85d..6888755 100644 --- a/src/fsm.js +++ b/src/fsm.js @@ -162,7 +162,7 @@ export default createMachine( }, invoke_启动服务: (context, event) => send => { const fnDealVideoCapture = (eName, { url, size, description, decode_key, ...other }) => { - send({ type: 'e_视频捕获', url, size, description, decodeKey: decode_key, ...other }); + send({ type: 'e_视频捕获', url, size, description, decodeKey: decode_key, ...other }); }; ipcRenderer @@ -218,19 +218,28 @@ export default createMachine( }, }, actions: { - action_视频捕获: actions.assign(({ captureList }, { url, size, description, decodeKey, ...other }) => { - captureList.push({ size, url, prettySize: prettyBytes(+size), description, decodeKey, ...other }); + action_视频捕获: actions.assign( + ({ captureList }, { url, size, description, decodeKey, ...other }) => { + captureList.push({ + size, + url, + prettySize: prettyBytes(+size), + description, + decodeKey, + ...other, + }); - return { - captureList: uniqBy(captureList, 'url'), - }; - }), + return { + captureList: uniqBy(captureList, 'url'), + }; + }, + ), action_清空捕获记录: actions.assign(() => { return { captureList: [], }; }), - action_设置当前地址: actions.assign((_, { url,decodeKey }) => { + action_设置当前地址: actions.assign((_, { url, decodeKey }) => { return { currentUrl: url, decodeKey: decodeKey,