Dashboard plugins allow you to extend and enhance the functionality of your headless project's dashboard.
The Wix CLI for Headless makes it easy to create and develop dashboard plugins for the dashboard pages of apps made by Wix. You build your plugin using Wix's React/Node.js stack. Your plugin is then deployed and hosted on the Wix cloud.
For more information on dashboard plugin extensions, read About Dashboard Plugins.
Follow the instructions below to:
Once this task is complete, your project will have a dashboard plugin extension that adds a plugin to the dashboard page of an app made by Wix in your headless project.
In the terminal:
Navigate to your project repo.
Run the following command.
Follow the prompts for creating a dashboard plugin.
Upon completion, the extension files will be created in your project directory with the following structure:
extension.json
: This file contains your plugin's JSON configuration.plugin.tsx
: This file contains your plugin's React component.Learn more about dashboard plugin extension files and code.
Once you finish generating your dashboard plugin, you can find your plugin's auto-generated React component in the plugin.tsx
file.
Run the following command to open the dev menu:
Click the link to open your project's dashboard in the browser, then navigate to the dashboard page hosting your plugin. This will open a browser window previewing your project's dashboard page.
Leave this window open.
Go to your plugin.tsx
file and edit the subtitle in the <Card.Content>
component to "Hello world!".
Note: When it comes to designing the UI for your plugin, consider using the Wix Design System, a collection of reusable React components that you can use to make your project appear and feel like a native Wix experience.
Customize your plugin to interact with the dashboard page data passed to the plugin's slot using the observeState()
function from the Dashboard SDK:
@wix/dashboard
package is installed in your project.observeState()
function.
Save your file.
Navigate back to the dashboard page in your browser and see your changes.
Now that your project is ready for production with your new plugin, you can build your project and release your project.
Run the following command to build your project:
Run the following command and follow the prompts to release your project:
For more information about building and deploying your project, see Build and Deploy a Project with the Wix CLI for Headless.
To delete an existing dashboard plugin from your project, delete the subfolder under src/extensions/
that contains your dashboard plugin's files.