Store Selected Region in Storefront

In this guide, you'll learn how to store a customer's selected region in your storefront, then retrieve it for later use.

Why Select and Store Region?#

In your store, prices, taxes, and available payment methods can vary between regions.

So, you should allow customers to select their region to see the correct prices, taxes, and payment methods.


Store Selected Region ID#

To allow the customer to select a region, you should show them the list of regions as explained in the List Regions guide. You can show them in a select input, for example.

Then, once the customer selects their region, store that region's ID in the localStorage.

For example:

Code
localStorage.setItem("region_id", region.id)

Then, you can retrieve it later using the localSorage.getItem method:

Code
const regionId = localStorage.getItem("region_id")

Retrieve Selected Region's Details#

As you build your storefront, you may need to retrieve the full details of a region. For example, to get the region's currency code.

To retrieve the selected region's details from Medusa, use the Retrieve Region API route:

TipLearn how to install and configure the JS SDK in the JS SDK documentation.
Code
1const regionId = localStorage.getItem("region_id")2
3sdk.store.region.retrieve(regionId)4.then(({ region }) => {5  console.log(region)6})

The response has a regions field, which is an array of regions.


Store Region Details in React Context#

If you're using React, it's then recommended to create a context that stores the region details and make it available to all components in your application, as explained in the Region React Context in Storefront guide.

Was this page helpful?
Ask Anything
FAQ
What is Medusa?
How can I create a module?
How can I create a data model?
How do I create a workflow?
How can I extend a data model in the Product Module?
Recipes
How do I build a marketplace with Medusa?
How do I build digital products with Medusa?
How do I build subscription-based purchases with Medusa?
What other recipes are available in the Medusa documentation?
Chat is cleared on refresh
Line break