We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Instead of using a text field type and hacking value by transforming JSON into a string and vice-versa, use a JSON type field: https://payloadcms.com/docs/beta/fields/json
text
value
custom-select/src/fields/customSelectHasMany/field.ts
Line 6 in 697c15f
custom-select/src/fields/customSelectHasMany/component.tsx
Lines 34 to 37 in 697c15f
Lines 16 to 17 in 697c15f
Example with a list of string:
import type { CollectionConfig } from "payload"; import { SelectCategories } from "./SelectCategories"; export const Banners: CollectionConfig = { slug: "banners", fields: [ { name: "categories", type: "json", admin: { components: { Field: SelectCategories } }, // The JSON Schema makes Payload generates the proper TypeScript types in payload-types.ts jsonSchema: { // Why? https://github.com/payloadcms/payload/issues/6737 uri: "_", fileMatch: ["_"], schema: { type: "array", items: { type: "string" }, }, }, }, ], };
"use client"; import { useField } from "@payloadcms/ui"; export function SelectCategories() { const { value, setValue } = useField<string[]>({}); ... }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Instead of using a
text
field type and hackingvalue
by transforming JSON into a string and vice-versa, use a JSON type field: https://payloadcms.com/docs/beta/fields/jsoncustom-select/src/fields/customSelectHasMany/field.ts
Line 6 in 697c15f
custom-select/src/fields/customSelectHasMany/component.tsx
Lines 34 to 37 in 697c15f
custom-select/src/fields/customSelectHasMany/field.ts
Lines 16 to 17 in 697c15f
Example with a list of string:
The text was updated successfully, but these errors were encountered: