elvish/pkg/eval/builtin_fn_styled.go
2019-12-23 20:00:59 +00:00

98 lines
2.4 KiB
Go

package eval
import (
"errors"
"fmt"
"github.com/elves/elvish/pkg/eval/vals"
"github.com/elves/elvish/pkg/parse"
"github.com/elves/elvish/pkg/ui"
)
var errStyledSegmentArgType = errors.New("argument to styled-segment must be a string or a styled segment")
func init() {
addBuiltinFns(map[string]interface{}{
"styled-segment": styledSegment,
"styled": Styled,
})
}
// Turns a string or ui.Segment into a new ui.Segment with the attributes
// from the supplied options applied to it. If the input is already a Segment its
// attributes are copied and modified.
func styledSegment(options RawOptions, input interface{}) (*ui.Segment, error) {
var text string
var style ui.Style
switch input := input.(type) {
case string:
text = input
case *ui.Segment:
text = input.Text
style = input.Style
default:
return nil, errStyledSegmentArgType
}
if err := style.ImportFromOptions(options); err != nil {
return nil, err
}
return &ui.Segment{
Text: text,
Style: style,
}, nil
}
// Styled turns a string, a ui.Segment or a ui.Text into a ui.Text by applying
// the given stylings.
func Styled(fm *Frame, input interface{}, stylings ...interface{}) (ui.Text, error) {
var text ui.Text
switch input := input.(type) {
case string:
text = ui.Text{&ui.Segment{
Text: input,
Style: ui.Style{},
}}
case *ui.Segment:
text = ui.Text{input.Clone()}
case ui.Text:
text = input.Clone()
default:
return nil, fmt.Errorf("expected string, styled segment or styled text; got %s", vals.Kind(input))
}
for _, styling := range stylings {
switch styling := styling.(type) {
case string:
parsedStyling := ui.ParseStyling(styling)
if parsedStyling == nil {
return nil, fmt.Errorf("%s is not a valid style transformer", parse.Quote(styling))
}
text = ui.StyleText(text, parsedStyling)
case Callable:
for i, seg := range text {
vs, err := fm.CaptureOutput(styling, []interface{}{seg}, NoOpts)
if err != nil {
return nil, err
}
if n := len(vs); n != 1 {
return nil, fmt.Errorf("styling function must return a single segment; got %d values", n)
} else if styledSegment, ok := vs[0].(*ui.Segment); !ok {
return nil, fmt.Errorf("styling function must return a segment; got %s", vals.Kind(vs[0]))
} else {
text[i] = styledSegment
}
}
default:
return nil, fmt.Errorf("need string or callable; got %s", vals.Kind(styling))
}
}
return text, nil
}