1
+ import { remote } from 'electron'
2
+ import path from 'path'
3
+ import fse from 'fs-extra'
4
+ import execa from 'execa'
5
+ import debugFactory from 'debug'
1
6
import React , { useState , useCallback , useRef } from 'react'
2
7
import { Button , Modal , Input , message , Tooltip } from 'antd'
3
8
import { useMount , usePersistFn , useUpdateEffect } from 'ahooks'
@@ -10,8 +15,10 @@ import Yaml from 'js-yaml'
10
15
import styles from './index.module.less'
11
16
import { List , Space , Form , Select } from 'antd'
12
17
const { Option} = Select
18
+ const debug = debugFactory ( 'app:libraryRuleList' )
13
19
14
20
const namespace = 'libraryRuleList'
21
+ const TEMP_EDITING_FILE = path . join ( remote . app . getPath ( 'userData' ) , 'temp' , '临时文件-关闭生效.yml' )
15
22
16
23
export default function LibraryRuleList ( ) {
17
24
const { effects, state} = usePlug ( {
@@ -214,6 +221,7 @@ function ModalAdd({visible, setVisible, editItem, editItemIndex, editMode}) {
214
221
}
215
222
216
223
const handleCancel = useCallback ( ( ) => {
224
+ if ( editInEditorMaskVisible ) return
217
225
setVisible ( false )
218
226
clean ( )
219
227
} , [ ] )
@@ -296,6 +304,39 @@ function ModalAdd({visible, setVisible, editItem, editItemIndex, editMode}) {
296
304
[ form ]
297
305
)
298
306
307
+ const [ editInEditorMaskVisible , setEditInEditorMaskVisible ] = useState ( false )
308
+ const editInEditor = usePersistFn ( async ( editor = 'code' ) => {
309
+ const content = form . getFieldValue ( 'content' )
310
+ await fse . outputFile ( TEMP_EDITING_FILE , content , 'utf8' )
311
+
312
+ // wait edit
313
+ setEditInEditorMaskVisible ( true )
314
+ let execResults
315
+ const cmd = `${ editor } --wait '${ TEMP_EDITING_FILE } '`
316
+ try {
317
+ execResults = await execa . command ( cmd , { shell : true } )
318
+ } catch ( e ) {
319
+ message . error ( '执行命令出错: ' + e . message )
320
+ return
321
+ } finally {
322
+ setEditInEditorMaskVisible ( false )
323
+ }
324
+
325
+ debug ( 'exec: %o' , { cmd, execResults} )
326
+ const { exitCode} = execResults || { }
327
+ if ( exitCode !== 0 ) {
328
+ message . error ( `执行命令出错: exitCode = ${ exitCode } ` )
329
+ return
330
+ }
331
+
332
+ // read & set
333
+ const newContent = await fse . readFile ( TEMP_EDITING_FILE , 'utf8' )
334
+ if ( newContent !== content ) {
335
+ form . setFieldsValue ( { content : newContent } )
336
+ message . success ( '文件内容已更新' )
337
+ }
338
+ } )
339
+
299
340
return (
300
341
< Modal
301
342
className = { styles . modal }
@@ -317,11 +358,23 @@ function ModalAdd({visible, setVisible, editItem, editItemIndex, editMode}) {
317
358
/>
318
359
) }
319
360
320
- < Button onClick = { handleAddRuleChrome } > 从 Chrome 添加规则</ Button >
361
+ < Space direction = 'horizontal' >
362
+ < Button disabled = { editInEditorMaskVisible } onClick = { handleAddRuleChrome } >
363
+ 从 Chrome 添加规则
364
+ </ Button >
365
+ < Button disabled = { editInEditorMaskVisible } onClick = { ( ) => editInEditor ( 'code' ) } >
366
+ 使用 vscode 编辑
367
+ </ Button >
368
+ < Button disabled = { editInEditorMaskVisible } onClick = { ( ) => editInEditor ( 'atom' ) } >
369
+ 使用 Atom 编辑
370
+ </ Button >
371
+ </ Space >
321
372
322
373
< div className = 'btn-wrapper' >
323
- < Button onClick = { handleCancel } > 取消</ Button >
324
- < Button type = 'primary' onClick = { handleOk } >
374
+ < Button disabled = { editInEditorMaskVisible } onClick = { handleCancel } >
375
+ 取消
376
+ </ Button >
377
+ < Button disabled = { editInEditorMaskVisible } type = 'primary' onClick = { handleOk } >
325
378
确定
326
379
</ Button >
327
380
</ div >
@@ -362,7 +415,21 @@ function ModalAdd({visible, setVisible, editItem, editItemIndex, editMode}) {
362
415
name = 'content'
363
416
rules = { [ { required : true , message : '内容不能为空' } ] }
364
417
>
365
- < ConfigEditor ref = { configEditorRef } readonly = { readonly } />
418
+ < ConfigEditor
419
+ ref = { configEditorRef }
420
+ readonly = { readonly }
421
+ spinProps = { {
422
+ size : 'large' ,
423
+ spinning : editInEditorMaskVisible ,
424
+ tip : (
425
+ < >
426
+ 文件已经在编辑器中打开
427
+ < br />
428
+ 在编辑器中关闭文件生效
429
+ </ >
430
+ ) ,
431
+ } }
432
+ />
366
433
</ Form . Item >
367
434
) : (
368
435
< Form . Item label = 'URL' name = 'url' rules = { [ { required : true , message : 'url不能为空' } ] } >
0 commit comments