Update participant guide and interface instructions for clarity and consistency
This commit is contained in:
@@ -4,7 +4,7 @@ import (
|
||||
"strings"
|
||||
|
||||
"charm.land/bubbles/v2/key"
|
||||
"charm.land/bubbletea/v2"
|
||||
tea "charm.land/bubbletea/v2"
|
||||
"charm.land/lipgloss/v2"
|
||||
"github.com/LazyBachelor/LazyPM/internal/models"
|
||||
"github.com/LazyBachelor/LazyPM/internal/style"
|
||||
@@ -15,17 +15,16 @@ const stages = 2
|
||||
const (
|
||||
IntroTitle = "Project Management Interface Survey"
|
||||
IntroductionText = `This survey evaluates how people use different project management interfaces to complete common tasks.
|
||||
You will complete a short set of task-based exercises and answer a few follow-up questions about the experience.
|
||||
Your feedback helps us compare interface design and usability.
|
||||
You will complete a short set of task-based exercises and answer a few follow-up questions about the experience. Your feedback helps us compare interface design and usability.
|
||||
|
||||
The survey takes around 15-20 minutes to complete.`
|
||||
The survey takes around 15-25 minutes to complete.`
|
||||
|
||||
Disclaimer = `Data Collection Notice
|
||||
|
||||
• Responses are anonymized before analysis
|
||||
• We do not collect personally identifying information
|
||||
• You may exit at any time by pressing Ctrl+C between tasks or closing the terminal.
|
||||
• We collect task results, questionnaire answers, and interaction events during the survey
|
||||
• We do not intentionally collect personally identifying information
|
||||
• You may exit at any time by pressing Esc between tasks or closing the terminal.
|
||||
• Data is collected continuously during the survey, so exiting early will still contribute valuable insights.`
|
||||
)
|
||||
|
||||
@@ -58,7 +57,7 @@ func newIntroModel() introModel {
|
||||
key.WithHelp("b", "back"),
|
||||
),
|
||||
Quit: key.NewBinding(
|
||||
key.WithKeys("esc", "ctrl+c", "q"),
|
||||
key.WithKeys("esc", "ctrl+c"),
|
||||
key.WithHelp("esc", "quit"),
|
||||
),
|
||||
}
|
||||
|
||||
@@ -59,14 +59,19 @@ func BaseDetails(interfaceType InterfaceType) TaskDetails {
|
||||
case InterfaceTypeREPL:
|
||||
interfaceDesc = `About our REPL 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).
|
||||
- REPL stands for Read-Eval-Print Loop.
|
||||
It's 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).
|
||||
|
||||
- In a traditional CLI, you would use the help command to see available commands and their descriptions.
|
||||
In this REPL interface, you can also type 'pm help' to get a list of available commands and their descriptions.
|
||||
- In a traditional CLI, you would use the help command to see available commands.
|
||||
|
||||
- You can also run shell commands directly from the REPL, like "git" or "ls".
|
||||
- You can type 'pm help' to get a list of available commands and their descriptions.
|
||||
|
||||
- When you type commands in this interface, suggestions will appear as you type, which you can select to auto-complete your command.
|
||||
- You can run shell commands directly from the REPL, like "git" or "ls".
|
||||
|
||||
- When you type commands in this interface, suggestions will appear as you type,
|
||||
which you can select to auto-complete your command.
|
||||
|
||||
- Write "exit" to skip task during the survey.`
|
||||
case InterfaceTypeTUI:
|
||||
@@ -87,7 +92,7 @@ func BaseDetails(interfaceType InterfaceType) TaskDetails {
|
||||
interfaceDesc = `About our Web Interface?
|
||||
|
||||
- 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.
|
||||
Users to interact with the application using graphical elements such as buttons and forms.
|
||||
|
||||
- We designed this interface to only be interactive through mouse clicks.
|
||||
|
||||
@@ -95,7 +100,8 @@ func BaseDetails(interfaceType InterfaceType) TaskDetails {
|
||||
- Issues: This view shows the available issues in a list format.
|
||||
- Kanban: This view allows you to manage and track the progress of different issues.
|
||||
|
||||
- Press esc/q in the terminal to skip the task.`
|
||||
- Press q in the server terminal to skip the task.`
|
||||
default:
|
||||
interfaceDesc = "Unknown Interface"
|
||||
}
|
||||
|
||||
|
||||
@@ -16,7 +16,8 @@ Your task:
|
||||
3. Assign the issue to yourself as "Me"
|
||||
4. Mark the issue as In Progress when you are done.
|
||||
|
||||
Make sure to fill out all the necessary details to help others understand the work item.`
|
||||
Make sure to fill out all the necessary details to help others understand the work item.
|
||||
Note: The test is not case sensitive, so you can use "me" instead of "Me".`
|
||||
|
||||
type CreateIssueTask struct {
|
||||
done bool
|
||||
|
||||
Reference in New Issue
Block a user