go-frameproto/writeframebutton1action.go

45 lines
1.5 KiB
Go
Raw Normal View History

2024-02-14 02:35:55 +00:00
package frameproto
import (
"io"
)
// WriteFrameButton1Action will write the HTML <meta/> element for the Frame-Protocol's (i.e., Farcaster Frame's) "fc:frame:button:1:action" name-value pair.
//
// For example, this call:
//
// var buttonAction string = "post"
//
2024-02-15 16:41:33 +00:00
// frameproto.WriteFrameButton1Action(writer, buttonAction)
2024-02-14 02:35:55 +00:00
//
// Would write this HTML <meta/> element:
//
// <meta property="fc:frame:button:1:action" content="post" />
//
// Note that this package provides some constants to use with WriteFrameButton1Action.
// Namely: ButtonActionLink (for "link"), ButtonActionMint (for "mint"), ButtonActionPost (for "post"), and ButtonActionPostRedirect (for "post_redirect").
//
// Which in code would be used as:
//
2024-02-15 16:41:33 +00:00
// // <meta property="fc:frame:button:1:action" content="link" />
2024-02-14 02:35:55 +00:00
// frameproto.WriteFrameButton1Action(writer, frameproto.ButtonActionLink)
//
// And:
//
2024-02-15 16:41:33 +00:00
// // <meta property="fc:frame:button:1:action" content="mint" />
2024-02-14 02:35:55 +00:00
// frameproto.WriteFrameButton1Action(writer, frameproto.ButtonActionMint)
//
// And:
//
2024-02-15 16:41:33 +00:00
// // <meta property="fc:frame:button:1:action" content="post" />
2024-02-14 02:35:55 +00:00
// frameproto.WriteFrameButton1Action(writer, frameproto.ButtonActionPost)
//
// And:
//
2024-02-15 16:41:33 +00:00
// // <meta property="fc:frame:button:1:action" content="post_redirect" />
2024-02-14 02:35:55 +00:00
// frameproto.WriteFrameButton1Action(writer, frameproto.ButtonActionPostRedirect)
2024-02-15 17:43:14 +00:00
func WriteFrameButton1Action(writer io.Writer, action string) error {
2024-02-14 02:35:55 +00:00
const property string = MetaPropertyFrameButton1Action
2024-02-15 17:43:14 +00:00
return writeMetaPropertyContent(writer, property, action)
2024-02-14 02:35:55 +00:00
}