File size: 703 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
import { AddOns } from '@automattic/data-stores';
/**
* Since 50GB and 100GB storage addons are essentially a 1GB space product with
* quantity 50/100, this function returns the quantity based on the storage addon slug.
* This is used to build the shopping cart item for the storage addon.
* @param storageAddonSlug Slug for the storage addon.
* @returns Quantity of the 1GB storage product that corresponds to the addon slug.
*/
function getQuantityFromStorageType( storageAddonSlug: string ): number {
switch ( storageAddonSlug ) {
case AddOns.ADD_ON_50GB_STORAGE:
return 50;
case AddOns.ADD_ON_100GB_STORAGE:
return 100;
}
return 0;
}
export default getQuantityFromStorageType;
|