BaseShell
BaseShell
Bases: Widget
Base class for the shell. Subclasses need to implement the command_entered method.
Pressing the up arrow key will cycle up through the history. Pressing the down arrow key will cycle down through the history, Pressing ctrl+c will clear the prompt input.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
commands
|
List[Command]
|
List of shell commands. |
required |
prompt
|
str
|
prompt for the shell. |
required |
history_log
|
str
|
The path for the history log file. |
None
|
Source code in src/textual_shell/widgets/shell/base_shell.py
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 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 | |
action_clear_prompt()
When ctrl+c is pressed clear the command line.
Source code in src/textual_shell/widgets/shell/base_shell.py
action_down_history()
When the down arrow key is pressed cycle downwards through the history.
Source code in src/textual_shell/widgets/shell/base_shell.py
action_up_history()
When the up arrow is hit cycle upwards through the history.
Source code in src/textual_shell/widgets/shell/base_shell.py
command_entered(cmdline)
Handler for how the shell should go about executing the command. Please override this in your shell.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
cmdline
|
str
|
The command line entered. |
required |
Raises:
| Type | Description |
|---|---|
NotImplementedError
|
If not overridden in a derived class. |
Source code in src/textual_shell/widgets/shell/base_shell.py
decide_to_show_suggestions()
Based on reactive attributes evaluate whether to show or hide the suggestions.
Source code in src/textual_shell/widgets/shell/base_shell.py
get_cmd_obj(cmd)
Retrieve the cmd instance.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
cmd
|
str
|
The name of the command. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
command |
Command
|
The command instance for the command. |
Source code in src/textual_shell/widgets/shell/base_shell.py
get_offset()
Calculate the offset for the cursor location.
Source code in src/textual_shell/widgets/shell/base_shell.py
get_suggestions(cmd_line)
Get the suggestions for the current state of the command line.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
cmd_line
|
str
|
The input from the prompt. |
required |
Source code in src/textual_shell/widgets/shell/base_shell.py
on_mount()
on_prompt_command_entered(event)
Handler for when a command has been entered. Execute the command in a worker thread.
Source code in src/textual_shell/widgets/shell/base_shell.py
on_prompt_command_input(event)
Handler for when the user has typed into the prompt.
Source code in src/textual_shell/widgets/shell/base_shell.py
on_prompt_input_auto_complete(event)
Handle auto complete request.
Source code in src/textual_shell/widgets/shell/base_shell.py
on_prompt_input_focus_change(event)
Handler for when the prompt_input has gained or lost focus.
Source code in src/textual_shell/widgets/shell/base_shell.py
on_prompt_input_hide(event)
Handler for hiding the Suggestions.
on_prompt_input_show(event)
Handler for showing the Suggestions.
Source code in src/textual_shell/widgets/shell/base_shell.py
on_suggestions_cancel(event)
Handler for canceling the suggestion
Source code in src/textual_shell/widgets/shell/base_shell.py
on_suggestions_continue(event)
Add a space to the prompt_input and switch back focus.
Source code in src/textual_shell/widgets/shell/base_shell.py
on_suggestions_cycle(event)
Update the prompt input with the next suggestion.
Source code in src/textual_shell/widgets/shell/base_shell.py
on_suggestions_execute(event)
Execute the command.
Source code in src/textual_shell/widgets/shell/base_shell.py
on_suggestions_focus_change(event)
Handler for when the focus on the Suggestions widget changes.
Source code in src/textual_shell/widgets/shell/base_shell.py
on_suggestions_hide(event)
Handler for hiding the Suggestions.
Source code in src/textual_shell/widgets/shell/base_shell.py
toggle_suggestions(toggle)
Handler for hiding or showing the suggestions pop up.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
toggle
|
bool
|
If True show the suggestions as long as there are suggestions else False will hide them. |
required |
Source code in src/textual_shell/widgets/shell/base_shell.py
update_prompt_input(suggestion)
Add the suggestion to the prompt input. This will prevent Input.Changed events from generating.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
suggestion
|
str
|
The selected suggestion. |
required |
Source code in src/textual_shell/widgets/shell/base_shell.py
update_suggestions(suggestions)
Update the list of Suggestions.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
suggestions
|
List[str]
|
The new suggestions. |
required |
Source code in src/textual_shell/widgets/shell/base_shell.py
update_suggestions_location(cursor)
Update the location of the Suggestions.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
cursor
|
int
|
The x location of the cursor. |
required |
Source code in src/textual_shell/widgets/shell/base_shell.py
watch_are_suggestions_focused(are_suggestions_focused)
Watcher for when the suggestions gains or lose focus.
Ars
are_suggestions_focused (bool): The reactive attribute.
Source code in src/textual_shell/widgets/shell/base_shell.py
watch_history_list(history_list)
Watcher for when the history has been updated.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
history_list
|
List[str]
|
The history of the command line. |
required |
Source code in src/textual_shell/widgets/shell/base_shell.py
watch_is_prompt_focused(is_prompt_focused)
Watcher for when the prompt gains or loses focus.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
is_prompt_focused
|
bool
|
The reactive attribute. |
required |
Source code in src/textual_shell/widgets/shell/base_shell.py
watch_show_suggestions(show_suggestions)
Watcher for when to show suggestions.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
show_suggestions
|
bool
|
The reactive attribute. |
required |