split up embed file

This commit is contained in:
MapleLeaf
2021-12-25 04:06:56 -06:00
parent 6747f7bdaf
commit c74f8df231
6 changed files with 120 additions and 105 deletions

View File

@@ -0,0 +1,30 @@
import { MessageEmbedOptions } from "discord.js"
import React from "react"
import { ReacordElement } from "../element.jsx"
import { EmbedChildNode } from "./embed-child.js"
export type EmbedFieldProps = {
name: string
inline?: boolean
children: string
}
export function EmbedField(props: EmbedFieldProps) {
return (
<ReacordElement
props={props}
createNode={() => new EmbedFieldNode(props)}
/>
)
}
class EmbedFieldNode extends EmbedChildNode<EmbedFieldProps> {
override modifyEmbedOptions(options: MessageEmbedOptions): void {
options.fields ??= []
options.fields.push({
name: this.props.name,
value: this.props.children,
inline: this.props.inline,
})
}
}