Golang terminal dashboard
Go to file
Caleb Bassi 7d98eb0bf4 File renaming 2018-09-06 14:15:57 -07:00
_docs Add readthedocs Doc 2016-03-09 17:12:59 -05:00
_examples File renaming 2018-09-06 14:15:57 -07:00
debug Fix https://github.com/gizak/termui/issues/97 2017-05-02 22:11:46 +08:00
extra add missing characters 2017-07-17 19:24:37 +09:00
scripts File renaming 2018-09-06 14:15:57 -07:00
test Update copyright 2017-01-14 01:07:43 -05:00
.gitignore Remove panicparse 2018-09-06 13:57:56 -07:00
.travis.yml Update travis config 2015-03-20 13:06:29 -04:00
Gopkg.lock Remove panicparse 2018-09-06 13:57:56 -07:00
Gopkg.toml Remove panicparse 2018-09-06 13:57:56 -07:00
LICENSE Initial commit 2015-02-03 09:09:27 -05:00
README.md Update README 2018-08-01 19:34:08 -07:00
barchart.go Merge pull request #118 from bcicen/barchart-numfmt 2018-08-16 20:37:24 -07:00
block.go Update copyright 2017-01-14 01:07:43 -05:00
block_common.go Update copyright 2017-01-14 01:07:43 -05:00
block_test.go Update copyright 2017-01-14 01:07:43 -05:00
block_windows.go add missing characters 2017-07-17 19:24:37 +09:00
buffer.go Update copyright 2017-01-14 01:07:43 -05:00
buffer_test.go Update copyright 2017-01-14 01:07:43 -05:00
canvas.go Update copyright 2017-01-14 01:07:43 -05:00
canvas_test.go Update copyright 2017-01-14 01:07:43 -05:00
doc.go Update copyright 2017-01-14 01:07:43 -05:00
events.go Merge pull request #147 from kenan-rhoton/CloseInit 2018-08-16 23:04:33 -07:00
events_test.go Update copyright 2017-01-14 01:07:43 -05:00
gauge.go Update copyright 2017-01-14 01:07:43 -05:00
grid.go spelling: implements 2016-03-14 05:47:25 +00:00
grid_test.go Update copyright 2017-01-14 01:07:43 -05:00
helper.go 256 color support 2018-08-16 19:02:36 -07:00
helper_test.go Update copyright 2017-01-14 01:07:43 -05:00
linechart.go Merge pull request #81 from uber-archive/mjr-multi-series 2018-08-16 17:31:03 -07:00
linechart_others.go Update copyright 2017-01-14 01:07:43 -05:00
linechart_windows.go Update copyright 2017-01-14 01:07:43 -05:00
list.go spelling: interrupt 2016-03-14 05:47:50 +00:00
mbarchart.go add custom number format func to mbarchart 2017-03-10 12:27:16 +11:00
mkdocs.yml Add readthedocs Doc 2016-03-09 17:12:59 -05:00
par.go Update copyright 2017-01-14 01:07:43 -05:00
par_test.go Update copyright 2017-01-14 01:07:43 -05:00
piechart.go Cleanup piechart 2018-08-16 20:22:32 -07:00
pos.go Update copyright 2017-01-14 01:07:43 -05:00
pos_test.go Update copyright 2017-01-14 01:07:43 -05:00
render.go Remove panicparse 2018-09-06 13:57:56 -07:00
sparkline.go spelling: sparklines 2016-03-14 05:49:04 +00:00
table.go Fix table horizontal separator bug. 2017-07-09 21:30:34 +05:30
textbuilder.go 256 color support 2018-08-16 19:02:36 -07:00
textbuilder_test.go Update copyright 2017-01-14 01:07:43 -05:00
theme.go 256 color support 2018-08-16 19:02:36 -07:00
theme_test.go Update copyright 2017-01-14 01:07:43 -05:00
widget.go Update copyright 2017-01-14 01:07:43 -05:00

README.md

termui Build Status Doc Status

demo cast under osx 10.10; Terminal.app; Menlo Regular 12pt.)

termui is a cross-platform, easy-to-compile, and fully-customizable terminal dashboard. It is inspired by blessed-contrib, but purely in Go.

Now version v2 has arrived! It brings new event system, new theme system, new Buffer interface and specific colour text rendering. (some docs are missing, but it will be completed soon!)

Installation

master mirrors v2 branch, to install:

go get -u github.com/gizak/termui

It is recommanded to use locked deps by using dep: move to termui src directory then run dep ensure.

For the compatible reason, you can choose to install the legacy version of termui:

go get gopkg.in/gizak/termui.v1

Usage

Layout

To use termui, the very first thing you may want to know is how to manage layout. termui offers two ways of doing this, known as absolute layout and grid layout.

Absolute layout

Each widget has an underlying block structure which basically is a box model. It has border, label and padding properties. A border of a widget can be chosen to hide or display (with its border label), you can pick a different front/back colour for the border as well. To display such a widget at a specific location in terminal window, you need to assign .X, .Y, .Height, .Width values for each widget before sending it to .Render. Let's demonstrate these by a code snippet:

	import ui "github.com/gizak/termui" // <- ui shortcut, optional

	func main() {
		err := ui.Init()
		if err != nil {
			panic(err)
		}
		defer ui.Close()

		p := ui.NewPar(":PRESS q TO QUIT DEMO")
		p.Height = 3
		p.Width = 50
		p.TextFgColor = ui.ColorWhite
		p.BorderLabel = "Text Box"
		p.BorderFg = ui.ColorCyan

		g := ui.NewGauge()
		g.Percent = 50
		g.Width = 50
		g.Height = 3
		g.Y = 11
		g.BorderLabel = "Gauge"
		g.BarColor = ui.ColorRed
		g.BorderFg = ui.ColorWhite
		g.BorderLabelFg = ui.ColorCyan

		ui.Render(p, g) // feel free to call Render, it's async and non-block

		// event handler...
	}

Note that components can be overlapped (I'd rather call this a feature...), Render(rs ...Renderer) renders its args from left to right (i.e. each component's weight is arising from left to right).

Grid layout:

grid

Grid layout uses 12 columns grid system with expressive syntax. To use Grid, all we need to do is build a widget tree consisting of Rows and Cols (Actually a Col is also a Row but with a widget endpoint attached).

	import ui "github.com/gizak/termui"
	// init and create widgets...

	// build
	ui.Body.AddRows(
		ui.NewRow(
			ui.NewCol(6, 0, widget0),
			ui.NewCol(6, 0, widget1)),
		ui.NewRow(
			ui.NewCol(3, 0, widget2),
			ui.NewCol(3, 0, widget30, widget31, widget32),
			ui.NewCol(6, 0, widget4)))

	// calculate layout
	ui.Body.Align()

	ui.Render(ui.Body)

Events

termui ships with a http-like event mux handling system. All events are channeled up from different sources (typing, click, windows resize, custom event) and then encoded as universal Event object. Event.Path indicates the event type and Event.Data stores the event data struct. Add a handler to a certain event is easy as below:

	// handle key q pressing
	ui.Handle("/sys/kbd/q", func(ui.Event) {
		// press q to quit
		ui.StopLoop()
	})

	ui.Handle("/sys/kbd/C-x", func(ui.Event) {
		// handle Ctrl + x combination
	})

	ui.Handle("/sys/kbd", func(ui.Event) {
		// handle all other key pressing
	})

	// handle a 1s timer
	ui.Handle("/timer/1s", func(e ui.Event) {
		t := e.Data.(ui.EvtTimer)
		// t is a EvtTimer
		if t.Count%2 ==0 {
			// do something
		}
	})

	ui.Loop() // block until StopLoop is called

Widgets

Click image to see the corresponding demo codes.

par list gauge linechart barchart barchart sparklines table

GoDoc

godoc

TODO

  • Grid layout
  • Event system
  • Canvas widget
  • Refine APIs
  • Focusable widgets

Changelog

License

This library is under the MIT License