Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

README.md

Right-Panel Plugin for Payload CMS

Upgrade your relationship fields with a powerful right-side panel!

🔹 No more context switching! Edit related entities side-by-side
🔹 Effortless navigation between records without losing progress
🔹 Fully integrated into the edit view for a seamless workflow

This plugin extends the default edit view with a sleek right-panel interface, making it easier than ever to manage related content without disrupting your workflow.

Screen.Recording.2025-02-02.at.10.10.20.mov

Installation

Install the plugin using your preferred package manager:

pnpm add @shefing/right-panel

Setup

Add the plugin to your payload.config.ts:

plugins: [
  ...plugins,
  RightPanelPlugin({
    excludedCollections: [] // Add collections to exclude if needed
  })
];

Collection Configuration

Enable the Right Panel in a collection by adding this to its admin configuration:

admin: {
  custom: {
    rightPanel: true,
  },
},

Fields Configuration

Activate the Right Panel in the Relationship field by adding:

admin: {
  components: {
    Field: '@shefing/right-panel/components/RelationInRightPanelField'
  }
},

💡 Now you can edit relationships smoothly, without interruptions!