go-frameproto/writeframebutton2action.go

45 lines
1.5 KiB
Go

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