types

package
v1.0.0-rc.62 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Oct 30, 2023 License: MIT Imports: 2 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Action

type Action struct {
	Title string     `json:"title,omitempty"`
	Key   string     `json:"key,omitempty"`
	Type  ActionType `json:"type,omitempty"`

	Text string `json:"text,omitempty"`

	App    *Application `json:"app,omitempty"`
	Target string       `json:"target,omitempty"`

	Exit bool `json:"exit,omitempty"`

	Reload bool `json:"reload,omitempty"`

	Extension string `json:"extension,omitempty"`
	Command   string `json:"command,omitempty"`
	Params    Params `json:"params,omitempty"`
}

type ActionType

type ActionType string
const (
	ActionTypeRun    ActionType = "run"
	ActionTypeOpen   ActionType = "open"
	ActionTypeCopy   ActionType = "copy"
	ActionTypeReload ActionType = "reload"
	ActionTypeEdit   ActionType = "edit"
	ActionTypeExit   ActionType = "exit"
)

type Application

type Application struct {
	Windows string `json:"windows,omitempty"`
	Mac     string `json:"mac,omitempty"`
	Linux   string `json:"linux,omitempty"`
}

type Checkbox

type Checkbox struct {
	Title       string `json:"title"`
	Required    bool   `json:"required,omitempty"`
	Type        string `json:"type"`
	Label       string `json:"label,omitempty"`
	Placeholder string `json:"placeholder,omitempty"`
	Default     bool   `json:"default,omitempty"`
}

type CommandInput

type CommandInput struct {
	Command string         `json:"command"`
	Params  map[string]any `json:"params"`
	Query   string         `json:"query,omitempty"`
}

type CommandMode

type CommandMode string
const (
	CommandModeList   CommandMode = "list"
	CommandModeDetail CommandMode = "detail"
	CommandModeTTY    CommandMode = "tty"
	CommandModeSilent CommandMode = "silent"
)

type CommandRef

type CommandRef struct {
	Extension string         `json:"extension,omitempty"`
	Command   string         `json:"command,omitempty"`
	Params    map[string]any `json:"params,omitempty"`
}

type CommandSpec

type CommandSpec struct {
	Name   string      `json:"name"`
	Title  string      `json:"title"`
	Hidden bool        `json:"hidden,omitempty"`
	Params []Param     `json:"params,omitempty"`
	Mode   CommandMode `json:"mode,omitempty"`
}

type Detail

type Detail struct {
	Title     string    `json:"title,omitempty"`
	Actions   []Action  `json:"actions,omitempty"`
	Highlight Highlight `json:"highlight,omitempty"`
	Text      string    `json:"text,omitempty"`
}
type DropDownItem struct {
	Title string `json:"title"`
	Value any    `json:"value"`
}

type Highlight

type Highlight string
const (
	HighlightMarkdown Highlight = "markdown"
	HighlightAnsi     Highlight = "ansi"
)

type List

type List struct {
	Title     string     `json:"title,omitempty"`
	Items     []ListItem `json:"items,omitempty"`
	Dynamic   bool       `json:"dynamic,omitempty"`
	EmptyText string     `json:"emptyText,omitempty"`
	Actions   []Action   `json:"actions,omitempty"`
}

type ListItem

type ListItem struct {
	Id          string   `json:"id,omitempty"`
	Title       string   `json:"title"`
	Subtitle    string   `json:"subtitle,omitempty"`
	Accessories []string `json:"accessories,omitempty"`
	Actions     []Action `json:"actions,omitempty"`
}

type Manifest

type Manifest struct {
	Title       string        `json:"title"`
	Description string        `json:"description,omitempty"`
	Root        []RootItem    `json:"root,omitempty"`
	Commands    []CommandSpec `json:"commands"`
}

type Param

type Param struct {
	Name        string    `json:"name"`
	Type        ParamType `json:"type"`
	Description string    `json:"description,omitempty"`
	Required    bool      `json:"required,omitempty"`
	Default     any       `json:"default,omitempty"`
}

type ParamType

type ParamType string
const (
	ParamTypeString  ParamType = "string"
	ParamTypeBoolean ParamType = "boolean"
	ParamTypeNumber  ParamType = "number"
)

type Params

type Params map[string]any

func (*Params) UnmarshalJSON

func (p *Params) UnmarshalJSON(b []byte) error

type RootItem

type RootItem struct {
	Title     string         `json:"title"`
	Extension string         `json:"extension"`
	Command   string         `json:"command"`
	Params    map[string]any `json:"params"`
}

type Select

type Select struct {
	Title       string         `json:"title"`
	Required    bool           `json:"required,omitempty"`
	Type        string         `json:"type"`
	Placeholder string         `json:"placeholder,omitempty"`
	Default     any            `json:"default,omitempty"`
	Items       []DropDownItem `json:"items,omitempty"`
}

type Text

type Text struct {
	Title       string `json:"title"`
	Type        string `json:"type"`
	Placeholder string `json:"placeholder,omitempty"`
	Default     string `json:"default,omitempty"`
	Required    bool   `json:"required,omitempty"`
}

type TextArea

type TextArea struct {
	Title       string `json:"title"`
	Required    bool   `json:"required,omitempty"`
	Type        string `json:"type"`
	Placeholder string `json:"placeholder,omitempty"`
	Default     string `json:"default,omitempty"`
}

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL