@tmrrw-labs/welcomeplatform-stats-dashboard
TypeScript icon, indicating that this package has built-in type declarations

1.0.1 • Public • Published

Payload Plugin Template

A template repo to create a Payload CMS plugin.

Payload is built with a robust infrastructure intended to support Plugins with ease. This provides a simple, modular, and reusable way for developers to extend the core capabilities of Payload.

To build your own Payload plugin, all you need is:

  • An understanding of the basic Payload concepts
  • And some JavaScript/Typescript experience

Background

Here is a short recap on how to integrate plugins with Payload, to learn more visit the plugin overview page.

How to install a plugin

To install any plugin, simply add it to your payload.config() in the Plugin array.

import samplePlugin from 'sample-plugin';

export const config = buildConfig({
  plugins: [
    // You can pass options to the plugin
    samplePlugin({
		  enabled: true,
    }),
  ]
});

Initialization

The initialization process goes in the following order:

  1. Incoming config is validated
  2. Plugins execute
  3. Default options are integrated
  4. Sanitization cleans and validates data
  5. Final config gets initialized

Building the Plugin

When you build a plugin, you are purely building a feature for your project and then abstracting it outside of the project.

Template Files

In the payload-plugin-template, you will see a common file structure that is used across all plugins:

  1. root folder
  2. /src folder
  3. /dev folder

Root

In the root folder, you will see various files that relate to the configuration of the plugin. We set up our environment in a similar manner in Payload core and across other projects, so hopefully these will look familiar:

  • README.md* - This contains instructions on how to use the template. When you are ready, update this to contain instructions on how to use your Plugin.
  • package.json* - Contains necessary scripts and dependencies. Overwrite the metadata in this file to describe your Plugin.
  • .editorconfig - Defines settings to maintain consistent coding styles.
  • .eslintrc.js - Eslint configuration for reporting on problematic patterns.
  • .gitignore - List specific untracked files to omit from Git.
  • .prettierrc.js - Configuration for Prettier code formatting.
  • LICENSE - As part of the open-source community, we ship all plugins with an MIT license but it is not required.
  • tsconfig.json - Configures the compiler options for TypeScript

IMPORTANT*: You will need to modify these files.

Dev

In the dev folder, you’ll find a basic payload project, created with npx create-payload-app and the blank template.

The samplePlugin has already been installed to the payload.config() file in this project.

plugins: [
  samplePlugin({
    enabled: false,
  })
]

Later when you rename the plugin or add additional options, make sure to update them here.

You may wish to add collections or expand the test project depending on the purpose of your plugin. Just make sure to keep this dev environment as simplified as possible - users should be able to install your plugin without additional configuration required.

When you’re ready to start development, navigate into this folder with cd dev

And then start the project with yarn dev and pull up http://localhost:3000/ in your browser.

Src

Now that we have our environment setup and we have a dev project ready to - it’s time to build the plugin!

index.ts

First up, the src/index.ts file. It is best practice not to build the plugin directly in this file, instead we use this to export the plugin and types from separate files.

Plugin.ts

To reiterate, the essence of a payload plugin is simply to extend the payload config - and that is exactly what we are doing in this file.

export const samplePlugin =
  (pluginOptions: PluginTypes) =>
    (incomingConfig: Config): Config => {
      let config = { ...incomingConfig }

      // do something cool with the config here

      return config
    }

First, we receive the existing payload config along with any plugin options.

Then we set the variable config to be equal to the existing config.

From here, you can extend the config as you wish.

Finally, you return the config and that is it!

Spread Syntax

Spread syntax (or the spread operator) is a feature in JavaScript that uses the dot notation (...) to spread elements from arrays, strings, or objects into various contexts.

We are going to use spread syntax to allow us to add data to existing arrays without losing the existing data. It is crucial to spread the existing data correctly – else this can cause adverse behavior and conflicts with Payload config and other plugins.

Let’s say you want to build a plugin that adds a new collection:

config.collections = [
  ...(config.collections || []),
  // Add additional collections here
]

First we spread the config.collections to ensure that we don’t lose the existing collections, then you can add any additional collections just as you would in a regular payload config.

This same logic is applied to other properties like admin, hooks, globals:

config.globals = [
  ...(config.globals || []),
  // Add additional globals here
]

config.hooks = {
  ...(incomingConfig.hooks || {}),
  // Add additional hooks here
}

Some properties will be slightly different to extend, for instance the onInit property:

import { onInitExtension } from './onInitExtension' // example file

config.onInit = async payload => {
  if (incomingConfig.onInit) await incomingConfig.onInit(payload)
  // Add additional onInit code by defining an onInitExtension function
  onInitExtension(pluginOptions, payload)
}

If you wish to add to the onInit, you must include the async/await. We don’t use spread syntax in this case, instead you must await the existing onInit before running additional functionality.

In the template, we have stubbed out a basic onInitExtension file that you can use, if not needed feel free to delete it.

File Aliasing

If your plugin uses packages or dependencies that are not browser compatible (fs, stripe, nodemailer, etc), you will need to alias them using your bundler to prevent getting errors in build.

You can read more about aliasing files with Webpack or Vite in the excluding server modules docs.

Types.ts

If your plugin has options, you should define and provide types for these options in a separate file which gets exported from the main index.ts.

export interface PluginTypes {
  /**
   * Enable or disable plugin
   * @default false
   */
  enabled?: boolean
}

If possible, include JSDoc comments to describe the options and their types. This allows a developer to see details about the options in their editor.

Testing

Having a test suite for your plugin is essential to ensure quality and stability. Jest is a popular testing framework, widely used for testing JavaScript and particularly for applications built with React.

Jest organizes tests into test suites and cases. We recommend creating individual tests based on the expected behavior of your plugin from start to finish.

Writing tests with Jest is very straightforward and you can learn more about how it works in the Jest documentation.

For this template, we stubbed out plugin.spec.ts in the dev folder where you can write your tests.

describe('Plugin tests', () => {
  // Create tests to ensure expected behavior from the plugin
  it('some condition that must be met', () => {
   // Write your test logic here
   expect(...)
  })
})

Best practices

With this tutorial and the payload-plugin-template, you should have everything you need to start building your own plugin. In addition to the setup, here are other best practices aim we follow:

  • Providing an enable / disable option: For a better user experience, provide a way to disable the plugin without uninstalling it. This is especially important if your plugin adds additional webpack aliases, this will allow you to still let the webpack run to prevent errors.
  • Include tests in your GitHub CI workflow: If you’ve configured tests for your package, integrate them into your workflow to run the tests each time you commit to the plugin repository. Learn more about how to configure tests into your GitHub CI workflow.
  • Publish your finished plugin to NPM: The best way to share and allow others to use your plugin once it is complete is to publish an NPM package. This process is straightforward and well documented, find out more creating and publishing a NPM package here..
  • Add payload-plugin topic tag: Apply the tag **payload-plugin **to your GitHub repository. This will boost the visibility of your plugin and ensure it gets listed with existing payload plugins.
  • Use Semantic Versioning (SemVar) - With the SemVar system you release version numbers that reflect the nature of changes (major, minor, patch). Ensure all major versions reference their Payload compatibility.

Questions

Please contact Payload with any questions about using this plugin template.

Package Sidebar

Install

npm i @tmrrw-labs/welcomeplatform-stats-dashboard

Weekly Downloads

24

Version

1.0.1

License

MIT

Unpacked Size

750 kB

Total Files

131

Last publish

Collaborators

  • shawnvogt
  • jack__tmrrw