From 747a92f7eb6b1a6a2e36d5d49c7330b81e43e020 Mon Sep 17 00:00:00 2001 From: lecepin <383810086@qq.com> Date: Fri, 20 May 2022 20:23:29 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E7=8A=B6=E6=80=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- electron/index.js | 13 ++--- package.json | 4 +- src/App.css | 38 -------------- src/App.jsx | 33 +++--------- src/App.less | 2 + src/fsm.js | 126 ++++++++++++++++++++++++++++++++++++++++++++++ src/index.css | 11 ---- src/index.js | 1 - 8 files changed, 142 insertions(+), 86 deletions(-) delete mode 100644 src/App.css create mode 100644 src/App.less create mode 100644 src/fsm.js delete mode 100644 src/index.css diff --git a/electron/index.js b/electron/index.js index 8e38b8c..eac6844 100644 --- a/electron/index.js +++ b/electron/index.js @@ -1,4 +1,4 @@ -import { app, BrowserWindow } from 'electron'; +import { app, BrowserWindow, Menu } from 'electron'; import log from 'electron-log'; import CONFIG from './const'; import { checkUpdate } from './utils'; @@ -8,7 +8,7 @@ import { installCert } from './cert'; app.commandLine.appendSwitch('--no-proxy-server'); function createWindow() { - // electron.Menu.setApplicationMenu(null); + Menu.setApplicationMenu(null); checkUpdate( 'https://cdn.jsdelivr.net/gh/lecepin/electron-react-tpl/package.json', 'https://github.com/lecepin/electron-react-tpl/releases', @@ -26,15 +26,8 @@ function createWindow() { }, }); - mainWindow.loadURL('https://baidu.com' ?? CONFIG.APP_START_URL); + mainWindow.loadURL(CONFIG.APP_START_URL); CONFIG.IS_DEV && mainWindow.webContents.openDevTools(); - installCert() - .then(data => { - console.log('install cert success', data); - }) - .catch(err => { - log.error('err', err); - }); } app.whenReady().then(() => { diff --git a/package.json b/package.json index 5accc21..f8af5ed 100644 --- a/package.json +++ b/package.json @@ -47,6 +47,7 @@ "webpack-cli": "^4.9.2" }, "dependencies": { + "@xstate/react": "^3.0.0", "axios": "^0.27.2", "electron-is-dev": "^2.0.0", "electron-log": "^4.4.7", @@ -57,7 +58,8 @@ "react-dom": "^18.1.0", "regedit": "^5.1.1", "semver": "^7.3.7", - "sudo-prompt": "^9.2.1" + "sudo-prompt": "^9.2.1", + "xstate": "^4.32.1" }, "author": "lecepin", "license": "ISC", diff --git a/src/App.css b/src/App.css deleted file mode 100644 index 74b5e05..0000000 --- a/src/App.css +++ /dev/null @@ -1,38 +0,0 @@ -.App { - text-align: center; -} - -.App-logo { - height: 40vmin; - pointer-events: none; -} - -@media (prefers-reduced-motion: no-preference) { - .App-logo { - animation: App-logo-spin infinite 20s linear; - } -} - -.App-header { - background-color: #282c34; - min-height: 100vh; - display: flex; - flex-direction: column; - align-items: center; - justify-content: center; - font-size: calc(10px + 2vmin); - color: white; -} - -.App-link { - color: #61dafb; -} - -@keyframes App-logo-spin { - from { - transform: rotate(0deg); - } - to { - transform: rotate(360deg); - } -} diff --git a/src/App.jsx b/src/App.jsx index c74eb8d..4819a8c 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -1,30 +1,13 @@ -import logo from './logo.png'; -import { shell } from 'electron'; -import './App.css'; +import { useMachine } from '@xstate/react'; +import fsm from './fsm'; + +import './App.less'; function App() { - return ( -
-
- logo -

- Edit src/App.js and save to reload. -

- { - e.preventDefault(); - shell.openExternal('https://github.com/lecepin/electron-react-tpl'); - }} - className="App-link" - href="#" - target="_blank" - rel="noopener noreferrer" - > - Open Github - -
-
- ); + const [state, send] = useMachine(fsm); + const {} = state.context; + + return
App
; } export default App; diff --git a/src/App.less b/src/App.less new file mode 100644 index 0000000..748abd5 --- /dev/null +++ b/src/App.less @@ -0,0 +1,2 @@ +.App { +} diff --git a/src/fsm.js b/src/fsm.js new file mode 100644 index 0000000..2fbbe7c --- /dev/null +++ b/src/fsm.js @@ -0,0 +1,126 @@ +import { createMachine } from 'xstate'; +import { ipcRenderer } from 'electron'; + +export default createMachine( + { + id: '微信视频号下载工具', + context: {}, + initial: '检测初始化', + states: { + 检测初始化: { + id: '检测初始化', + invoke: { + src: 'invoke_初始化信息', + }, + on: { + e_初始化完成: { + target: '初始化完成', + }, + e_未初始化: { + target: '未初始化', + }, + }, + }, + 未初始化: { + initial: '空闲', + on: { + e_重新检测: { + target: '检测初始化', + }, + }, + states: { + 空闲: { + on: { + e_开始初始化: { + target: '开始初始化', + }, + }, + }, + 开始初始化: { + invoke: { + src: 'invoke_开始初始化', + }, + }, + }, + }, + + 初始化完成: { + initial: '空闲', + id: '初始化完成', + on: { + e_视频捕获: { + actions: 'action_视频捕获', + }, + }, + states: { + 空闲: { + on: { + e_下载: { + target: '下载', + }, + e_预览: { + target: '预览', + }, + e_改变规则: { + actions: 'action_改变规则', + }, + }, + }, + 下载: { + initial: '选择位置', + states: { + 选择位置: { + on: { + e_确认位置: { target: '下载中' }, + e_取消: { target: '#初始化完成.空闲' }, + }, + }, + 下载中: { + on: { + e_进度变化: { + actions: 'action_进度变化', + }, + e_下载完成: { + target: '下载完成', + }, + e_下载失败: { + target: '#初始化完成.空闲', + actions: 'action_下载失败', + }, + }, + }, + 下载完成: { + on: { + e_取消: { target: '#初始化完成.空闲' }, + e_打开文件位置: { + actions: 'action_打开文件位置', + }, + }, + }, + }, + }, + 预览: { + on: { + e_关闭: { + target: '空闲', + }, + }, + }, + }, + }, + }, + }, + { + services: { + invoke_初始化信息: (context, event) => send => {}, + invoke_开始初始化: (context, event) => send => {}, + }, + actions: { + action_视频捕获: (context, event) => {}, + action_改变规则: (context, event) => {}, + action_进度变化: (context, event) => {}, + action_下载失败: (context, event) => {}, + action_打开文件位置: (context, event) => {}, + }, + }, +); diff --git a/src/index.css b/src/index.css deleted file mode 100644 index 89e57c7..0000000 --- a/src/index.css +++ /dev/null @@ -1,11 +0,0 @@ -body { - margin: 0; - font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', - 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -code { - font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', monospace; -} diff --git a/src/index.js b/src/index.js index dac4ede..65a8dbf 100644 --- a/src/index.js +++ b/src/index.js @@ -1,6 +1,5 @@ import React from 'react'; import ReactDOM from 'react-dom/client'; -import './index.css'; import App from './App'; const root = ReactDOM.createRoot(document.getElementById('root'));