Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import { Field } from "payload/types";
import linkGroup from "./linkGroup";
import richText from "./richText";
import label from "./richText/label";
import largeBody from "./richText/largeBody";
export const hero: Field = {
name: "hero",
label: false,
type: "group",
fields: [
{
type: "select",
name: "type",
label: "Type",
required: true,
defaultValue: "lowImpact",
options: [
{
label: "High Impact",
value: "highImpact",
},
{
label: "Medium Impact",
value: "mediumImpact",
},
{
label: "Low Impact",
value: "lowImpact",
},
],
},
richText({
admin: {
elements: ["h1", largeBody, label, "link"],
leaves: [],
},
}),
linkGroup({
overrides: {
maxRows: 2,
},
}),
{
name: "media",
type: "upload",
relationTo: "media",
required: true,
admin: {
condition: (_, { type } = {}) =>
["highImpact", "mediumImpact"].includes(type),
},
},
],
};