@@ -15,11 +15,12 @@ export default function Settings() {
15
15
const [ endpoint , setEndpoint ] = useState ( ) ;
16
16
const [ showEndpointModal , setShowEndpointModal ] = useState ( false ) ;
17
17
//const [ipType, setIpType] = useState<undefined | string>();
18
- const [ psiphon , setPsiphon ] = useState < undefined | boolean > ( ) ;
18
+ // const [psiphon, setPsiphon] = useState<undefined | boolean>();
19
19
const [ location , setLocation ] = useState < undefined | string > ( ) ;
20
20
const [ license , setLicense ] = useState ( ) ;
21
21
const [ showLicenseModal , setShowLicenseModal ] = useState ( false ) ;
22
- const [ gool , setGool ] = useState < undefined | boolean > ( ) ;
22
+ //const [gool, setGool] = useState<undefined | boolean>();
23
+ const [ method , setMethod ] = useState < undefined | string > ( '' ) ;
23
24
24
25
/*useEffect(() => {
25
26
if (endpoint === '' || endpoint === defaultSettings.endpoint) {
@@ -37,26 +38,28 @@ export default function Settings() {
37
38
/*settings.get('ipType').then((value) => {
38
39
setIpType(typeof value === 'undefined' ? defaultSettings.ipType : value);
39
40
});*/
40
- settings . get ( 'psiphon' ) . then ( ( value ) => {
41
+ /* settings.get('psiphon').then((value) => {
41
42
setPsiphon(typeof value === 'undefined' ? defaultSettings.psiphon : value);
42
- } ) ;
43
+ });*/
43
44
settings . get ( 'location' ) . then ( ( value ) => {
44
45
setLocation ( typeof value === 'undefined' ? defaultSettings . location : value ) ;
45
46
} ) ;
46
47
settings . get ( 'license' ) . then ( ( value ) => {
47
48
setLicense ( typeof value === 'undefined' ? defaultSettings . license : value ) ;
48
49
} ) ;
49
- settings . get ( 'gool' ) . then ( ( value ) => {
50
+ /* settings.get('gool').then((value) => {
50
51
setGool(typeof value === 'undefined' ? defaultSettings.gool : value);
52
+ });*/
53
+ settings . get ( 'method' ) . then ( ( value ) => {
54
+ setMethod ( typeof value === 'undefined' ? defaultSettings . method : value ) ;
51
55
} ) ;
52
56
} , [ ] ) ;
53
57
54
58
if (
55
59
typeof endpoint === 'undefined' ||
56
- typeof psiphon === 'undefined' ||
57
60
typeof location === 'undefined' ||
58
61
typeof license === 'undefined' ||
59
- typeof gool === 'undefined'
62
+ typeof method === 'undefined'
60
63
)
61
64
return (
62
65
< >
@@ -131,51 +134,71 @@ export default function Settings() {
131
134
</div>
132
135
<div className='info'>برای اندپوینت تصادفی</div>
133
136
</div>*/ }
134
- < div
135
- className = { classNames ( 'item' , psiphon ? 'disabled' : '' ) }
136
- onClick = { ( ) => {
137
- if ( ! psiphon ) {
138
- setGool ( ! gool ) ;
139
- settings . set ( 'gool' , ! gool ) ;
137
+ < div className = 'grouped' >
138
+ < div
139
+ className = { classNames (
140
+ 'item'
141
+ ) }
142
+ onClick = { ( ) => {
143
+ setMethod ( '' ) ;
144
+ settings . set ( 'method' , '' ) ;
140
145
settingsHaveChanged ( ) ;
141
- }
142
- /*if (psiphon && !gool) {
143
- setPsiphon(false);
144
- settings.set('psiphon', false);
145
- }*/
146
- } }
147
- >
148
- < label className = 'key' > گول</ label >
149
- < div className = 'value' >
150
- < div className = { classNames ( 'checkbox' , gool ? 'checked' : '' ) } >
151
- < i className = 'material-icons' > </ i >
146
+ } }
147
+ >
148
+ < label className = 'key' > وارپ</ label >
149
+ < div className = 'value' >
150
+ < div className = { classNames ( 'switch' , method === '' ? 'checked' : '' ) } />
152
151
</ div >
152
+ < div className = 'info' > فعالسازی Warp</ div >
153
153
</ div >
154
- < div className = 'info' > فعالسازی WarpInWarp</ div >
155
- </ div >
156
- < div
157
- className = { classNames ( 'item' , gool ? 'disabled' : '' ) }
158
- onClick = { ( ) => {
159
- if ( ! gool ) {
160
- setPsiphon ( ! psiphon ) ;
161
- settings . set ( 'psiphon' , ! psiphon ) ;
154
+ < div
155
+ className = { classNames ( 'item' ) }
156
+ onClick = { ( ) => {
157
+ setMethod ( 'gool' ) ;
158
+ settings . set ( 'method' , 'gool' ) ;
162
159
settingsHaveChanged ( ) ;
163
- }
164
- /*if (gool && !psiphon) {
165
- setGool(false);
166
- settings.set('gool', false);
167
- }*/
168
- } }
169
- >
170
- < label className = 'key' > سایفون </ label >
171
- < div className = 'value' >
172
- < div className = { classNames ( 'checkbox' , psiphon ? 'checked' : '' ) } >
173
- < i className = 'material-icons' > </ i >
160
+ /*if (!psiphon) {
161
+ setGool(!gool);
162
+ settings.set('gool', !gool);
163
+ settingsHaveChanged();
164
+ }*/
165
+ /*if (psiphon && !gool) {
166
+ setPsiphon(false);
167
+ settings.set('psiphon', false);
168
+ }*/
169
+ } }
170
+ >
171
+ < label className = 'key' > گول</ label >
172
+ < div className = 'value' >
173
+ < div className = { classNames ( 'switch' , method === 'gool' ? 'checked' : '' ) } />
174
+ </ div >
175
+ < div className = 'info' > فعالسازی WarpInWarp</ div >
176
+ </ div >
177
+ < div
178
+ className = { classNames ( 'item' ) }
179
+ onClick = { ( ) => {
180
+ setMethod ( 'psiphon' ) ;
181
+ settings . set ( 'method' , 'psiphon' ) ;
182
+ settingsHaveChanged ( ) ;
183
+ /*if (!gool) {
184
+ setPsiphon(!psiphon);
185
+ settings.set('psiphon', !psiphon);
186
+ settingsHaveChanged();
187
+ }*/
188
+ /*if (gool && !psiphon) {
189
+ setGool(false);
190
+ settings.set('gool', false);
191
+ }*/
192
+ } }
193
+ >
194
+ < label className = 'key' > سایفون </ label >
195
+ < div className = 'value' >
196
+ < div className = { classNames ( 'switch' , method === 'psiphon' ? 'checked' : '' ) } />
174
197
</ div >
198
+ < div className = 'info' > فعالسازی Psiphon</ div >
175
199
</ div >
176
- < div className = 'info' > فعالسازی Psiphon</ div >
177
200
</ div >
178
- < div className = { classNames ( 'item' , psiphon ? '' : 'disabled' ) } >
201
+ < div className = { classNames ( 'item' , method === ' psiphon' ? '' : 'disabled' ) } >
179
202
< label className = 'key' > انتخاب کشور</ label >
180
203
< div className = 'value' >
181
204
< select
@@ -184,7 +207,7 @@ export default function Settings() {
184
207
settings . set ( 'location' , e . target . value ) ;
185
208
settingsHaveChanged ( ) ;
186
209
} }
187
- disabled = { ! psiphon }
210
+ disabled = { method !== ' psiphon' }
188
211
value = { location }
189
212
>
190
213
< option value = '' > Automatic</ option >
0 commit comments