Compare commits
4 Commits
LPM-152
...
v1.0.0-bet
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
87259a1974 | ||
|
|
da9f8ed4cb | ||
|
|
730ad6a2e2 | ||
|
|
44f192b619 |
@@ -77,15 +77,19 @@ func BaseDetails(interfaceType InterfaceType) TaskDetails {
|
||||
case InterfaceTypeTUI:
|
||||
interfaceDesc = `About our TUI Interface?
|
||||
|
||||
- TUI stands for Terminal User Interface. It is a user interface that uses text-based elements to allow users to interact with the application.
|
||||
- TUI stands for Terminal User Interface.
|
||||
It is a user interface that uses text-based elements to interact with the application.
|
||||
|
||||
- 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.
|
||||
- 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.
|
||||
|
||||
- At the bottom of the interface you will find the help menu, which lists available keybinds.
|
||||
|
||||
- The interface has parts:
|
||||
- List View: This view shows the available issues in a list format, allowing you to browse through them and select one to work on.
|
||||
- Kanban: This view allowtwos you to manage and track the progress of different of issues.
|
||||
- List View: This view shows the available issues in a list format,
|
||||
allowing you to browse through them and select one to work on.
|
||||
- Kanban: This view allows you to manage and track the progress of different issues,
|
||||
this also they main way of creating and managing sprints.
|
||||
|
||||
- Press "q" to quit task during the survey.`
|
||||
case InterfaceTypeWeb:
|
||||
|
||||
@@ -215,8 +215,8 @@ func helpBarConfig(view ViewKind) HelpBarConfig {
|
||||
{Key: "n", Desc: "new sprint"},
|
||||
{Key: "S", Desc: "select sprint"},
|
||||
{Key: "pgup/pgdn", Desc: "page"},
|
||||
{Key: "h/l", Desc: "column"},
|
||||
{Key: "←/→", Desc: "move"},
|
||||
{Key: "←/→", Desc: "column"},
|
||||
{Key: "h/l", Desc: "move"},
|
||||
{Key: "a", Desc: "add"},
|
||||
{Key: "e/d/s/p/t/A/D", Desc: "edit"},
|
||||
{Key: "x", Desc: "delete"},
|
||||
@@ -225,8 +225,8 @@ func helpBarConfig(view ViewKind) HelpBarConfig {
|
||||
},
|
||||
FullItems: []HelpItem{
|
||||
{Key: "v", Desc: "list view"},
|
||||
{Key: "h/l", Desc: "switch column"},
|
||||
{Key: "←/→", Desc: "move issue"},
|
||||
{Key: "←/→", Desc: "switch column"},
|
||||
{Key: "h/l", Desc: "move issue"},
|
||||
{Key: "↑/k", Desc: "up"},
|
||||
{Key: "↓/j", Desc: "down"},
|
||||
{Key: "/", Desc: "search"},
|
||||
@@ -240,7 +240,7 @@ func helpBarConfig(view ViewKind) HelpBarConfig {
|
||||
{Key: "p", Desc: "change priority"},
|
||||
{Key: "t", Desc: "change type"},
|
||||
{Key: "A", Desc: "change assignee"},
|
||||
{Key: "D", Desc: "manage dependencies"},
|
||||
{Key: "D", Desc: "manage dependency"}, // dependencies -> dependency cuz dependencies added a newline
|
||||
{Key: "S", Desc: "select sprint"},
|
||||
{Key: "n", Desc: "new sprint"},
|
||||
{Key: "q", Desc: "quit"},
|
||||
|
||||
@@ -27,20 +27,20 @@ var defaultKanbanKeyMap = KeyMap{
|
||||
key.WithHelp("v", "dashboard"),
|
||||
),
|
||||
MoveColumnLeft: key.NewBinding(
|
||||
key.WithKeys("h"),
|
||||
key.WithHelp("h", "prev column"),
|
||||
key.WithKeys("left"),
|
||||
key.WithHelp("←", "prev column"),
|
||||
),
|
||||
MoveColumnRight: key.NewBinding(
|
||||
key.WithKeys("l"),
|
||||
key.WithHelp("l", "next column"),
|
||||
key.WithKeys("right"),
|
||||
key.WithHelp("→", "next column"),
|
||||
),
|
||||
MoveIssueLeft: key.NewBinding(
|
||||
key.WithKeys("left", "["),
|
||||
key.WithHelp("←/[", "move issue left"),
|
||||
key.WithKeys("h", "["),
|
||||
key.WithHelp("h/[", "move issue left"),
|
||||
),
|
||||
MoveIssueRight: key.NewBinding(
|
||||
key.WithKeys("right", "]"),
|
||||
key.WithHelp("→/]", "move issue right"),
|
||||
key.WithKeys("l", "]"),
|
||||
key.WithHelp("l/]", "move issue right"),
|
||||
),
|
||||
AddComment: key.NewBinding(
|
||||
key.WithKeys("c"),
|
||||
|
||||
Reference in New Issue
Block a user