5
5
import './App.less'
6
6
import { Badge , Checkbox , BadgeProps , Button , Dropdown , Input , message , Modal , Spin , Table , Tag , Tooltip , Upload , Switch , Space , Divider , Select , Popover , Segmented , InputNumber } from 'antd'
7
7
import React , { useEffect , useRef , useState } from 'react'
8
- import { TagOutlined , ControlOutlined , CodeOutlined , DeleteOutlined , PlusOutlined , SearchOutlined , VerticalAlignBottomOutlined , UploadOutlined , SyncOutlined , RollbackOutlined , BugOutlined , FilterOutlined , FormOutlined , SettingOutlined , AppstoreOutlined , FieldTimeOutlined , StopOutlined , DashboardOutlined , GithubFilled } from '@ant-design/icons'
8
+ import { TagOutlined , ControlOutlined , CodeOutlined , DeleteOutlined , PlusOutlined , SearchOutlined , VerticalAlignBottomOutlined , UploadOutlined , SyncOutlined , RollbackOutlined , BugOutlined , FilterOutlined , FormOutlined , SettingOutlined , AppstoreOutlined , FieldTimeOutlined , StopOutlined , DashboardOutlined } from '@ant-design/icons'
9
9
import { ColumnsType } from 'antd/lib/table'
10
10
import { pathMatch , randID , renderSize } from './tools'
11
11
import { getMethodColor } from './tools/mappings'
@@ -20,7 +20,7 @@ import Quota, { getPercent } from './components/Quota'
20
20
import { runCode } from './tools/runCode'
21
21
import { loader } from "@monaco-editor/react" ;
22
22
import { sendRequestLog } from './tools/sendRequest'
23
- import { ActiveGroupId , HiddenFieldsFieldKey , ActiveIdFieldKey , RulesFieldKey , SelectedRowFieldKeys , UpdateMsgKey , WatchFilterKey , ConfigInfoFieldKey , PopupMsgKey , OpenEditorKey , PathFieldKey } from './tools/constants'
23
+ import { ActiveGroupId , HiddenFieldsFieldKey , ActiveIdFieldKey , RulesFieldKey , SelectedRowFieldKeys , UpdateMsgKey , WatchFilterKey , ConfigInfoFieldKey , PopupMsgKey } from './tools/constants'
24
24
import useTranslate from './hooks/useTranslate'
25
25
import getStorage from './tools/getStorage'
26
26
import { ConfigProvider , theme } from 'antd'
@@ -76,10 +76,6 @@ export interface ConfigInfoType {
76
76
bootLog : boolean
77
77
allFrames : boolean
78
78
dark : boolean
79
- proxy ?: Record < string , string | {
80
- target : string
81
- rewrite ?: string
82
- } >
83
79
}
84
80
85
81
const defaultConfigInfo : ConfigInfoType = {
@@ -100,13 +96,11 @@ export default function App() {
100
96
const [ activeGroupId , setActiveGroupId ] = useStorage ( ActiveGroupId , 'default' )
101
97
const [ watchFilter , setWatchFilter ] = useStorage ( WatchFilterKey , '' )
102
98
const [ rules , setRules ] = useStorage < MatchRule [ ] > ( RulesFieldKey , [ ] )
103
- const [ openEditor , setOpenEditor ] = useStorage ( OpenEditorKey , false )
104
99
const [ selectedRowKeys , setSelectedRowKeys ] = useStorage ( SelectedRowFieldKeys , [ ] )
105
100
const [ loading , setLoading ] = useState ( false )
106
101
const [ activeId , setActiveId ] = useStorage < string > ( ActiveIdFieldKey , null )
107
102
const [ invalid , setInvalid ] = useState ( false )
108
103
const [ visible , setVisible ] = useState ( false )
109
- const [ fileName , setFileName ] = useStorage < FileType > ( PathFieldKey , 'config' )
110
104
const [ hiddenFields , setHiddenFields ] = useStorage < string [ ] > ( HiddenFieldsFieldKey , [ ] )
111
105
const [ percent , setPercent ] = useState ( 0 )
112
106
const originRef = useRef ( '' )
@@ -127,8 +121,6 @@ export default function App() {
127
121
const map = {
128
122
[ ConfigInfoFieldKey ] : setConfigInfo ,
129
123
[ RulesFieldKey ] : setRules ,
130
- [ PathFieldKey ] : setFileName ,
131
- [ OpenEditorKey ] : setOpenEditor ,
132
124
[ SelectedRowFieldKeys ] : setSelectedRowKeys ,
133
125
[ ActiveIdFieldKey ] : setActiveId ,
134
126
[ HiddenFieldsFieldKey ] : setHiddenFields ,
@@ -164,8 +156,6 @@ export default function App() {
164
156
}
165
157
166
158
const update = ( value : Record < FileType , string > , index : number ) => {
167
- const configInfo = JSON . parse ( value . setting )
168
- setConfigInfo ( configInfo )
169
159
setRules ( rule => {
170
160
const result = [ ...rule ]
171
161
const config = JSON . parse ( value . config )
@@ -193,7 +183,9 @@ export default function App() {
193
183
[ selectedRowKeys , rules , activeGroupId ]
194
184
)
195
185
196
- const editable = React . useMemo ( ( ) => ! ! activeId || openEditor , [ activeId , openEditor ] )
186
+ const editable = React . useMemo ( ( ) => ! ! activeId , [ activeId ] )
187
+
188
+ const disabled = React . useMemo ( ( ) => editable , [ editable ] )
197
189
198
190
const workspaces = React . useMemo (
199
191
( ) => {
@@ -323,11 +315,7 @@ export default function App() {
323
315
} } >
324
316
< Tooltip placement = 'topLeft' title = { record . description } >
325
317
< a onClick = { ( ) => {
326
- setOpenEditor ( true )
327
318
setActiveId ( record . id )
328
- if ( fileName === 'setting' ) {
329
- setFileName ( 'config' )
330
- }
331
319
} } > { shortText } </ a >
332
320
</ Tooltip >
333
321
</ Dropdown >
@@ -422,19 +410,11 @@ export default function App() {
422
410
} ,
423
411
]
424
412
425
- const formatResult = ( record : MatchRule | undefined ) => {
426
- if ( ! record ) {
427
- return {
428
- code : '' ,
429
- config : '' ,
430
- setting : JSON . stringify ( configInfo , null , 4 ) ,
431
- }
432
- }
413
+ const formatResult = ( record : MatchRule ) => {
433
414
const data = Object . fromEntries ( fields . filter ( field => ! hiddenFields . includes ( field ) ) . map ( k => [ k , record [ k ] ] ) )
434
415
return {
435
416
code : record . code ,
436
417
config : JSON . stringify ( data , null , 4 ) ,
437
- setting : JSON . stringify ( configInfo , null , 4 ) ,
438
418
}
439
419
}
440
420
@@ -511,7 +491,7 @@ export default function App() {
511
491
< div className = { 'app__top' } >
512
492
< Button . Group style = { { padding : '0 4px' } } >
513
493
< Tooltip title = { t ( 'action_add' ) } >
514
- < Button disabled = { editable } icon = { < PlusOutlined /> } onClick = { ( ) => {
494
+ < Button disabled = { disabled } icon = { < PlusOutlined /> } onClick = { ( ) => {
515
495
setRules ( rule => {
516
496
const result = [ ...rule , {
517
497
id : randID ( ) ,
@@ -526,10 +506,10 @@ export default function App() {
526
506
} ]
527
507
return result
528
508
} )
529
- } } / >
509
+ } } > </ Button >
530
510
</ Tooltip >
531
511
< Tooltip title = { getActionText ( t ( 'menu_remove' ) ) } >
532
- < Button disabled = { editable } icon = { < DeleteOutlined /> } onDoubleClick = { ( ) => {
512
+ < Button disabled = { disabled } icon = { < DeleteOutlined /> } onDoubleClick = { ( ) => {
533
513
setRules ( [ ] )
534
514
} } onClick = { ( ) => {
535
515
if ( ! selectedRowKeys . length ) {
@@ -538,18 +518,18 @@ export default function App() {
538
518
}
539
519
setRules ( rules . filter ( item => ! selectedRowKeys . find ( id => id === item . id ) ) )
540
520
setSelectedRowKeys ( [ ] )
541
- } } / >
521
+ } } > </ Button >
542
522
</ Tooltip >
543
523
< Tooltip title = { getActionText ( t ( 'action_export' ) ) } >
544
- < Button disabled = { editable } icon = { < VerticalAlignBottomOutlined /> } onClick = { ( ) => {
524
+ < Button disabled = { disabled } icon = { < VerticalAlignBottomOutlined /> } onClick = { ( ) => {
545
525
const data = selectedRowKeys . length
546
526
? rules . filter ( item => ! selectedRowKeys . find ( id => id === item . id ) )
547
527
: rules
548
528
download ( `${ selectedRowKeys . length ? activeGroupId : 'all' } .json` , JSON . stringify ( data , null , 2 ) )
549
- } } / >
529
+ } } > </ Button >
550
530
</ Tooltip >
551
531
< Tooltip title = { t ( 'action_import' ) } >
552
- < Upload className = 'app__upload' disabled = { editable } showUploadList = { false } beforeUpload = { ( file ) => {
532
+ < Upload className = 'app__upload' disabled = { disabled } showUploadList = { false } beforeUpload = { ( file ) => {
553
533
setLoading ( true )
554
534
if ( ! [ 'application/json' , 'text/plain' ] . includes ( file . type ) ) {
555
535
message . error ( t ( 'import_modal_err' ) )
@@ -607,20 +587,20 @@ export default function App() {
607
587
}
608
588
return false
609
589
} } >
610
- < Button disabled = { editable } icon = { < UploadOutlined /> } > </ Button >
590
+ < Button disabled = { disabled } icon = { < UploadOutlined /> } > </ Button >
611
591
</ Upload >
612
592
</ Tooltip >
613
593
< Tooltip title = { t ( 'action_refresh' ) } >
614
- < Button disabled = { editable } icon = { < SyncOutlined /> } onClick = { ( ) => {
594
+ < Button disabled = { disabled } icon = { < SyncOutlined /> } onClick = { ( ) => {
615
595
setSelectedRowKeys ( [ ] )
616
596
setRules ( rules => rules . map ( rule => ( { ...rule , count : 0 } ) ) )
617
597
setActiveId ( null )
618
- } } / >
598
+ } } > </ Button >
619
599
</ Tooltip >
620
600
< Tooltip title = { t ( 'action_mode' ) } >
621
- < Button disabled = { editable } type = { configInfo . faked ? 'primary' : 'default' } icon = { < BugOutlined /> } onClick = { ( ) => {
601
+ < Button disabled = { disabled } type = { configInfo . faked ? 'primary' : 'default' } icon = { < BugOutlined /> } onClick = { ( ) => {
622
602
setConfigInfo ( info => ( { ...info , faked : ! info . faked } ) )
623
- } } / >
603
+ } } > </ Button >
624
604
</ Tooltip >
625
605
{
626
606
editable && (
@@ -631,8 +611,7 @@ export default function App() {
631
611
return
632
612
}
633
613
setActiveId ( null )
634
- setOpenEditor ( false )
635
- } } />
614
+ } } > </ Button >
636
615
</ Tooltip >
637
616
)
638
617
}
@@ -692,10 +671,35 @@ export default function App() {
692
671
</ div >
693
672
< div className = "app__bar" >
694
673
< div className = 'app__bar-item' >
695
- < SettingOutlined onClick = { ( ) => {
696
- setOpenEditor ( true )
697
- setFileName ( 'setting' )
698
- } } />
674
+ < Popover trigger = { [ 'click' ] } placement = 'topLeft' showArrow = { false } content = { (
675
+ < >
676
+ < Divider orientation = 'left' plain >
677
+ < Button size = 'small' type = 'primary' onClick = { ( ) => {
678
+ setConfigInfo ( info => ( { ...info , fakedLog : true , bootLog : true , dark : false , allFrames : false } ) )
679
+ } } > { t ( 'action_reset' ) } </ Button >
680
+ </ Divider >
681
+ < Space size = { 'large' } >
682
+ < div style = { { display : 'flex' } } >
683
+ < span style = { { marginRight : 8 } } > { t ( 'action_all_frames' ) } </ span >
684
+ < Switch checked = { configInfo . allFrames } onClick = { ( ) => setConfigInfo ( info => ( { ...info , allFrames : ! info . allFrames } ) ) } > </ Switch >
685
+ </ div >
686
+ < div style = { { display : 'flex' } } >
687
+ < span style = { { marginRight : 8 } } > { t ( 'action_theme' ) } </ span >
688
+ < Switch checked = { configInfo . dark } onClick = { ( ) => setConfigInfo ( info => ( { ...info , dark : ! info . dark } ) ) } > </ Switch >
689
+ </ div >
690
+ < div style = { { display : 'flex' } } >
691
+ < span style = { { marginRight : 8 } } > { t ( 'action_boot_log' ) } </ span >
692
+ < Switch checked = { configInfo . bootLog } onClick = { ( ) => setConfigInfo ( info => ( { ...info , bootLog : ! info . bootLog } ) ) } > </ Switch >
693
+ </ div >
694
+ < div style = { { display : 'flex' } } >
695
+ < span style = { { marginRight : 8 } } > { t ( 'action_faked_log' ) } </ span >
696
+ < Switch checked = { configInfo . fakedLog } onClick = { ( ) => setConfigInfo ( info => ( { ...info , fakedLog : ! info . fakedLog } ) ) } > </ Switch >
697
+ </ div >
698
+ </ Space >
699
+ </ >
700
+ ) } >
701
+ < SettingOutlined />
702
+ </ Popover >
699
703
</ div >
700
704
< div className = 'app__bar-item' >
701
705
< Tooltip title = { t ( 'select_workspace' ) } >
@@ -803,26 +807,15 @@ export default function App() {
803
807
</ Tooltip >
804
808
</ div >
805
809
</ div >
806
- < div className = 'app__bar app__bar--right' >
807
- < div className = 'app__bar-item' >
808
- < GithubFilled onClick = { ( ) => {
809
- window . open ( 'https://github.com/hans000/easy-interceptor' , '_blank' )
810
- } } />
811
- </ div >
812
- </ div >
813
810
{
814
- openEditor && (
811
+ editable && (
815
812
< div className = 'app__editor' >
816
813
< MainEditor
817
- fileName = { fileName }
818
814
isDark = { configInfo . dark }
819
815
ref = { editorRef }
820
816
index = { activeIndex }
821
817
rule = { rules [ activeIndex ] }
822
818
value = { formatResult ( rules [ activeIndex ] ) }
823
- onFileNameChange = { fileName => {
824
- setFileName ( fileName )
825
- } }
826
819
onChange = { ( value , invalid ) => {
827
820
update ( value , activeIndex )
828
821
setInvalid ( invalid )
0 commit comments