45 lines
1.5 KiB
Go
45 lines
1.5 KiB
Go
package frameproto
|
|
|
|
import (
|
|
"io"
|
|
)
|
|
|
|
// WriteFrameButton3Action will write the HTML <meta/> element for the Frame-Protocol's (i.e., Farcaster Frame's) "fc:frame:button:3:action" name-value pair.
|
|
//
|
|
// For example, this call:
|
|
//
|
|
// var buttonAction string = "post"
|
|
//
|
|
// frameproto.WriteFrameButton3Action(writer, buttonAction)
|
|
//
|
|
// Would write this HTML <meta/> element:
|
|
//
|
|
// <meta property="fc:frame:button:3:action" content="post" />
|
|
//
|
|
// Note that this package provides some constants to use with WriteFrameButton3Action.
|
|
// 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:3:action" content="link" />
|
|
// frameproto.WriteFrameButton3Action(writer, frameproto.ButtonActionLink)
|
|
//
|
|
// And:
|
|
//
|
|
// // <meta property="fc:frame:button:3:action" content="mint" />
|
|
// frameproto.WriteFrameButton3Action(writer, frameproto.ButtonActionMint)
|
|
//
|
|
// And:
|
|
//
|
|
// // <meta property="fc:frame:button:3:action" content="post" />
|
|
// frameproto.WriteFrameButton3Action(writer, frameproto.ButtonActionPost)
|
|
//
|
|
// And:
|
|
//
|
|
// // <meta property="fc:frame:button:3:action" content="post_redirect" />
|
|
// frameproto.WriteFrameButton3Action(writer, frameproto.ButtonActionPostRedirect)
|
|
func WriteFrameButton3Action(writer io.Writer, action string) {
|
|
const property string = MetaPropertyFrameButton3Action
|
|
writeMetaPropertyContent(writer, property, action)
|
|
}
|