1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
|
// SPDX-License-Identifier: MIT
package cmd
import (
"fmt"
"strings"
)
type enumType struct {
Enum []string
Default string
selected string
}
func (o enumType) Join() string {
return strings.Join(o.Enum, ",")
}
func (o *enumType) Set(value string) error {
for _, enum := range o.Enum {
if strings.EqualFold(enum, value) {
o.selected = value
return nil
}
}
return fmt.Errorf("%v", o.Allowed())
}
func (o *enumType) Allowed() string {
return fmt.Sprintf("allowed values are %s", o.Join())
}
func (o *enumType) GetDefaultText() string {
return fmt.Sprintf("%s, %s", o.Default, o.Allowed())
}
func (o enumType) Get() any {
return o.String()
}
func (o enumType) String() string {
if o.selected == "" {
return o.Default
}
return o.selected
}
|