Content Creator Plugins


The ability to create content is one of the key responsibilities of any CMS. The content-creator plugin type is one way Tina lets you add this behaviour.

content-creator-plugin-tinacms

Interface

interface ContentCreatorPlugin<FormShape> {
  __type: 'content-creator'
  name: string
  fields: Field[]
  onSubmit(value: FormShape, cms: CMS): Promise<void> | void
}
OptionDescription
__typeThe name of the plugin. Always 'content-creator'.
nameThe text to be displayed in the "Add Content" menu.
fieldsAn array of fields that populate a modal form. Field values can populate new file data.
onSubmitA function that creates content. Called once the form is submitted.

Examples

Building a ContentCreatorPlugin

const BlogPostCreatorPlugin = {
  __type: 'content-creator',
  fields: [
    {
      label: 'Title',
      name: 'title',
      component: 'text',
      validation(title) {
        if (!title) return "Required."
      }
    },
    {
      label: 'Date',
      name: 'date',
      component: 'date',
      description: 'The default will be today.',
    },
    {
      label: 'Author',
      name: 'author_name',
      component: 'text',
      description: 'Who wrote this, yo?',
    },
  ],
  onSubmit(values, cms) {
    // Call functions that create the new blog post. For example:
    cms.apis.someBackend.createPost(values)
  },
}

After registering the plugin with the CMS it will be accessible.

cms.plugins.add(BlogPostCreatorPlugin)

Further Reading

Last Edited: March 16, 2021