Spurtcommerce
DocumentAPI ReferenceAdd-ons
Addons
Addons
  • catalogue related addons
    • Payment gateway Add-on
    • Product Variant Addon
    • Product Attribute Add-on
    • Question and Answer Add-on
    • Common Product Add-on
    • Ratings and Review Add-on
    • Product QR Add-on
    • Assign Product Price Add-on
  • CMS RELATED ADDONS
    • SEO and Blogs Add-on
  • SALES Related Add-ons
    • Abandoned Cart Add-on
  • MARKETING RELATED ADDONS
    • Related Products Add-on
    • Promotion Widget
    • Coupon Add-on
  • B2B RELATED ADDONS
    • Quotation Request Add-on
    • Chat Add-on
    • Supplier Mangement Add-on
  • Support Ticket Addon
Powered by GitBook
On this page
  • Admin Setup
  • Store setup
  1. MARKETING RELATED ADDONS

Related Products Add-on old

Last updated 6 months ago

About Add-on

The Installation of Spurtcommerce Related Product Addon will enable the feature of adding related products to any product (either admin products or vendor products). When the plugin is installed, the multi-Vendor eCommerce site becomes ready for the admin to related products to a admin or vendor product and get them displayed for the visitors to view different related products in the product detail page.

Features:

• In the 'Add Product' form, the admin can add related products to a particular product (either admin products or vendor products).

• They can select the products from the list of products available in the drop down. On selecting a particular product, it gets added as a related product, under the main product.

• They can add one or more related products to any particular product. • On the storefront, related products will appear after the product details in the product detail page.

• The Customers can navigate to the detail pages of related products.

For setting up the API, you need to execute the following steps:

  • Installing an extension

  • Run the application

  • Make the build

Step 1 : Installing an extension

These are the steps that need to be executed for installation of the extension.

Usually spurcommerce comes packed in a zip, whose name ends in "productrelated-addOn.zip". Extract the zip file, open api folder and open addon folder within that and copy the content of addon folder into the specified path.

Path - <PROJECT_ROOT>/addon

Step 2 : Run the application

After you have completed the installation of the above mentioned steps, you can run the application and also view the changes.

$ npm start serve

Once you execute the above command, add-on file will get integrated into the backend API.

Step 3 : Make the build

These are the steps that need to be followed for generating the build.

To run the below command

 $ npm run build

Then latest built files can be deployed into the server.

Admin Setup

These are the steps that need to be followed to do the front end admin setup.

● Installing an extension

● Update the configuration

● Module Detail

● Run the application

● Make the build

Step 1 : Installing an extension

Make sure your device is running on the device or simulator,or it will not show up in the list

These are the steps that need to be executed for installation of the extension.

Usually spurcommerce comes packed in a zip, whose name ends in "productrelated-addOn.zip".

Extract the zip file and copy the content of admin/add-ons folder into the specified path

Path - <PROJECT_ROOT>/add-ons

Step 2 : Update the configuration

After the installation of the extension, you will have to update certain configurations into the default Spurtcommerce config files. For this, you need to follow the steps below.

Update Reducer Config

1) Import below line into the add-ons/add-ons-reducer.ts

           import * as fromRelatedProducts from 
'../add-ons/marketing/related-product/core/reducer/related-product.reducer';

2) Add the reducer into the below object

relatedProducts: fromRelatedProducts.reducer

3) After adding its looks like below

export const AddOnReducers: ActionReducerMap<State> = {

relatedProducts: fromRelatedProducts.reducer,

};

Update State Config

1) Import below line into the add-ons/add-ons-state.ts

import { RelatedState } from 
'../add-ons/marketing/related-product/core/reducer/related-product.state';

2) Add the state into the below object

relatedProducts: RelatedState,

3) After adding its looks like below

export interface AddOnAppState {

relatedProducts: RelatedState

}

Step 3 : Change the routing file(catalog.routing.ts)

Inside the src/theme/default/admin/marketing/components/manage-cross-selling/manage-cross-selling.routing.ts

1) Import below line

   import * as  marketingRoutes  from "../../../../../../../add-ons/marketing/marketing.routing"

2) Add these routes below the marketingRoutes array

manageCrossSelling.push(marketingRoutes.RelatedProductsRoutes[0]);

3) Add the following code in

src/theme/default/marketing/components/header/header.component.html

Below line no :20

<li [appHideIfUnauthorized]="'related_product'">
                    <a href="#" [routerLink]="['/marketing/manage-cross-selling/related_product']" [routerLinkActive]="'active'">
                      Related products
                    </a>
                </li>

Step 4 : Run the application

After you have integrated the Related Product Module into Spurtcommerce, you can use the following command to run the application.

 npm run large-serve

Once you execute the above command you can view the installed module in Spurtcommerce, within the page in which you have integrated.

Step 5 : Make the build

To run the below command

 npm run large-build

Then the latest built files can be deployed into the server.

Store setup

These are the steps that need to be followed to do the front end store setup.

  • Installing an extension

  • Update the configuration

  • Component Detail

  • Run the application

  • Make the build

Step 1 : Installing an extension

Make sure your device is running on the device or simulator,or it will not show up in the list

These are the steps that need to be executed for installation of the extension.

Usually spurcommerce comes packed in a zip, whose name ends in ".addOn.zip".

Extract the zip file and copy the content of store-angular/add-ons folder into the specified path

Path - store-angular/add-ons

Step 2 : Update the configuration

After the installation of the extension, you will have to update certain configurations into the default Spurtcommerce config files. For this, you need to follow the steps below.

Update Reducer Config

import * as fromRelatedProducts from './RelatedProducts/core/reducer/related-products.reducer'

2. Add the reducer into the below object

relatedProducts: fromRelatedProducts.reducer

3. After adding its looks like below

export const AddOnReducers: ActionReducerMap<State> = {

relatedProducts: fromRelatedProducts.reducer

}

Update State Config

  1. Import below line into the add-ons/add-ons-state.ts

   import { RelatedState} from './RelatedProducts/core/reducer/related-products.state'

Add the state into the below object

relatedProducts:RelatedState

  1. After adding its looks like below

export interface AddOnAppState {

relatedProducts:RelatedState

}

Update Effect Config

  1. Import below line into the add-ons/add-ons.effect.ts

import { RelatedProductsEffect } from './RelatedProducts/core/effect/related-products.effects';

  1. Add the effect into the below object

RelatedProductsEffect

2. After adding its looks like below

export const ADD_ON_EFFECT = [

RelatedProductsEffect

];

Update Component Config

  1. Import below line into the add-ons/add-ons.shared.component

     import { RelatedProductsComponent } from './RelatedProducts/template/related-products/related-products.component';
     

2.Add the following components into the below object

RelatedProductsComponent

3. After adding its looks like below

export const ADD_ON_COMPONENTS = [

RelatedProductsComponent

]

Step 3 : Component Detail

The modules pertaining to related productst are listed below. You may use these modules, in any page of Spurtcommerce.

Also, you can find the steps below to use the modules in related productst in Spurtcommerce pages.

In the RelatedProducts addon having one components.

  1. RelatedProductsComponent

RelatedProductsComponent

Directive

 <app-spurt-related-products style="width: 20%;"  [productId]="id"></app-spurt-related-products>

In the above directive have one input field

productId:number

RelatedProductsSandbox can be imported in 2 modules and 2 components namely

  1. ProductsModule

  2. SharedModule

  3. ControlsComponent

  4. ProductComponent

Step 4 : Run the application

After you have integrated the RelatedProducts Module into Spurtcommerce, you can use the following command to run the application.

 ng serve

Once you execute the above command you can view the installed module in Spurtcommerce, within the page in which you have integrated.

Step 5 : Make the build

To run the below command

 ng build –prod

Then the latest built files can be deployed into the server.

Front End SetUp

These are the steps that need to be followed to do the front end store setup.

  • Installing an extension

  • Update the configuration

  • Run the application

  • Make the build

Step 1 : Installing an extension

Make sure your device is running on the device or simulator,or it will not show up in the list

These are the steps that need to be executed for installation of the extension.

Usually spurcommerce comes packed in a zip, whose name ends in ".addOns.zip". Extract the zip file and copy the content of store-react/addOns into the specified path as given below

Path - addOns/RelatedProduct

Add on location:

projectFolder->addOns

After placing it it will look like this

projectFolder->addOns->RelatedProduct

Step 2 : Update the configuration

After the installation of the extension, you will have to update certain configurations into the default Spurtcommerce addonsconfig.js files. For this, you need to follow the steps below.

Once you finish the first Step now declare the necessary plugins in the addonconfig.js file

  1. Import below line into the addonconfig.js

import SpurtRelatedProduct from './RelatedProduct/RelatedProduct'

2. Add the PartialSpecification into the below object

export const AddonsComponent={

SpurtRelatedProduct

}

Step 3 : Module Detail

The modules pertaining to RelatedProduct are listed below. You may use these modules, in any page of Spurtcommerce.

RelatedProduct Component:

{ConnectPlugin.SpurtRelatedProduct && <ConnectPlugin.SpurtRelatedProduct slugName={pid}/>}

Step 4 : Run the application

After you have integrated the RelatedProduct Module into Spurtcommerce, you can use the following command to run the application.

$ npm run dev

Once you execute the above command you can view the installed module in Spurtcommerce, within the page in which you have integrated.

Step 5 : Make the build

To run the below command

$ npm run build or yarn nun build

Then the latest built files can be deployed into the server.

These are the steps that need to be followed to do the front end store setup.

  • Installing an extension

  • Update the configuration

  • Module Detail

  • Run the Application

  • Make the build

Step 1 : Installing an extension

These are the steps that need to be executed for installation of the extension.

Extract the store-flutter folder inside the folder go to (store-fluter → add-ons → RelatedProducts folder) and copy the RelatedProducts folder and place the copied folder

inside the project folder

Add on location: projectFolder->lib->add-ons

After placing it it will look like this projectFolder->lib->add-ons->RelatedProducts

Once you finish these steps continue to the next step

Step 2 : Update the configuration

After extracting the add on zip file for changing the configurations in addons.dart, you have to follow the steps below:

Go to

projectFolder->lib->add-ons->addonsshared.dart

Then inside addonsShared array paste the following content

{"RelatedProducts": SpurtRelatedProducts(), "data":""},

After placing the above files it will look like this

List addonsShared = [

{"RelatedProducts": SpurtRelatedProducts(), "data":""},

];

Then give the following imports

import 'package:spurtcommerce/add-ons/RelatedProducts/relatedproducts.dart';

Or

There will be a popup for quick fix

Step 3 : Module detail

After executing the above mentioned steps, we have to place these below lines in the core folder to show the Related Products to the user.

1) RelatedProducts

Once you finished updating the configuration then in the projectFolder->lib->core->modules->detail->details.dart

file update this line where you seem comfortable with

findMyClass("RelatedProducts", {“slug”:details[“productSlug”]}),

Add this line to get related products section

Step 4 : Run the application

After integrating the Related Products Module into Spurt Commerce, you can use the following commands to run the application in terminal.

$ flutter run

Or

In Run menu select run without debugging

In case if throws any exception

$ flutter run –no-sound-null-safety

Once you execute the above command you can view the installed module in Spurt Commerce, within the page in which you have integrated

Step 5 : Make the build

In order to build, you need to run the following commands. In order to check the application, run the following commands and build the application.

$flutter build

If you want to split the abi then

$flutter build –split-per-abi

For bundle build

$flutter build appbundle

Setup an API (Step By Step)