2021-05-12 05:36:03 +00:00
|
|
|
package discord
|
|
|
|
|
2021-05-30 04:28:37 +00:00
|
|
|
import (
|
2021-10-10 22:44:31 +00:00
|
|
|
"fmt"
|
2021-05-30 04:28:37 +00:00
|
|
|
|
2021-06-02 02:53:19 +00:00
|
|
|
"github.com/diamondburned/arikawa/v3/utils/json"
|
2022-02-14 03:15:28 +00:00
|
|
|
"github.com/diamondburned/arikawa/v3/utils/json/option"
|
2021-10-10 22:44:31 +00:00
|
|
|
"github.com/pkg/errors"
|
2021-05-30 04:28:37 +00:00
|
|
|
)
|
|
|
|
|
2021-05-12 05:36:03 +00:00
|
|
|
// ComponentType is the type of a component.
|
|
|
|
type ComponentType uint
|
|
|
|
|
|
|
|
const (
|
2021-10-10 22:44:31 +00:00
|
|
|
_ ComponentType = iota
|
|
|
|
ActionRowComponentType
|
2021-05-30 04:28:37 +00:00
|
|
|
ButtonComponentType
|
2021-08-10 21:02:30 +00:00
|
|
|
SelectComponentType
|
2022-02-14 03:15:28 +00:00
|
|
|
TextInputComponentType
|
2021-05-12 05:36:03 +00:00
|
|
|
)
|
|
|
|
|
2021-10-10 22:44:31 +00:00
|
|
|
// String formats Type's name as a string.
|
|
|
|
func (t ComponentType) String() string {
|
|
|
|
switch t {
|
|
|
|
case ActionRowComponentType:
|
|
|
|
return "ActionRow"
|
|
|
|
case ButtonComponentType:
|
|
|
|
return "Button"
|
|
|
|
case SelectComponentType:
|
|
|
|
return "Select"
|
2022-02-14 03:15:28 +00:00
|
|
|
case TextInputComponentType:
|
|
|
|
return "TextInput"
|
2021-10-10 22:44:31 +00:00
|
|
|
default:
|
|
|
|
return fmt.Sprintf("ComponentType(%d)", int(t))
|
|
|
|
}
|
2021-05-30 04:28:37 +00:00
|
|
|
}
|
|
|
|
|
2021-10-10 22:44:31 +00:00
|
|
|
// ContainerComponents is primarily used for unmarshaling. It is the top-level
|
|
|
|
// type for component lists.
|
|
|
|
type ContainerComponents []ContainerComponent
|
|
|
|
|
|
|
|
// UnmarshalJSON unmarshals JSON into the component. It does type-checking and
|
|
|
|
// will only accept container components.
|
|
|
|
func (c *ContainerComponents) UnmarshalJSON(b []byte) error {
|
|
|
|
var jsons []json.Raw
|
|
|
|
if err := json.Unmarshal(b, &jsons); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
*c = make([]ContainerComponent, len(jsons))
|
|
|
|
|
|
|
|
for i, b := range jsons {
|
|
|
|
p, err := ParseComponent(b)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
cc, ok := p.(ContainerComponent)
|
|
|
|
if !ok {
|
|
|
|
return fmt.Errorf("expected container, got %T", p)
|
|
|
|
}
|
|
|
|
(*c)[i] = cc
|
2021-05-30 04:28:37 +00:00
|
|
|
}
|
|
|
|
|
2021-10-10 22:44:31 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Component is a component that can be attached to an interaction response. A
|
|
|
|
// Component is either an InteractiveComponent or a ContainerComponent. See
|
|
|
|
// those appropriate types for more information.
|
2021-11-25 23:02:24 +00:00
|
|
|
//
|
|
|
|
// The following types satisfy this interface:
|
|
|
|
//
|
|
|
|
// - *ActionRowComponent
|
|
|
|
// - *ButtonComponent
|
|
|
|
// - *SelectComponent
|
|
|
|
//
|
2021-10-10 22:44:31 +00:00
|
|
|
type Component interface {
|
|
|
|
// Type returns the type of the underlying component.
|
|
|
|
Type() ComponentType
|
|
|
|
_cmp()
|
2021-05-30 04:28:37 +00:00
|
|
|
}
|
|
|
|
|
2021-10-10 22:44:31 +00:00
|
|
|
// InteractiveComponent extends the Component for components that are
|
|
|
|
// interactible, or components that aren't containers (like ActionRow). This is
|
|
|
|
// useful for ActionRow to type-check that no nested ActionRows are allowed.
|
2021-11-25 23:02:24 +00:00
|
|
|
//
|
|
|
|
// The following types satisfy this interface:
|
|
|
|
//
|
|
|
|
// - *ButtonComponent
|
|
|
|
// - *SelectComponent
|
|
|
|
//
|
2021-10-10 22:44:31 +00:00
|
|
|
type InteractiveComponent interface {
|
|
|
|
Component
|
|
|
|
// ID returns the ID of the underlying component.
|
|
|
|
ID() ComponentID
|
|
|
|
_icp()
|
2021-05-30 04:28:37 +00:00
|
|
|
}
|
|
|
|
|
2021-10-10 22:44:31 +00:00
|
|
|
// ContainerComponent is the opposite of InteractiveComponent: it describes
|
|
|
|
// components that only contain other components. The only component that
|
|
|
|
// satisfies that is ActionRow.
|
2021-11-25 23:02:24 +00:00
|
|
|
//
|
|
|
|
// The following types satisfy this interface:
|
|
|
|
//
|
|
|
|
// - *ActionRowComponent
|
|
|
|
//
|
2021-10-10 22:44:31 +00:00
|
|
|
type ContainerComponent interface {
|
|
|
|
Component
|
|
|
|
_ctn()
|
2021-05-30 04:28:37 +00:00
|
|
|
}
|
|
|
|
|
2021-10-10 22:44:31 +00:00
|
|
|
// NewComponent returns a new Component from the given type that's matched with
|
|
|
|
// the global ComponentFunc map. If the type is unknown, then Unknown is used.
|
|
|
|
func ParseComponent(b []byte) (Component, error) {
|
2021-05-30 04:28:37 +00:00
|
|
|
var t struct {
|
2021-10-10 22:44:31 +00:00
|
|
|
Type ComponentType
|
2021-05-30 04:28:37 +00:00
|
|
|
}
|
|
|
|
|
2021-10-10 22:44:31 +00:00
|
|
|
if err := json.Unmarshal(b, &t); err != nil {
|
|
|
|
return nil, errors.Wrap(err, "failed to unmarshal component type")
|
2021-05-30 04:28:37 +00:00
|
|
|
}
|
|
|
|
|
2021-10-10 22:44:31 +00:00
|
|
|
var c Component
|
|
|
|
|
2021-05-30 04:28:37 +00:00
|
|
|
switch t.Type {
|
|
|
|
case ActionRowComponentType:
|
2021-10-10 22:44:31 +00:00
|
|
|
c = &ActionRowComponent{}
|
2021-05-30 04:28:37 +00:00
|
|
|
case ButtonComponentType:
|
2021-10-10 22:44:31 +00:00
|
|
|
c = &ButtonComponent{}
|
|
|
|
case SelectComponentType:
|
|
|
|
c = &SelectComponent{}
|
2022-02-14 03:15:28 +00:00
|
|
|
case TextInputComponentType:
|
|
|
|
c = &TextInputComponent{}
|
2021-05-30 04:28:37 +00:00
|
|
|
default:
|
2021-10-10 22:44:31 +00:00
|
|
|
c = &UnknownComponent{typ: t.Type}
|
2021-05-30 04:28:37 +00:00
|
|
|
}
|
|
|
|
|
2021-10-10 22:44:31 +00:00
|
|
|
if err := json.Unmarshal(b, c); err != nil {
|
|
|
|
return nil, errors.Wrap(err, "failed to unmarshal component body")
|
|
|
|
}
|
|
|
|
|
|
|
|
return c, nil
|
2021-05-30 04:28:37 +00:00
|
|
|
}
|
|
|
|
|
2021-10-10 22:44:31 +00:00
|
|
|
// ActionRow is a row of components at the bottom of a message. Its type,
|
|
|
|
// InteractiveComponent, ensures that only non-ActionRow components are allowed
|
|
|
|
// on it.
|
|
|
|
type ActionRowComponent []InteractiveComponent
|
|
|
|
|
|
|
|
// Components wraps the given list of components inside ActionRows if it's not
|
|
|
|
// already in one. This is a convenient function that wraps components inside
|
|
|
|
// ActionRows for the user. It panics if any of the action rows have nested
|
|
|
|
// action rows in them.
|
|
|
|
//
|
|
|
|
// Here's an example of how to use it:
|
|
|
|
//
|
|
|
|
// discord.Components(
|
|
|
|
// discord.TextButtonComponent("Hello, world!"),
|
|
|
|
// discord.Components(
|
|
|
|
// discord.TextButtonComponent("Hello!"),
|
|
|
|
// discord.TextButtonComponent("Delete."),
|
|
|
|
// ),
|
|
|
|
// )
|
|
|
|
//
|
|
|
|
func Components(components ...Component) ContainerComponents {
|
|
|
|
new := make([]ContainerComponent, len(components))
|
|
|
|
|
|
|
|
for i, comp := range components {
|
|
|
|
cc, ok := comp.(ContainerComponent)
|
|
|
|
if !ok {
|
|
|
|
// Wrap. We're asserting that comp is either a ContainerComponent or
|
|
|
|
// an InteractiveComponent. Neither would be a bug, therefore panic.
|
|
|
|
cc = &ActionRowComponent{comp.(InteractiveComponent)}
|
|
|
|
}
|
|
|
|
|
|
|
|
new[i] = cc
|
|
|
|
}
|
|
|
|
|
|
|
|
return new
|
2021-05-12 05:36:03 +00:00
|
|
|
}
|
|
|
|
|
2021-10-10 22:44:31 +00:00
|
|
|
// ComponentsPtr returns the pointer to Components' return. This is a
|
|
|
|
// convenient function.
|
|
|
|
func ComponentsPtr(components ...Component) *ContainerComponents {
|
|
|
|
v := Components(components...)
|
|
|
|
return &v
|
2021-05-12 05:36:03 +00:00
|
|
|
}
|
|
|
|
|
2021-05-30 04:32:05 +00:00
|
|
|
// Type implements the Component interface.
|
2021-10-10 22:44:31 +00:00
|
|
|
func (a *ActionRowComponent) Type() ComponentType {
|
2021-05-30 04:28:37 +00:00
|
|
|
return ActionRowComponentType
|
2021-05-12 05:36:03 +00:00
|
|
|
}
|
|
|
|
|
2021-10-10 22:44:31 +00:00
|
|
|
func (a *ActionRowComponent) _cmp() {}
|
|
|
|
func (a *ActionRowComponent) _ctn() {}
|
|
|
|
|
2021-05-12 05:36:03 +00:00
|
|
|
// MarshalJSON marshals the action row in the format Discord expects.
|
2021-10-10 22:44:31 +00:00
|
|
|
func (a *ActionRowComponent) MarshalJSON() ([]byte, error) {
|
|
|
|
var actionRow struct {
|
|
|
|
Type ComponentType `json:"type"`
|
|
|
|
Components *[]InteractiveComponent `json:"components"`
|
|
|
|
}
|
2021-05-12 05:36:03 +00:00
|
|
|
|
2021-10-10 22:44:31 +00:00
|
|
|
actionRow.Components = (*[]InteractiveComponent)(a)
|
|
|
|
actionRow.Type = a.Type()
|
|
|
|
|
|
|
|
return json.Marshal(actionRow)
|
2021-05-12 05:36:03 +00:00
|
|
|
}
|
|
|
|
|
2021-10-10 22:44:31 +00:00
|
|
|
// UnmarshalJSON unmarshals JSON into the components. It does type-checking and
|
|
|
|
// will only accept interactive components.
|
2021-05-30 04:28:37 +00:00
|
|
|
func (a *ActionRowComponent) UnmarshalJSON(b []byte) error {
|
2021-10-10 22:44:31 +00:00
|
|
|
var row struct {
|
|
|
|
Components []json.Raw `json:"components"`
|
2021-05-30 04:28:37 +00:00
|
|
|
}
|
|
|
|
|
2021-10-10 22:44:31 +00:00
|
|
|
if err := json.Unmarshal(b, &row); err != nil {
|
2021-05-30 04:28:37 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2021-10-10 22:44:31 +00:00
|
|
|
*a = make(ActionRowComponent, len(row.Components))
|
|
|
|
|
|
|
|
for i, b := range row.Components {
|
|
|
|
p, err := ParseComponent(b)
|
|
|
|
if err != nil {
|
|
|
|
return errors.Wrapf(err, "failed to parse component %d", i)
|
2021-05-30 04:28:37 +00:00
|
|
|
}
|
|
|
|
|
2021-10-10 22:44:31 +00:00
|
|
|
ic, ok := p.(InteractiveComponent)
|
|
|
|
if !ok {
|
|
|
|
return fmt.Errorf("expected interactive, got %T", p)
|
|
|
|
}
|
|
|
|
(*a)[i] = ic
|
2021-05-30 04:28:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-10-10 22:44:31 +00:00
|
|
|
// ComponentID is the type for a component's custom ID. It is NOT a snowflake,
|
|
|
|
// but rather a user-defined opaque string.
|
|
|
|
type ComponentID string
|
|
|
|
|
|
|
|
// ComponentEmoji is the emoji displayed on the button before the text. For more
|
|
|
|
// information, see Emoji.
|
|
|
|
type ComponentEmoji struct {
|
|
|
|
ID EmojiID `json:"id,omitempty"`
|
|
|
|
Name string `json:"name,omitempty"`
|
|
|
|
Animated bool `json:"animated,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// ButtonComponentStyle is the style to display a button in. Use one of the
|
|
|
|
// ButtonStyle constructor functions.
|
|
|
|
type ButtonComponentStyle interface {
|
|
|
|
style() int
|
|
|
|
}
|
|
|
|
|
|
|
|
type basicButtonStyle int
|
|
|
|
|
|
|
|
func (s basicButtonStyle) style() int { return int(s) }
|
|
|
|
|
|
|
|
const (
|
|
|
|
_ basicButtonStyle = iota
|
|
|
|
primaryButtonStyle
|
|
|
|
secondaryButtonStyle
|
|
|
|
successButtonStyle
|
|
|
|
dangerButtonStyle
|
|
|
|
linkButtonStyleNum
|
|
|
|
basicButtonStyleLen
|
|
|
|
)
|
|
|
|
|
|
|
|
// PrimaryButtonStyle is a style for a blurple button.
|
|
|
|
func PrimaryButtonStyle() ButtonComponentStyle { return primaryButtonStyle }
|
|
|
|
|
|
|
|
// SecondaryButtonStyle is a style for a grey button.
|
|
|
|
func SecondaryButtonStyle() ButtonComponentStyle { return secondaryButtonStyle }
|
|
|
|
|
|
|
|
// SuccessButtonStyle is a style for a green button.
|
|
|
|
func SuccessButtonStyle() ButtonComponentStyle { return successButtonStyle }
|
|
|
|
|
|
|
|
// DangerButtonStyle is a style for a red button.
|
|
|
|
func DangerButtonStyle() ButtonComponentStyle { return dangerButtonStyle }
|
|
|
|
|
|
|
|
type linkButtonStyle URL
|
|
|
|
|
|
|
|
func (s linkButtonStyle) style() int { return int(linkButtonStyleNum) }
|
|
|
|
|
|
|
|
// LinkButtonStyle is a button style that navigates to a URL.
|
|
|
|
func LinkButtonStyle(url URL) ButtonComponentStyle { return linkButtonStyle(url) }
|
|
|
|
|
|
|
|
// Button is a clickable button that may be added to an interaction
|
2021-08-30 20:15:59 +00:00
|
|
|
// response.
|
2021-05-30 04:28:37 +00:00
|
|
|
type ButtonComponent struct {
|
2021-10-10 22:44:31 +00:00
|
|
|
// Style is one of the button styles.
|
|
|
|
Style ButtonComponentStyle `json:"style"`
|
2021-05-12 05:36:03 +00:00
|
|
|
// CustomID attached to InteractionCreate event when clicked.
|
2021-10-10 22:44:31 +00:00
|
|
|
CustomID ComponentID `json:"custom_id,omitempty"`
|
|
|
|
// Label is the text that appears on the button. It can have maximum 100
|
|
|
|
// characters.
|
|
|
|
Label string `json:"label,omitempty"`
|
|
|
|
// Emoji should have Name, ID and Animated filled.
|
|
|
|
Emoji *ComponentEmoji `json:"emoji,omitempty"`
|
|
|
|
// Disabled determines whether the button is disabled.
|
2021-08-30 20:15:59 +00:00
|
|
|
Disabled bool `json:"disabled,omitempty"`
|
2021-05-12 05:36:03 +00:00
|
|
|
}
|
|
|
|
|
2021-10-10 22:44:31 +00:00
|
|
|
// TextButtonComponent creates a new button with the given label used for the label and
|
|
|
|
// the custom ID.
|
|
|
|
func TextButtonComponent(style ButtonComponentStyle, label string) ButtonComponent {
|
|
|
|
return ButtonComponent{
|
|
|
|
Style: style,
|
|
|
|
Label: label,
|
|
|
|
CustomID: ComponentID(label),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// ID implements the Component interface.
|
|
|
|
func (b *ButtonComponent) ID() ComponentID { return b.CustomID }
|
|
|
|
|
2021-05-30 04:32:05 +00:00
|
|
|
// Type implements the Component interface.
|
2021-10-10 22:44:31 +00:00
|
|
|
func (b *ButtonComponent) Type() ComponentType {
|
2021-05-30 04:28:37 +00:00
|
|
|
return ButtonComponentType
|
|
|
|
}
|
|
|
|
|
2021-10-10 22:44:31 +00:00
|
|
|
func (b *ButtonComponent) _cmp() {}
|
|
|
|
func (b *ButtonComponent) _icp() {}
|
2021-05-12 05:36:03 +00:00
|
|
|
|
2021-10-10 22:44:31 +00:00
|
|
|
// MarshalJSON marshals the button in the format Discord expects.
|
|
|
|
func (b *ButtonComponent) MarshalJSON() ([]byte, error) {
|
|
|
|
if b.Style == nil {
|
|
|
|
b.Style = PrimaryButtonStyle() // Sane default for button.
|
|
|
|
}
|
2021-05-12 05:36:03 +00:00
|
|
|
|
2021-10-10 22:44:31 +00:00
|
|
|
type button ButtonComponent
|
|
|
|
|
|
|
|
type Msg struct {
|
|
|
|
*button
|
|
|
|
Type ComponentType `json:"type"`
|
|
|
|
Style int `json:"style"`
|
|
|
|
URL URL `json:"url,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
msg := Msg{
|
|
|
|
Type: ButtonComponentType,
|
|
|
|
Style: b.Style.style(),
|
|
|
|
button: (*button)(b),
|
|
|
|
}
|
|
|
|
|
|
|
|
if link, ok := b.Style.(linkButtonStyle); ok {
|
|
|
|
msg.URL = URL(link)
|
|
|
|
}
|
|
|
|
|
|
|
|
return json.Marshal(msg)
|
2021-05-12 05:36:03 +00:00
|
|
|
}
|
|
|
|
|
2021-10-10 22:44:31 +00:00
|
|
|
// UnmarshalJSON unmarshals a component JSON into the button. It does NOT do
|
|
|
|
// type-checking; use ParseComponent for that.
|
|
|
|
func (b *ButtonComponent) UnmarshalJSON(j []byte) error {
|
2021-05-30 04:28:37 +00:00
|
|
|
type button ButtonComponent
|
2021-05-12 05:36:03 +00:00
|
|
|
|
2021-10-10 22:44:31 +00:00
|
|
|
msg := struct {
|
|
|
|
*button
|
|
|
|
Style basicButtonStyle `json:"style"`
|
|
|
|
URL URL `json:"url,omitempty"`
|
|
|
|
}{
|
|
|
|
button: (*button)(b),
|
2021-05-12 05:36:03 +00:00
|
|
|
}
|
|
|
|
|
2021-10-10 22:44:31 +00:00
|
|
|
if err := json.Unmarshal(j, &msg); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if 0 > msg.Style || msg.Style >= basicButtonStyleLen {
|
|
|
|
return fmt.Errorf("unknown button style %d", msg.Style)
|
|
|
|
}
|
|
|
|
|
|
|
|
switch msg.Style {
|
|
|
|
case linkButtonStyleNum:
|
|
|
|
b.Style = LinkButtonStyle(msg.URL)
|
|
|
|
default:
|
|
|
|
b.Style = msg.Style
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
2021-05-12 05:36:03 +00:00
|
|
|
}
|
2021-05-30 04:28:37 +00:00
|
|
|
|
2021-10-10 22:44:31 +00:00
|
|
|
// Select is a clickable button that may be added to an interaction
|
2021-08-30 20:15:59 +00:00
|
|
|
// response.
|
2021-08-10 21:02:30 +00:00
|
|
|
type SelectComponent struct {
|
2021-10-10 22:44:31 +00:00
|
|
|
// Options are the choices in the select.
|
|
|
|
Options []SelectOption `json:"options"`
|
|
|
|
// CustomID is the custom unique ID.
|
|
|
|
CustomID ComponentID `json:"custom_id,omitempty"`
|
|
|
|
// Placeholder is the custom placeholder text if nothing is selected. Max
|
|
|
|
// 100 characters.
|
|
|
|
Placeholder string `json:"placeholder,omitempty"`
|
|
|
|
// ValueLimits is the minimum and maximum number of items that can be
|
|
|
|
// chosen. The default is [1, 1] if ValueLimits is a zero-value.
|
|
|
|
ValueLimits [2]int `json:"-"`
|
|
|
|
// Disabled disables the select if true.
|
|
|
|
Disabled bool `json:"disabled,omitempty"`
|
2021-08-10 21:02:30 +00:00
|
|
|
}
|
|
|
|
|
2021-10-10 22:44:31 +00:00
|
|
|
// SelectOption is an option in the select component.
|
|
|
|
type SelectOption struct {
|
|
|
|
// Label is the user-facing name of the option. Max 100 characters.
|
|
|
|
Label string `json:"label"`
|
|
|
|
// Value is the internal value that is echoed back to the program. It's
|
|
|
|
// similar to the custom ID. Max 100 characters.
|
|
|
|
Value string `json:"value"`
|
|
|
|
// Description is the additional description of an option.
|
|
|
|
Description string `json:"description,omitempty"`
|
|
|
|
// Emoji is the optional emoji object.
|
|
|
|
Emoji *ComponentEmoji `json:"emoji,omitempty"`
|
|
|
|
// Default will render this option as selected by default if true.
|
|
|
|
Default bool `json:"default,omitempty"`
|
2021-08-10 21:02:30 +00:00
|
|
|
}
|
|
|
|
|
2021-10-10 22:44:31 +00:00
|
|
|
// ID implements the Component interface.
|
|
|
|
func (s *SelectComponent) ID() ComponentID { return s.CustomID }
|
|
|
|
|
2021-08-10 21:02:30 +00:00
|
|
|
// Type implements the Component interface.
|
2021-10-10 22:44:31 +00:00
|
|
|
func (s *SelectComponent) Type() ComponentType {
|
2021-08-10 21:02:30 +00:00
|
|
|
return SelectComponentType
|
|
|
|
}
|
|
|
|
|
2021-10-10 22:44:31 +00:00
|
|
|
func (s *SelectComponent) _cmp() {}
|
|
|
|
func (s *SelectComponent) _icp() {}
|
|
|
|
|
2021-08-10 21:02:30 +00:00
|
|
|
// MarshalJSON marshals the select in the format Discord expects.
|
2021-10-10 22:44:31 +00:00
|
|
|
func (s *SelectComponent) MarshalJSON() ([]byte, error) {
|
|
|
|
type sel SelectComponent
|
2021-08-10 21:02:30 +00:00
|
|
|
|
2021-10-10 22:44:31 +00:00
|
|
|
type Msg struct {
|
2021-08-10 21:02:30 +00:00
|
|
|
Type ComponentType `json:"type"`
|
2021-10-10 22:44:31 +00:00
|
|
|
*sel
|
|
|
|
MinValues *int `json:"min_values,omitempty"`
|
|
|
|
MaxValues *int `json:"max_values,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
msg := Msg{
|
|
|
|
Type: SelectComponentType,
|
|
|
|
sel: (*sel)(s),
|
|
|
|
}
|
|
|
|
|
|
|
|
if s.ValueLimits != [2]int{0, 0} {
|
|
|
|
msg.MinValues = new(int)
|
|
|
|
msg.MaxValues = new(int)
|
|
|
|
|
|
|
|
*msg.MinValues = s.ValueLimits[0]
|
|
|
|
*msg.MaxValues = s.ValueLimits[1]
|
|
|
|
}
|
|
|
|
|
|
|
|
return json.Marshal(msg)
|
2021-08-10 21:02:30 +00:00
|
|
|
}
|
|
|
|
|
2022-02-14 03:15:28 +00:00
|
|
|
type TextInputStyle uint8
|
|
|
|
|
|
|
|
const (
|
|
|
|
_ TextInputStyle = iota
|
|
|
|
TextInputShortStyle
|
|
|
|
TextInputParagraphStyle
|
|
|
|
)
|
|
|
|
|
|
|
|
// TextInputComponents provide a user-facing text box to be filled out. They can only
|
|
|
|
// be used with modals.
|
|
|
|
type TextInputComponent struct {
|
|
|
|
// CustomID provides a developer-defined ID for the input (max 100 chars)
|
|
|
|
CustomID ComponentID `json:"custom_id"`
|
|
|
|
// Style determines if the component should use the short or paragraph style
|
|
|
|
Style TextInputStyle `json:"style"`
|
|
|
|
// Label is the title of this component, describing its use
|
|
|
|
Label string `json:"label"`
|
2022-07-16 02:19:50 +00:00
|
|
|
// LengthLimits is the minimum and maximum length for the input
|
|
|
|
LengthLimits [2]int `json:"-"`
|
2022-02-14 03:15:28 +00:00
|
|
|
// Required dictates whether or not the user must fill out the component
|
|
|
|
Required bool `json:"required"`
|
|
|
|
// Value is the pre-filled value of this component (max 4000 chars)
|
|
|
|
Value option.NullableString `json:"value,omitempty"`
|
|
|
|
// Placeholder is the text that appears when the input is empty (max 100 chars)
|
|
|
|
Placeholder option.NullableString `json:"placeholder,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *TextInputComponent) _cmp() {}
|
|
|
|
func (s *TextInputComponent) _icp() {}
|
|
|
|
|
|
|
|
func (i *TextInputComponent) ID() ComponentID {
|
|
|
|
return i.CustomID
|
|
|
|
}
|
|
|
|
|
|
|
|
func (i *TextInputComponent) Type() ComponentType {
|
|
|
|
return TextInputComponentType
|
|
|
|
}
|
|
|
|
|
|
|
|
func (i *TextInputComponent) MarshalJSON() ([]byte, error) {
|
|
|
|
type text TextInputComponent
|
|
|
|
|
|
|
|
type Msg struct {
|
|
|
|
Type ComponentType `json:"type"`
|
|
|
|
*text
|
2022-07-16 02:19:50 +00:00
|
|
|
MinLength *int `json:"min_length,omitempty"`
|
|
|
|
MaxLength *int `json:"max_length,omitempty"`
|
2022-02-14 03:15:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
m := Msg{
|
|
|
|
Type: i.Type(),
|
|
|
|
text: (*text)(i),
|
|
|
|
}
|
|
|
|
|
2022-07-16 02:19:50 +00:00
|
|
|
if i.LengthLimits != [2]int{0, 0} {
|
|
|
|
m.MinLength = new(int)
|
|
|
|
m.MaxLength = new(int)
|
2022-02-14 03:15:28 +00:00
|
|
|
|
2022-07-16 02:19:50 +00:00
|
|
|
*m.MinLength = i.LengthLimits[0]
|
|
|
|
*m.MaxLength = i.LengthLimits[1]
|
2022-02-14 03:15:28 +00:00
|
|
|
}
|
|
|
|
return json.Marshal(m)
|
|
|
|
}
|
|
|
|
|
2021-10-10 22:44:31 +00:00
|
|
|
// Unknown is reserved for components with unknown or not yet implemented
|
|
|
|
// components types. It can also be used in place of a ComponentInteraction.
|
2021-05-30 04:28:37 +00:00
|
|
|
type UnknownComponent struct {
|
|
|
|
json.Raw
|
2021-10-10 22:44:31 +00:00
|
|
|
id ComponentID
|
2021-05-30 04:28:37 +00:00
|
|
|
typ ComponentType
|
|
|
|
}
|
|
|
|
|
2021-10-10 22:44:31 +00:00
|
|
|
// ID implements the Component and ComponentInteraction interfaces.
|
|
|
|
func (u *UnknownComponent) ID() ComponentID { return u.id }
|
|
|
|
|
|
|
|
// Type implements the Component and ComponentInteraction interfaces.
|
|
|
|
func (u *UnknownComponent) Type() ComponentType { return u.typ }
|
|
|
|
|
|
|
|
// Type implements InteractionData.
|
|
|
|
func (u *UnknownComponent) InteractionType() InteractionDataType {
|
|
|
|
return ComponentInteractionType
|
2021-05-30 04:28:37 +00:00
|
|
|
}
|
2021-10-10 22:44:31 +00:00
|
|
|
|
|
|
|
func (u *UnknownComponent) resp() {}
|
|
|
|
func (u *UnknownComponent) data() {}
|
|
|
|
func (u *UnknownComponent) _cmp() {}
|
|
|
|
func (u *UnknownComponent) _icp() {}
|