Exciting release!Introducing "safe npm". Learn more
Socket
Log inDemoInstall

@vtex/estimate-calculator

Package Overview
Dependencies
1
Maintainers
27
Versions
10
Issues
File Explorer

Advanced tools

@vtex/estimate-calculator

> Small library to calculate and compare SLAs' shippingEstimate

    1.1.0latest
    npm

Version published
Maintainers
27
Weekly downloads
802
increased by18.81%

Weekly downloads

Readme

Source

estimate-calculator

Small library to calculate and compare SLAs' shippingEstimate

Install

$ npm install @vtex/estimate-calculator

Usage

const estimateCalculator = require('@vtex/estimate-calculator') estimateCalculator.getFastestSla([ { id: 1, shippingEstimate: '50bd' }, { id: 2, shippingEstimate: '15bd' }, { id: 3, shippingEstimate: '100bd' }, ]) // { id: 2, shippingEstimate: '15bd' }

API

getShippingEstimateQuantity(estimate)

Returns only the shippingEstimate quantity

estimate

Type: String

shippingEstimate of a given SLA

getShippingEstimateUnit(estimate)

Returns only the shippingEstimate unit

estimate

Type: String

shippingEstimate of a given SLA

getShippingEstimateQuantityInSeconds(estimate)

Returns shippingEstimate converted to seconds

estimate

Type: String

shippingEstimate of a given SLA

getLatestSla(slas)

Returns the SLA that will take the most time (i.e: worst-case scenario in a shippingEstimate context)

slas

Type: Array

List of SLAS

getFastestSla(slas)

Returns the SLA that will be fastest one (i.e: best-case scenario in a shippingEstimate context)

slas

Type: Array

List of SLAS

getCheapestSla(slas)

Returns the chepeast SLA

slas

Type: Array

List of SLAS

selectCheapestSlaForAllItems(logisticsInfo)

Returns the chepeast SLA for all items

logisticsInfo

Type: Object

Object that contains all the logistics information of an order

selectFastestSlaForAllItems(logisticsInfo)

Returns the fastest SLA for all items

logisticsInfo

Type: Array

Array that contains all the logistics information of each item of the order

Format of the Array:

[ // { // itemIndex: 0, // selectedSla: '', // selectedDeliveryChannel: '', // addressId: '62e1db5500824a66bcef708d09388a8e', // slas: [ // { // id: 'Normal', // deliveryChannel: 'delivery', // name: 'Normal', // deliveryIds: [Object], // shippingEstimate: '16bd', // shippingEstimateDate: null, // lockTTL: null, // availableDeliveryWindows: [], // deliveryWindow: null, // price: 334, // listPrice: 334, // tax: 0, // pickupStoreInfo: { // isPickupStore: false, // friendlyName: null, // address: null, // additionalInfo: null, // dockId: null, // }, // }, // { // id: 'Expressa', // deliveryChannel: 'delivery', // name: 'Expressa', // deliveryIds: [Object], // shippingEstimate: '1bd', // shippingEstimateDate: null, // lockTTL: null, // availableDeliveryWindows: [], // deliveryWindow: null, // price: 6666, // listPrice: 6666, // tax: 0, // pickupStoreInfo: { // isPickupStore: false, // friendlyName: null, // address: null, // additionalInfo: null, // dockId: null, // }, // }, // ], // shipsTo: ['BRA'], // itemId: '100006784', // deliveryChannels: [{ id: 'delivery' }, { id: 'pickup-in-point' }], // }, // { // itemIndex: 1, // selectedSla: '', // selectedDeliveryChannel: '', // addressId: '62e1db5500824a66bcef708d09388a8e', // slas: [ // { // id: 'Normal', // deliveryChannel: 'delivery', // name: 'Normal', // deliveryIds: [ // { // courierId: '1', // warehouseId: '1afe1cf', // dockId: '1b91c3b', // courierName: 'Courrier e-commerce', // quantity: 1, // }, // ], // shippingEstimate: '16bd', // shippingEstimateDate: null, // lockTTL: null, // availableDeliveryWindows: [], // deliveryWindow: null, // price: 333, // listPrice: 333, // tax: 0, // pickupStoreInfo: { // isPickupStore: false, // friendlyName: null, // address: null, // additionalInfo: null, // dockId: null, // }, // }, // { // id: 'Expressa', // deliveryChannel: 'delivery', // name: 'Expressa', // deliveryIds: [Object], // shippingEstimate: '1bd', // shippingEstimateDate: null, // lockTTL: null, // availableDeliveryWindows: [], // deliveryWindow: null, // price: 6667, // listPrice: 6667, // tax: 0, // pickupStoreInfo: { // isPickupStore: false, // friendlyName: null, // address: null, // additionalInfo: null, // dockId: null, // }, // }, // ], // shipsTo: ['BRA'], // itemId: '100006786', // deliveryChannels: [{ id: 'delivery' }, { id: 'pickup-in-point' }], // }, // { // itemIndex: 2, // selectedSla: '', // selectedDeliveryChannel: '', // addressId: '62e1db5500824a66bcef708d09388a8e', // slas: [ // { // id: 'Normal', // deliveryChannel: 'delivery', // name: 'Normal', // deliveryIds: [Object], // shippingEstimate: '16bd', // shippingEstimateDate: null, // lockTTL: null, // availableDeliveryWindows: [], // deliveryWindow: null, // price: 333, // listPrice: 333, // tax: 0, // pickupStoreInfo: { // isPickupStore: false, // friendlyName: null, // address: null, // additionalInfo: null, // dockId: null, // }, // }, // { // id: 'Expressa', // deliveryChannel: 'delivery', // name: 'Expressa', // deliveryIds: [Object], // shippingEstimate: '1bd', // shippingEstimateDate: null, // lockTTL: null, // availableDeliveryWindows: [], // deliveryWindow: null, // price: 6667, // listPrice: 6667, // tax: 0, // pickupStoreInfo: { // isPickupStore: false, // friendlyName: null, // address: null, // additionalInfo: null, // dockId: null, // }, // }, // ], // shipsTo: ['BRA'], // itemId: '100006785', // deliveryChannels: [{ id: 'delivery' }, { id: 'pickup-in-point' }], // }, // ]
Examples
estimateCalculator.getShippingEstimateQuantity('10m') // 10 estimateCalculator.getShippingEstimateUnit('10m') // m estimateCalculator.getShippingEstimateQuantityInSeconds('10m') // 600 estimateCalculator.getLatestSla([ { id: 1, shippingEstimate: '50h' }, { id: 2, shippingEstimate: '15h' }, { id: 3, shippingEstimate: '100h' }, ]) // { id: 3, shippingEstimate: '100h' } estimateCalculator.getFastestSla([ { id: 1, shippingEstimate: '50h' }, { id: 2, shippingEstimate: '15h' }, { id: 3, shippingEstimate: '100h' }, ]) // { id: 2, shippingEstimate: '15h' } estimateCalculator.getCheapestSla([ { id: 1, price: 50 }, { id: 2, price: 15 }, { id: 3, price: 100 }, ]) // { id: 2, price: 15 } estimateCalculator.selectCheapestSlaForAllItems(logistiscsInfo) // [ // { // selectedSla: '', // selectedDeliveryChannel: '', // itemIndex: 0, // addressId: '62e1db5500824a66bcef708d09388a8e', // slas: [ // { // id: 'Normal', // deliveryChannel: 'delivery', // name: 'Normal', // deliveryIds: [[Object]], // shippingEstimate: '16bd', // shippingEstimateDate: null, // lockTTL: null, // availableDeliveryWindows: [], // deliveryWindow: null, // price: 334, // listPrice: 334, // tax: 0, // pickupStoreInfo: { // isPickupStore: false, // friendlyName: null, // address: null, // additionalInfo: null, // dockId: null, // }, // }, // { // id: 'Expressa', // deliveryChannel: 'delivery', // name: 'Expressa', // deliveryIds: [[Object]], // shippingEstimate: '2d', // shippingEstimateDate: null, // lockTTL: null, // availableDeliveryWindows: [], // deliveryWindow: null, // price: 6666, // listPrice: 6666, // tax: 0, // pickupStoreInfo: { // isPickupStore: false, // friendlyName: null, // address: null, // additionalInfo: null, // dockId: null, // }, // }, // ], // shipsTo: ['BRA'], // itemId: '100006784', // deliveryChannels: [[Object], [Object]], // }, // { // selectedSla: '', // selectedDeliveryChannel: '', // itemIndex: 1, // addressId: '62e1db5500824a66bcef708d09388a8e', // slas: [ // { // id: 'Normal', // deliveryChannel: 'delivery', // name: 'Normal', // deliveryIds: [[Object]], // shippingEstimate: '16bd', // shippingEstimateDate: null, // lockTTL: null, // availableDeliveryWindows: [], // deliveryWindow: null, // price: 333, // listPrice: 333, // tax: 0, // pickupStoreInfo: { // isPickupStore: false, // friendlyName: null, // address: null, // additionalInfo: null, // dockId: null, // }, // }, // { // id: 'Expressa', // deliveryChannel: 'delivery', // name: 'Expressa', // deliveryIds: [[Object]], // shippingEstimate: '2d', // shippingEstimateDate: null, // lockTTL: null, // availableDeliveryWindows: [], // deliveryWindow: null, // price: 6667, // listPrice: 6667, // tax: 0, // pickupStoreInfo: { // isPickupStore: false, // friendlyName: null, // address: null, // additionalInfo: null, // dockId: null, // }, // }, // ], // shipsTo: ['BRA'], // itemId: '100006786', // deliveryChannels: [{ id: 'delivery' }, { id: 'pickup-in-point' }], // }, // { // selectedSla: '', // selectedDeliveryChannel: '', // itemIndex: 2, // addressId: '62e1db5500824a66bcef708d09388a8e', // slas: [ // { // id: 'Normal', // deliveryChannel: 'delivery', // name: 'Normal', // deliveryIds: [[Object]], // shippingEstimate: '16bd', // shippingEstimateDate: null, // lockTTL: null, // availableDeliveryWindows: [], // deliveryWindow: null, // price: 333, // listPrice: 333, // tax: 0, // pickupStoreInfo: { // isPickupStore: false, // friendlyName: null, // address: null, // additionalInfo: null, // dockId: null, // }, // }, // { // id: 'Expressa', // deliveryChannel: 'delivery', // name: 'Expressa', // deliveryIds: [[Object]], // shippingEstimate: '2d', // shippingEstimateDate: null, // lockTTL: null, // availableDeliveryWindows: [], // deliveryWindow: null, // price: 6667, // listPrice: 6667, // tax: 0, // pickupStoreInfo: { // isPickupStore: false, // friendlyName: null, // address: null, // additionalInfo: null, // dockId: null, // }, // }, // ], // shipsTo: ['BRA'], // itemId: '100006785', // deliveryChannels: [{ id: 'delivery' }, { id: 'pickup-in-point' }], // }, // ] estimateShipping.selectFastestSlaForAllItems(logisticsInfo)

FAQs

Last updated on 20 Jun 2018

Did you know?

Socket installs a Github app to automatically flag issues on every pull request and report the health of your dependencies. Find out what is inside your node modules and prevent malicious activity before you update the dependencies.

Install Socket
Socket
support@socket.devSocket SOC 2 Logo

Product

  • Package Issues
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc