selectCountries$(): Observable<Country[]>¶
The selectCountries$
method allows you to get the observable with the countries currently supported in a shop.
Returned value¶
A returned value has a type of Observable<Country[]>
where Country
represents the Country model.
Example¶
In this example we make a StorefrontSettingsApi
call to get the observable with the countries currently supported in a shop.
useStorefront(async (storefront) => {
const storefrontSettingsApi = storefront.getApiSync('StorefrontSettingsApi');
const countries$ = storefrontSettingsApi.selectCountries$();
countries$.subscribe((countries) => {
countries.forEach((country) => {
console.log('name of the country:', country.name);
});
});
});
Storefront Settings API methods reference¶
- getSkinSettings
- getPageSettings
- selectSkinSettings$
- selectPageSettings$
- selectFrontstoreApiUrl$
- getLocales
- selectLocales$
- getCountries
- getCountryById
- selectCountryById$
- getCountryByCode
- selectCountryByCode$