1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
|
import {
ClashGeneralConfig,
DispatchFn,
GetStateFn,
State,
StateConfigs,
} from 'src/store/types';
import { ClashAPIConfig } from 'src/types';
import * as configsAPI from '../api/configs';
import * as trafficAPI from '../api/traffic';
import { openModal } from './modals';
export const getConfigs = (s: State) => s.configs.configs;
export const getHaveFetched = (s: State) => s.configs.haveFetchedConfig;
export const getLogLevel = (s: State) => s.configs.configs['log-level'];
export function fetchConfigs(apiConfig: ClashAPIConfig) {
return async (dispatch: DispatchFn, getState: GetStateFn) => {
let res: Response;
try {
res = await configsAPI.fetchConfigs(apiConfig);
} catch (err) {
// TypeError and AbortError
dispatch(openModal('apiConfig'));
return;
}
if (!res.ok) {
console.log('Error fetch configs', res.statusText);
dispatch(openModal('apiConfig'));
return;
}
const payload = await res.json();
dispatch('store/configs#fetchConfigs', (s) => {
s.configs.configs = payload;
});
const haveFetchedConfig = getHaveFetched(getState());
if (haveFetchedConfig) {
// normally user will land on the "traffic chart" page first
// calling this here will let the data start streaming
// the traffic chart should already subscribed to the streaming
trafficAPI.fetchData(apiConfig);
} else {
dispatch(markHaveFetchedConfig());
}
};
}
function markHaveFetchedConfig() {
return (dispatch: DispatchFn) => {
dispatch('store/configs#markHaveFetchedConfig', (s: State) => {
s.configs.haveFetchedConfig = true;
});
};
}
export function updateConfigs(
apiConfig: ClashAPIConfig,
partialConfg: Partial<ClashGeneralConfig>
) {
return async (dispatch: DispatchFn) => {
configsAPI
.updateConfigs(apiConfig, partialConfg)
.then(
(res) => {
if (res.ok === false) {
// eslint-disable-next-line no-console
console.log('Error update configs', res.statusText);
}
},
(err) => {
// eslint-disable-next-line no-console
console.log('Error update configs', err);
throw err;
}
)
.then(() => {
dispatch(fetchConfigs(apiConfig));
});
dispatch('storeConfigsOptimisticUpdateConfigs', (s) => {
s.configs.configs = { ...s.configs.configs, ...partialConfg };
});
};
}
export const initialState: StateConfigs = {
configs: {
port: 7890,
'socks-port': 7891,
'redir-port': 0,
'allow-lan': false,
mode: 'Rule',
'log-level': 'uninit',
},
haveFetchedConfig: false,
};
|