rn-try-n-buy-abfrl

1.0.4 • Public • Published

rn-try-n-buy-abfrl

npm version

Trial room plugin by Tryndbuy. Supports Android & iOS integration.

Installation

  1. Install:

    • Using npm: npm install rn-try-n-buy-abfrl
    • Using Yarn: yarn add rn-try-n-buy-abfrl
  2. Import it in your JS:

    import Scene from 'rn-try-n-buy-abfrl';

How it works

        <Scene
            uuid={Math.random()}
            sessionid={Math.random()}
            deviceid={Math.random()}
            styleid={'P60202026'}
            colorcode={'F0'}
            gender = {"1"}
            category={0}
            available_sizes={['XXS', 'XS', 'S']}
            closePopup={() => this.closeVTR()}
            enableShoppability={false}
            addToBagDisabled={false}
            addToBag={(obj)=> this.addToBag(obj)}
            addToWishList={(obj)=> this.addToWishList(obj)}
            goToBag={()=> this.goToBag()}
            available_in_bag={true}
            logEvent={(uuid, eventName, eventData)=>this.logEvent(uuid, eventName, eventData)}
          />

Parameters

Below are the list of different parameters to be sent while implementing Scene component:

Key Data type Default value? Description
uuid string Required. Unique id of user.
sessionid string Optional Session id to be stored for logs.
deviceid string Optional Device unique identifier to be stored for logs.
styleid string Required. Style id of the apparel.
colorcode string Optional. Color code of the apparel.
gender string '0' '0' for female, '1' for male, '2' for boy & '3' for girl
category string 0 category id for special apparels like lingerie etc.
available_sizes array of strings Required. List of available sizes for the selected style.
closePopup method obj = {tightFit: 'S', recommendedFit: 'M', looseFit: 'L'}\ (parameters passed) Implement callback when user click on close button in VTR. Button is placed on top left of VTR landing page. This will exit VTR and send a callback 'closePopup' to implement any funcitonality on client side. It also sends the recommended sizes as object.
enableShoppability boolean Required. To show/hide shoppability functionality (add to bag & wishlist) in VTR
addToBagDisabled boolean false If 'false' add to bag option will not be available in VTR side.
addToBag method obj = { skuid: this.state.skuid, recommendedSizes: {tightFit: 'S', recommendedFit: 'M', looseFit: 'L'}, selectedItem: 'M'}\ (parameters passed) This callback method will be called when user click on add to bag on VTR page. This callback enables to add to bag functionality on client side.
addToWishList method obj = { skuid: this.state.skuid, selectedItem: 'M'}\ (parameters passed) This callback method will be called when user click on add to wishlist on VTR page. This callback enables to add to wishlist functionality on client side.
goToBag method This callback method will be called when user click on go to bag on VTR page. This callback enables to go to bag functionality on client side.
available_in_bag boolean Optional. To show/hide add to bag functionality in VTR
logEvent method uuid = unique identifier of users eventName = Name of event to be logged\ eventData = JSON obj for the data to be captured for logs. This callback method can be implemented to capture the logs for events happening on VTR side. Tryndbuy has already implemented logging functionality on VTR where data is captured and store in VTR database for the specified events. logEvent is additional callback method implemented for clients to capture and log the events on their side.

Implementation Samples

        closeVTR = () => {
            // console.log('closeVTR')
        }
        
        addToBag =(obj) =>{
            // console.log('addToBag: ', obj)
        }

        addToWishList =(obj) =>{
            // console.log('addToWishList: ', obj)
        }

        goToBag =() =>{
            // console.log('goToBag')
        }

         logEvent = (uuid, eventName, eventData) => {
            // console.log('Log event: ', `${uuid} : ${eventName} : ${eventData}`)
        }

Package Sidebar

Install

npm i rn-try-n-buy-abfrl

Weekly Downloads

4

Version

1.0.4

License

ISC

Unpacked Size

1.75 MB

Total Files

70

Last publish

Collaborators

  • tnb-repo