go-frameproto/stringframebutton4action.go

41 lines
1.5 KiB
Go

package frameproto
// StringFrameButton4Action will return the HTML <meta/> element for the Frame-Protocol's (i.e., Farcaster Frame's) "fc:frame:button:4:action" name-value pair.
//
// For example, this call:
//
// var buttonAction string = "post"
//
// str := frameproto.StringFrameButton4Action(buttonAction)
//
// Would return this HTML <meta/> element:
//
// <meta property="fc:frame:button:4:action" content="post" />
//
// Note that this package provides some constants to use with StringFrameButton4Action.
// 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:4:action" content="link" />
// str := frameproto.StringFrameButton4Action(frameproto.ButtonActionLink)
//
// And:
//
// // <meta property="fc:frame:button:4:action" content="mint" />
// str := frameproto.StringFrameButton4Action(frameproto.ButtonActionMint)
//
// And:
//
// // <meta property="fc:frame:button:4:action" content="post" />
// str :+ frameproto.StringFrameButton4Action(frameproto.ButtonActionPost)
//
// And:
//
// // <meta property="fc:frame:button:4:action" content="post_redirect" />
// str := frameproto.StringFrameButton4Action(frameproto.ButtonActionPostRedirect)
func StringFrameButton4Action(action string) string {
const property string = MetaPropertyFrameButton4Action
return stringMetaPropertyContent(property, action)
}