@fiftyfivetech/strapi-plugin-preview-button
v1.0.1
Published
Strapi Preview Data Before Publish It
Downloads
17
Keywords
Readme
Strapi Plugin Preview Button
Add a preview button on Strapi CMS.
How To
- Add preview-button plugin using
npm install @fiftyfivetech/strapi-plugin-preview-button- Add these env variables in Strapi
STRAPI_ADMIN_PREVIEW_URL=https://frontend_url.com/preview
STRAPI_ADMIN_PREVIEW_URL_SECRET=preview_secretMake sure your content must have an unique
slugfield. Based on that this plugin will works. If slug is not available you can able to usedocumentIdfield.
How it works?
It will add a preview button for every content in content manager. On click it will open https://frontend_url.com/preview?secret=preview_secret&slug=homepage&collectionName=api::page.page&documentId=x45tnYUnai&isDraft=true.
You can able to easily intercept this call at your frontend (Next.js) application and read query params to fetch perform action and fetch draft mode content and show a live preview to end user.
