All Projects → dixonwille → Wmenu

dixonwille / Wmenu

Licence: mit
An easy to use menu structure for cli applications that prompts users to make choices.

Programming Languages

go
31211 projects - #10 most used programming language
golang
3204 projects

Labels

Projects that are alternatives of or similar to Wmenu

Cli Menu
🖥 Build beautiful PHP CLI menus. Simple yet Powerful. Expressive DSL.
Stars: ✭ 1,776 (+1266.15%)
Mutual labels:  cli, menu
Arkade
Open Source Kubernetes Marketplace
Stars: ✭ 2,343 (+1702.31%)
Mutual labels:  cli
Obmenu Generator
A fast menu generator for the Openbox Window Manager.
Stars: ✭ 127 (-2.31%)
Mutual labels:  menu
Pipcorn
🍿 Watch YouTube videos on your Mac via CLI
Stars: ✭ 128 (-1.54%)
Mutual labels:  cli
Neix
neix - a RSS/Atom feed reader for your terminal.
Stars: ✭ 128 (-1.54%)
Mutual labels:  cli
Madonctl
CLI client for the Mastodon social network API
Stars: ✭ 129 (-0.77%)
Mutual labels:  cli
Grmon
Command line monitoring for goroutines
Stars: ✭ 1,703 (+1210%)
Mutual labels:  cli
Procs
A modern replacement for ps written in Rust
Stars: ✭ 2,435 (+1773.08%)
Mutual labels:  cli
Slap
Painless shell argument parsing and dependency check.
Stars: ✭ 130 (+0%)
Mutual labels:  cli
Awesome Wp Cli
A curated list of packages and resources for WP-CLI, the command-line interface for WordPress.
Stars: ✭ 129 (-0.77%)
Mutual labels:  cli
Speedtest Go
CLI and Go API to Test Internet Speed using speedtest.net
Stars: ✭ 128 (-1.54%)
Mutual labels:  cli
Mhy
🧩 A zero-config, out-of-the-box, multi-purpose toolbox and development environment
Stars: ✭ 128 (-1.54%)
Mutual labels:  cli
Interact
A Golang utility belt for interacting with the user over a CLI
Stars: ✭ 129 (-0.77%)
Mutual labels:  cli
Typex
[TOOL, CLI] - Filter and examine Go type structures, interfaces and their transitive dependencies and relationships. Export structural types as TypeScript value object or bare type representations.
Stars: ✭ 128 (-1.54%)
Mutual labels:  cli
Kui
A hybrid command-line/UI development experience for cloud-native development
Stars: ✭ 2,052 (+1478.46%)
Mutual labels:  cli
Anirip
🎬 A Crunchyroll show/season ripper
Stars: ✭ 127 (-2.31%)
Mutual labels:  cli
Bbrun
Run Bitbucket Pipelines locally
Stars: ✭ 127 (-2.31%)
Mutual labels:  cli
Node Appletv
A node module for interacting with an Apple TV (4th-generation or later) over the Media Remote Protocol.
Stars: ✭ 129 (-0.77%)
Mutual labels:  cli
Natrium
A pre-build (Swift) script to alter your Xcode project at pre-build-time per environment, build configuration and target.
Stars: ✭ 131 (+0.77%)
Mutual labels:  cli
Quickwall
Set latest wallpapers from Unsplash from the commandline
Stars: ✭ 131 (+0.77%)
Mutual labels:  cli

WMenuBuild Status codecov

Package wmenu creates menus for cli programs. It uses wlog for its interface with the command line. It uses os.Stdin, os.Stdout, and os.Stderr with concurrency by default. wmenu allows you to change the color of the different parts of the menu. This package also creates it's own error structure so you can type assert if you need to. wmenu will validate all responses before calling any function. It will also figure out which function should be called so you don't have to.

Watch example

Import

Post Go1.11

import "github.com/dixonwille/wmenu/v5"

Pre Go1.11

I try and keep up with my tags. To use the version and stable it is recommended to use govendor or another vendoring tool that allows you to build your project for specific tags.

govendor fetch github.com/dixonwille/[email protected]

The above will grab the latest v4 at that time and mark it. It will then be stable for you to use.

I will try to support as many versions as possable but please be patient.

V1.0.0 - Major Release Go Report Card GoDoc

V2.0.0 - Allowing an interface to be passed in for options Go Report Card GoDoc

V3.0.0 - Pass in the option to that option's function Go Report Card GoDoc

V4.0.0 - Now have an Action that supports multiple options Go Report Card GoDoc

v5.0.0 - Support Go Mods

https://pkg.go.dev/github.com/dixonwille/wmenu/v5

Features

  • Force single selection
  • Allow multiple selection
  • Change the delimiter
  • Change the color of different parts of the menu
  • Easily see which option(s) are default
  • Change the symbol used for default option(s)
  • Ask simple yes and no questions
  • Validate all responses before calling any functions
  • With yes and no can accept:
    • yes, Yes, YES, y, Y
    • no, No, NO, n, N
  • Figure out which Action should be called (Options, Default, or Multiple Action)
  • Re-ask question if invalid response up to a certain number of times
  • Can change max number of times to ask before failing output
  • Change reader and writer
  • Clear the screen whenever the menu is brought up
  • Has its own error structure so you can type assert menu errors

V2 - Adds these Features

  • Allowing any interface to be passed through for the options.

V3 - Adds these Features

  • Pass the option chosen to that options function

V4 - Adds these Features

  • Have one function for both single and multiple select. Allowing the user to an easier way of handeling the request.

v5 - Support Go Mods

  • No other change except you should import with the following now
import "github.com/dixonwille/wmenu/v5"

Usage

This is a simple use of the package. (NOTE: THIS IS A V4 SAMPLE)

menu := wmenu.NewMenu("What is your favorite food?")
menu.Action(func (opts []wmenu.Opt) error {fmt.Printf(opts[0].Text + " is your favorite food."); return nil})
menu.Option("Pizza", nil, true, nil)
menu.Option("Ice Cream", nil, false, nil)
menu.Option("Tacos", nil, false, func(opt wmenu.Opt) error {
  fmt.Printf("Tacos are great")
  return nil
})
err := menu.Run()
if err != nil{
  log.Fatal(err)
}

The output would look like this:

1) *Pizza
2) Ice Cream
3) Tacos
What is your favorite food?

If the user just presses [Enter] then the option(s) with the * will be selected. This indicates that it is a default function. If they choose 1 then they would see Ice Cream is your favorite food.. This used the Action's function because the option selected didn't have a function along with it. But if they choose 2 they would see Tacos are great. That option did have a function with it which take precedence over Action.

You can you also use:

menu.AllowMultiple()

This will allow the user to select multiple options. The default delimiter is a [space], but can be changed by using:

menu.SetSeperator("some string")

Another feature is the ability to ask yes or no questions.

menu.IsYesNo(0)

This will remove any options previously added options and hide the ones used for the menu. It will simply just ask yes or no. Menu will parse and validate the response for you. This option will always call the Action's function and pass in the option that was selected.

V3+ - Release

Allows the user to pass anything for the value so it can be retrieved later in the function. The following is to show case the power of this.

The following was written in V3 but the concept holds for V4. V4 just changed actFunc to be func([]wmenu.Opt) error instead.

type NameEntity struct {
  FirstName string
  LastName  string
}

optFunc := func(opt wmenu.Opt) error {
  fmt.Println("Option 1 was chosen.")
  return nil
}
actFunc := func(opt wmenu.Opt) error {
  name, ok := opt.Value.(NameEntity)
  if !ok {
    log.Fatal("Could not cast option's value to NameEntity")
  }
  fmt.Printf("%s has an id of %d.\n", opt.Text, opt.ID)
  fmt.Printf("Hello, %s %s.\n", name.FirstName, name.LastName)
  return nil
}
menu := NewMenu("Choose an option.")
menu.ChangeReaderWriter(reader, os.Stdout, os.Stderr)
menu.Action(actFunc)
menu.Option("Option 1", NameEntity{"Bill", "Bob"}, true, optFunc)
menu.Option("Option 2", NameEntity{"John", "Doe"}, false, nil)
menu.Option("Option 3", NameEntity{"Jane", "Doe"}, false, nil)
err := menu.Run()
if err != nil {
  log.Fatal(err)
}

The immediate output would be:

Output:
1) *Option 1
2) Option 2
3) Option 3
Choose an option.

Now if the user pushes [ENTER] the output would be Options 0 was chosen.. But now if either option 1 or 2 were chosen it would cast the options value to a NameEntity allowing the function to be able to gather both the first name and last name of the NameEntity. If you want though you can just pass in nil as the value or even a string ("hello") since both of these implement the empty interface required by value. Just make sure to cast the values so you can use them appropriately.

Further Reading

This whole package has been documented and has a few examples in:

You should read the docs to find all functions and structures at your finger tips.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].