mirror of https://github.com/mum4k/termdash.git
190 lines
5.2 KiB
Go
190 lines
5.2 KiB
Go
// Copyright 2018 Google Inc.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
// Binary textdemo displays a couple of Text widgets.
|
|
// Exist when 'q' is pressed.
|
|
package main
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"math/rand"
|
|
"time"
|
|
|
|
"github.com/mum4k/termdash/terminal/tcell"
|
|
|
|
"github.com/mum4k/termdash"
|
|
"github.com/mum4k/termdash/cell"
|
|
"github.com/mum4k/termdash/container"
|
|
"github.com/mum4k/termdash/linestyle"
|
|
"github.com/mum4k/termdash/terminal/terminalapi"
|
|
"github.com/mum4k/termdash/widgets/text"
|
|
)
|
|
|
|
// quotations are used as text that is rolled up in a text widget.
|
|
var quotations = []string{
|
|
"When some see coincidence, I see consequence. When others see chance, I see cost.",
|
|
"You cannot pass....I am a servant of the Secret Fire, wielder of the flame of Anor. You cannot pass. The dark fire will not avail you, flame of Udûn. Go back to the Shadow! You cannot pass.",
|
|
"I'm going to make him an offer he can't refuse.",
|
|
"May the Force be with you.",
|
|
"The stuff that dreams are made of.",
|
|
"There's no place like home.",
|
|
"Show me the money!",
|
|
"I want to be alone.",
|
|
"I'll be back.",
|
|
}
|
|
|
|
// writeLines writes a line of text to the text widget every delay.
|
|
// Exits when the context expires.
|
|
func writeLines(ctx context.Context, t *text.Text, delay time.Duration) {
|
|
s := rand.NewSource(time.Now().Unix())
|
|
r := rand.New(s)
|
|
ticker := time.NewTicker(delay)
|
|
defer ticker.Stop()
|
|
|
|
for {
|
|
select {
|
|
case <-ticker.C:
|
|
i := r.Intn(len(quotations))
|
|
if err := t.Write(fmt.Sprintf("%s\n", quotations[i])); err != nil {
|
|
panic(err)
|
|
}
|
|
|
|
case <-ctx.Done():
|
|
return
|
|
}
|
|
}
|
|
}
|
|
|
|
func main() {
|
|
t, err := tcell.New()
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
defer t.Close()
|
|
|
|
ctx, cancel := context.WithCancel(context.Background())
|
|
borderless, err := text.New()
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
if err := borderless.Write("Text without border."); err != nil {
|
|
panic(err)
|
|
}
|
|
|
|
unicode, err := text.New()
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
if err := unicode.Write("你好,世界!"); err != nil {
|
|
panic(err)
|
|
}
|
|
|
|
trimmed, err := text.New()
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
if err := trimmed.Write("Trims lines that don't fit onto the canvas because they are too long for its width.."); err != nil {
|
|
panic(err)
|
|
}
|
|
|
|
wrapped, err := text.New(text.WrapAtRunes())
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
if err := wrapped.Write("Supports", text.WriteCellOpts(cell.FgColor(cell.ColorRed))); err != nil {
|
|
panic(err)
|
|
}
|
|
if err := wrapped.Write(" colors", text.WriteCellOpts(cell.FgColor(cell.ColorNumber(33)))); err != nil {
|
|
panic(err)
|
|
}
|
|
if err := wrapped.Write(" and"); err != nil {
|
|
panic(err)
|
|
}
|
|
if err := wrapped.Write(" font ", text.WriteCellOpts(cell.Bold(), cell.Italic())); err != nil {
|
|
panic(err)
|
|
}
|
|
if err := wrapped.Write("modifiers", text.WriteCellOpts(cell.Underline(), cell.Italic())); err != nil {
|
|
panic(err)
|
|
}
|
|
if err := wrapped.Write(". Wraps long lines at rune boundaries if the WrapAtRunes() option is provided.\nSupports newline character to\ncreate\nnewlines\nmanually.\nTrims the content if it is too long.\n\n\n\nToo long."); err != nil {
|
|
panic(err)
|
|
}
|
|
|
|
rolled, err := text.New(text.RollContent(), text.WrapAtWords())
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
if err := rolled.Write("Rolls the content upwards if RollContent() option is provided.\nSupports keyboard and mouse scrolling.\n\n"); err != nil {
|
|
panic(err)
|
|
}
|
|
go writeLines(ctx, rolled, 1*time.Second)
|
|
|
|
c, err := container.New(
|
|
t,
|
|
container.Border(linestyle.Light),
|
|
container.BorderTitle("PRESS Q TO QUIT"),
|
|
container.SplitVertical(
|
|
container.Left(
|
|
container.SplitHorizontal(
|
|
container.Top(
|
|
container.SplitHorizontal(
|
|
container.Top(
|
|
container.SplitVertical(
|
|
container.Left(
|
|
container.PlaceWidget(borderless),
|
|
),
|
|
container.Right(
|
|
container.Border(linestyle.Light),
|
|
container.BorderTitle("你好,世界!"),
|
|
container.PlaceWidget(unicode),
|
|
),
|
|
),
|
|
),
|
|
container.Bottom(
|
|
container.Border(linestyle.Light),
|
|
container.BorderTitle("Trims lines"),
|
|
container.PlaceWidget(trimmed),
|
|
),
|
|
),
|
|
),
|
|
container.Bottom(
|
|
container.Border(linestyle.Light),
|
|
container.BorderTitle("Wraps lines at rune boundaries"),
|
|
container.PlaceWidget(wrapped),
|
|
),
|
|
),
|
|
),
|
|
container.Right(
|
|
container.Border(linestyle.Light),
|
|
container.BorderTitle("Rolls and scrolls content wrapped at words"),
|
|
container.PlaceWidget(rolled),
|
|
),
|
|
),
|
|
)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
|
|
quitter := func(k *terminalapi.Keyboard) {
|
|
if k.Key == 'q' || k.Key == 'Q' {
|
|
cancel()
|
|
}
|
|
}
|
|
|
|
if err := termdash.Run(ctx, t, c, termdash.KeyboardSubscriber(quitter)); err != nil {
|
|
panic(err)
|
|
}
|
|
}
|