The Custom Products Catalog Wix app template is part of the Wix app templates collection.
This Wix CLI template demonstrates the use of the Wix Stores Products API to add or remove products. It is an excellent starting point if you plan on using Wix APIs to manage a site’s business data. Using the React SDK and the Dashboard React SDK, you can apply any of the methods found across our Wix APIs and easily manage them in a Dashboard page pre-built following the Wix Design System.
The template handles basic Wix Stores functionalities, laying the groundwork for further customization and development.
Note: This app is intended for Wix sites with the Wix Stores app installed. For it to function correctly, the site owner must install the Wix Stores app from the app market.
Wix apps enhance the functionality of Wix sites by adding new features such as custom pages, dashboard components, third-party integrations, or site analytics. Starting with an app template fast-tracks the development process, providing a working foundational app that developers can modify and build upon. This approach saves valuable time, allowing for a quick transition from concept to a fully functional app.
Learn more about Wix app templates and explore our growing template collection.
This Wix app template incorporates the following features:
- Wix CLI: Get a comprehensive developer experience with minimal setup and host your app on Wix with 1 command. Learn more about the Wix CLI for apps.
- Wix Design System: Utilize Wix's reusable React components for a cohesive user experience consistent with Wix's design standards.
- Wix React SDK: Simplify API requests to the Wix ecosystem.
- Wix Dashboard React SDK: Integrate custom dashboard components with the Wix site dashboard.
- Wix Stores Products API: Integrate custom logic for managing a store's products.
Before getting started, make sure you have the following set up:
- Node.js (v18.16.0 or higher)
- A Wix developer account
We first need to create local files for our app project and set up a local development environment for preview and testing.
Run the following command to create a new app project using this template:
npm create @wix/app@latest -- --template 24493a0d-18f2-4f68-b6d5-55992cef7daa
When asked what you would like to create, choose A new Wix App.
In the creation process, you will be asked for a Wix app name and a package name for your project.
- The Wix app name is the name that appears for your app in the Wix Dev Center.
- The package name is the name of the package created locally for your project, and the name of the directory containing your project’s local files.
This process registers a new app in the Wix Dev Center with the required permissions pre-configured, and it generates a new app project in your local file system. The project contains all the files your app needs to run locally and in production.
The project includes:
- Initial boilerplate code for a simple app with a dashboard page and a dashboard modal.
- Wix Stores Products API integration, with methods for querying, creating, and deleting products.
- A
package.json
file with your app's dependencies.
The app creation process installs the app on your chosen development site. However, there is still some configuration required before your app will function.
This app makes calls to the Wix Stores Products API to create and manage the store products. Before you can test this app on your development site, you must first install the Wix Stores app.
You won’t see the app extensions on your development site until you build the app and create a version. To test the app during development, set up a local development environment using the following command.
npm run dev
This will prompt you with the following CLI menu:
Press a number key to open a dashboard page:
› 1 - Custom Products Catalog (/)
Type 1
to open a browser window with a preview of the app's dashboard page.
The development environment is set up for hot reloading, so any changes you make to your code will be reflected in the browser.
The template is designed for easy customization and extension. Here are some suggested entry points where you can add your own custom logic or functionality:
The dashboard page is pre-integrated with the Wix Design System.
It utilizes the Wix Stores Products API to:
- Query and present a list of the products in the store.
- Delete selected products from the store.
Customize the dashboard page to fit your specific needs, whether it's updating the UI or adding new features.
Development entry point: template/src/dashboard/pages/page.tsx
This file contains the parent component for the dashboard interface. It uses the hook functions defined in template/src/dashboard/hooks/stores.ts
to make Wix Stores Products API calls. It's a prime location for extending the dashboard functionality or integrating additional services.
The modal component page is pre-integrated with the Wix Design System.
It defines a modal that opens up on top of your dashboard page.
It utilizes the Wix Stores Products API to allow you to create a new product in the store.
Customize this modal to allow more complete product creation, with details such as price, images, etc.
Development entry point: template/src/dashboard/components/create-product.tsx
This file contains the parent component for the modal. It uses the hook functions defined in template/src/dashboard/hooks/stores.ts
to make Wix Stores Products API calls. It's a prime location for extending the modal functionality.
After the app is created you can build it, which allows you to:
- Create a preview to share with others.
- Create new versions of your app on the Developers Center.
To build the app, run one of the following:
npm run build
You can create an online preview of your built app using the following command:
npm run preview
This command provides an inline link to an app preview URL.
You can share this URL with collaborators on your development site. It directs to a dashboard page where they can preview and test your app.
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.
To create an app version, run the following command:
npm run create-version
This guides you through creating a new app version in the Wix Developers Center. Once the app version is created, you can optionally submit it for review and publish it to the Wix App Market.
To learn more about app versions, see App Versions and Deployment.
For more information:
- Learn more about Wix app templates.
- Check out our full collection of app templates.
- See our documentation for details about building Wix apps.