Socket
Book a DemoInstallSign in
Socket

escalade-react-price

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

escalade-react-price

A react component to display Escalade Sports pricing.

latest
Source
npmnpm
Version
1.1.7
Version published
Maintainers
1
Created
Source

Escalade Sports React Price Component

A react component to display Escalade Sports pricing.

Installation

With Yarn:

yarn add escalade-react-price

Or npm:

npm install --save escalade-react-price

Basic Usage

To display price for a single item:

import { Price } from 'escalade-react-price'

...

<Price id='AT86A06455R' site='bear' />

{/* Or with render prop */}

<Price id='AT86A06455R' site='bear'>{price => {
	return <div>{price}</div>
}}</Price>

Prefetch Prices

To prefetch prices for all or some products, you can either use the function directly (recommended) or use the component. Just pass in the IDs as well as any other options you would supply for the Price component.

Do this with all IDs on the site to make ensure there's no load times on any price components.

Function

import { prefetchPrices } from 'escalade-react-price'

...

componentWillMount(){
	prefetchPrices({
		site: 'bear',
		ids: [
			'AT86A06455R',
			'AK1450SR',
			'AFT2032140',
		]
	})
}

Component

import { PrefetchPrices } from 'escalade-react-price'

...

<PrefetchPrices
	site='bear'
	ids={[
		'AT86A06455R',
		'AK1450SR',
		'AFT2032140',
	]}
	/>

Additional Properties

PropertyDescriptionTypeDefault
idThe ID to show pricing from (if using Price component)Stringundefined
idsA list of IDs to prefetch pricingArrayundefined
siteThe site ID to pull pricing fromString`process.env.SITE_ID
unavailableDisplay property if pricing is unavailableString or Component''
loadingDisplay property while pricing is loadingString or Component''
cookiesSaves fetched pricing to a cookie for quicker loadingBooleantrue
cookieExpirationNumber of days until cookie expirtesNumber1
pollIntervalLength of time in milliseconds until all product pricing is fetched againNumber900000 (15 minutes)
endpointA URL or stage to fetch prices fromString`process.env.PRICING_ENDPOINT

Keywords

react

FAQs

Package last updated on 05 Mar 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts