Dashboard plugins allow you to extend and enhance the functionality of apps built by Wix, such as Wix Bookings and Wix Stores.
The Wix CLI makes it easy to create and develop dashboard plugins for dashboard pages. 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 app will have a dashboard plugin extension that adds a plugin to a specific dashboard page of a user’s site.
In the terminal:
npm run generate
Upon completion, the extension files will be created in your app directory with the following structure:
plugin.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:
npm run dev
Press the number that corresponds to the dashboard page hosting your plugin. This will open a browser window previewing your 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 that the subtitle on your plugin says “Replace this with your own code”.
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 app appear and feel like a native app built by Wix.
Customize your plugin to interact with the dashboard page data passed to the plugin’s slot using the observeState()
function from the Dashboard SDK:
Make sure the @wix/dashboard
package is installed in your app.
Add the following import statement to your code:
To retrieve the data from the dashboard page, use the observeState()
function.
Use React to add code and logic to your plugin.
Save your file.
Navigate back to the dashboard page in your browser and see your changes.
Now that your app is ready for production with your new plugin, you can build your app and create a version on the Custom Apps page in your Wix Studio workspace.
Run the following command to build your app:
Run the following command and follow the prompts to create an app version:
An app version allows you to publish an app to the Wix App Market or install it on a site with a direct install URL.
Note: If you make changes to your plugin after you’ve created a version of your app, you will need to create a new version in order to see the updated plugin.
For more information about building and deploying your app, see Build and Deploy an App with the CLI.
To delete an existing dashboard plugin from your app, delete the subfolder under src/dashboard/plugins
that contains your dashboard plugin’s files.
Note: If you've already created a version of your app, deleting a dashboard plugin's files from your project does not remove the registration of the dashboard plugin from your app's latest version in the app dashboard. To remove the registration, create a new version after deleting the dashboard plugin's files.