
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
automatic-block-names
Advanced tools
This is a plugin for Payload CMS that allows you to set a custom function on
Blocks that will automatically generate the blockName, improving the CMS
usability and readability.
The blockName, although still editable from the UI, will be overwritten on
each save if a function is set.
Simply add the plugin to your plugins list in payload.config.ts. For example:
plugins: [
automaticBlockNames({
collections: [ 'reports' ],
}),
],
| Parameter | Type | Default | Description |
|---|---|---|---|
enabled | bool | true | Whether the plugin is active |
collections | string[] | - | The collections on which to activate the plugin. If not specified, it applies to all collections |
functionName | string | blockName | The name of the custom property that describes the function for generating the blockName |
All parameters are optional.
In the blocks where you want automatic blockName generation, define a property
called blockName (or a different name if specified in functionName) in the
custom object:
const WordfenceScan: Block = {
slug: 'wordfenceScan',
custom: {
blockName: (block) => {
if (block.action === 'update')
return `[${formatDate(block.date)}] Updated ${block.name} from ${block.fromVer} to ${block.toVer}`
return `[${formatDate(block.date)}] ${block.name} #${block.action}`
},
},
...
}
To type the blockName function, you can import the LabeledBlock type and use
it instead of the Block type. For example:
const WordfenceScan: LabeledBlock<WordfenceScanBlock> = {
slug: 'wordfenceScan',
interfaceName: 'WordfenceScanBlock',
custom: {
blockName: (block) => {
// Now `block` is typed as `WordfenceScanBlock`
},
},
...
}
The type of the block can be automatically generated by using the Payload
interfaceName proprerty.
If you have defined a custom name for the function via the functionName option,
you can use the LabeledBlockWithFuncName type:
type Block = LabeledBlockWithFuncName<WordfenceScanBlock, 'myBlockNameFunc'>
const WordfenceScan: Block = {
slug: 'wordfenceScan',
interfaceName: 'WordfenceScanBlock',
custom: {
myBlockNameFunc: (block) => {
// Now `block` is typed as `WordfenceScanBlock`
},
},
...
}
This plugin was developed primarily for learning purposes. Do not assume it works correctly.
FAQs
Add automatic blockNames capabilities
We found that automatic-block-names demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.