improve ui descriptions

This commit is contained in:
Robin Olsen
2026-03-16 12:43:19 +01:00
parent a13f754ce5
commit 43ca776536

View File

@@ -57,20 +57,22 @@ func BaseDetails(interfaceType InterfaceType) TaskDetails {
switch interfaceType { switch interfaceType {
case InterfaceTypeREPL: case InterfaceTypeREPL:
interfaceDesc = `How to use the REPL Interface interfaceDesc = `What is a REPL Interface?
- The REPL interface allows you to interact with the task using a command-line interface. - REPL stands for Read-Eval-Print Loop. It is an interactive programming environment that takes single user inputs (reads), executes them (eval), and returns the result to the user (print), then waits for the next input (loop).
- You can type commands to perform actions related to the task, such as creating issues, updating statuses, etc. - In this task, you will interact with the task through a REPL interface, which allows you to execute commands and receive immediate feedback in a command-line environment.
- The interface will provide prompts and feedback based on your inputs.` - You can type commands to perform actions related to the task, and the REPL will process those commands and provide responses based on your input.
- The REPL interface is designed to facilitate a more dynamic and interactive way of completing the task, allowing you to experiment and receive real-time feedback as you work through the task requirements.`
case InterfaceTypeTUI: case InterfaceTypeTUI:
interfaceDesc = `How to use the TUI Interface interfaceDesc = `What is a TUI Interface?
- The TUI (Text User Interface) provides a more interactive experience in the terminal. - TUI stands for Text User Interface. It is a user interface that uses text-based elements to allow users to interact with the application.
- You can navigate through menus, select options, and view task details in a structured format. - The main way to interact with a TUI is through keyboard inputs, where you can navigate through menus, select options, and input data using the keyboard.
- Use keyboard shortcuts to perform actions and explore different sections of the interface.` - In this task, you will interact with the task through a TUI interface, which provides a more structured and visually organized way to complete the task using text-based menus, forms, and other interactive elements.
- The TUI interface is designed to enhance usability and provide a more engaging experience while working through the task requirements, allowing you to navigate through options and input information in a more intuitive way.`
case InterfaceTypeWeb: case InterfaceTypeWeb:
interfaceDesc = `How to use the Web Interface interfaceDesc = `What is a Web Interface?
- The Web interface allows you to interact with the task through a web browser. - A Web Interface is a user interface that is accessed through a web browser. It allows users to interact with the application using graphical elements such as buttons, forms, and menus.
- You can access the interface by navigating to the provided URL. - In this task, you will interact with the task through a Web interface, which provides a more visually rich and user-friendly way to complete the task using a web-based platform.
- The interface will have buttons, forms, and other interactive elements to help you complete the task.` - The Web interface is designed to enhance usability and provide a more engaging experience while working through the task requirements, allowing you to navigate through options and input information in a more intuitive way using a graphical interface.`
default: default:
interfaceDesc = "Unknown Interface" interfaceDesc = "Unknown Interface"
} }