1.1.7 • Published 6 years ago

escalade-react-price v1.1.7

Weekly downloads
1
License
MIT
Repository
github
Last release
6 years ago

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 fromStringprocess.env.SITE_ID || process.env.GATSBY_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 fromStringprocess.env.PRICING_ENDPOINT || process.env.GATSBY_PRICING_ENDPOINT || 'production'
1.1.7

6 years ago

1.1.6

6 years ago

1.1.5

6 years ago

1.1.4

6 years ago

1.1.3

6 years ago

1.1.2

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago