@@ -88,28 +88,52 @@ pub struct App<'a> {
8888
8989 pub url_text_input : TextInput ,
9090
91+ /* Query params */
92+
9193 pub query_params_table : StatefulCustomTable ,
9294
95+ /* Auth */
96+
9397 pub auth_text_input_selection : TextInputSelection ,
98+
9499 pub auth_basic_username_text_input : TextInput ,
95100 pub auth_basic_password_text_input : TextInput ,
101+
96102 pub auth_bearer_token_text_input : TextInput ,
103+
97104 pub auth_jwt_secret_text_input : TextInput ,
98105 pub auth_jwt_payload_text_area : TextArea < ' a > ,
99106 pub auth_jwt_payload_text_area_vim_emulation : Vim ,
100107
108+ pub auth_digest_username_text_input : TextInput ,
109+ pub auth_digest_password_text_input : TextInput ,
110+ pub auth_digest_domains_text_input : TextInput ,
111+ pub auth_digest_realm_text_input : TextInput ,
112+ pub auth_digest_nonce_text_input : TextInput ,
113+ pub auth_digest_opaque_text_input : TextInput ,
114+
115+ /* Headers */
116+
101117 pub headers_table : StatefulCustomTable ,
102118
119+ /* Body */
120+
103121 pub body_file_text_input : TextInput ,
104122 pub body_form_table : StatefulCustomTable ,
105123 pub body_text_area : TextArea < ' a > ,
106124 pub body_text_area_vim_emulation : Vim ,
107125
126+ /* WS message */
127+
108128 pub message_text_area : TextArea < ' a > ,
109129 pub message_text_area_vim_emulation : Vim ,
110130
131+ /* Settings */
132+
111133 pub request_settings_popup : SettingsPopup ,
112134
135+ /* Response */
136+
113137 pub received_response : Arc < Mutex < bool > > ,
114138
115139 pub result_throbber_state : ThrobberState ,
@@ -118,6 +142,8 @@ pub struct App<'a> {
118142
119143 pub last_messages_area_size : ( u16 , u16 ) ,
120144
145+ /* Scripts */
146+
121147 pub script_console : ScriptConsole < ' a > ,
122148
123149 /* Others */
@@ -189,28 +215,52 @@ impl App<'_> {
189215
190216 url_text_input : TextInput :: default ( ) ,
191217
218+ /* Query params */
219+
192220 query_params_table : StatefulCustomTable :: default ( ) ,
193221
222+ /* Auth */
223+
194224 auth_text_input_selection : TextInputSelection :: default ( ) ,
225+
195226 auth_basic_username_text_input : TextInput :: default ( ) ,
196227 auth_basic_password_text_input : TextInput :: default ( ) ,
228+
197229 auth_bearer_token_text_input : TextInput :: default ( ) ,
230+
198231 auth_jwt_secret_text_input : TextInput :: default ( ) ,
199232 auth_jwt_payload_text_area : TextArea :: default ( ) ,
200233 auth_jwt_payload_text_area_vim_emulation : Vim :: default ( ) ,
201234
235+ auth_digest_username_text_input : TextInput :: default ( ) ,
236+ auth_digest_password_text_input : TextInput :: default ( ) ,
237+ auth_digest_domains_text_input : TextInput :: default ( ) ,
238+ auth_digest_realm_text_input : TextInput :: default ( ) ,
239+ auth_digest_nonce_text_input : TextInput :: default ( ) ,
240+ auth_digest_opaque_text_input : TextInput :: default ( ) ,
241+
242+ /* Headers */
243+
202244 headers_table : StatefulCustomTable :: default ( ) ,
203245
246+ /* Body */
247+
204248 body_file_text_input : TextInput :: default ( ) ,
205249 body_form_table : StatefulCustomTable :: default ( ) ,
206250 body_text_area : TextArea :: default ( ) ,
207251 body_text_area_vim_emulation : Vim :: default ( ) ,
208252
253+ /* WS message */
254+
209255 message_text_area : TextArea :: default ( ) ,
210256 message_text_area_vim_emulation : Vim :: default ( ) ,
211257
258+ /* Settings */
259+
212260 request_settings_popup : SettingsPopup :: default ( ) ,
213261
262+ /* Response */
263+
214264 result_throbber_state : ThrobberState :: default ( ) ,
215265 received_response : Arc :: new ( Mutex :: new ( false ) ) ,
216266 result_vertical_scrollbar : StatefulScrollbar :: default ( ) ,
0 commit comments