fix(dashboard): Fix CountrySelect (#8301)

Resolves CC-214
This commit is contained in:
Kasper Fabricius Kristensen
2024-07-27 15:27:13 +00:00
committed by GitHub
parent d63ca00214
commit 56f634da4b
2 changed files with 68 additions and 51 deletions
@@ -12,8 +12,16 @@ import { countries } from "../../../lib/data/countries"
export const CountrySelect = forwardRef< export const CountrySelect = forwardRef<
HTMLSelectElement, HTMLSelectElement,
ComponentPropsWithoutRef<"select"> & { placeholder?: string } ComponentPropsWithoutRef<"select"> & {
>(({ className, disabled, placeholder, ...props }, ref) => { placeholder?: string
value?: string
defaultValue?: string
}
>(
(
{ className, disabled, placeholder, value, defaultValue, ...props },
ref
) => {
const { t } = useTranslation() const { t } = useTranslation()
const innerRef = useRef<HTMLSelectElement>(null) const innerRef = useRef<HTMLSelectElement>(null)
@@ -32,6 +40,8 @@ export const CountrySelect = forwardRef<
)} )}
/> />
<select <select
value={value ? value.toLowerCase() : undefined}
defaultValue={defaultValue ? defaultValue.toLowerCase() : undefined}
disabled={disabled} disabled={disabled}
className={clx( className={clx(
"bg-ui-bg-field shadow-buttons-neutral transition-fg txt-compact-small flex w-full select-none appearance-none items-center justify-between rounded-md px-2 py-1.5 outline-none", "bg-ui-bg-field shadow-buttons-neutral transition-fg txt-compact-small flex w-full select-none appearance-none items-center justify-between rounded-md px-2 py-1.5 outline-none",
@@ -55,7 +65,7 @@ export const CountrySelect = forwardRef<
</option> </option>
{countries.map((country) => { {countries.map((country) => {
return ( return (
<option key={country.iso_2} value={country.iso_2}> <option key={country.iso_2} value={country.iso_2.toLowerCase()}>
{country.display_name} {country.display_name}
</option> </option>
) )
@@ -63,5 +73,6 @@ export const CountrySelect = forwardRef<
</select> </select>
</div> </div>
) )
}) }
)
CountrySelect.displayName = "CountrySelect" CountrySelect.displayName = "CountrySelect"
@@ -1,6 +1,6 @@
import { AddressDTO } from "@medusajs/types" import { AddressDTO } from "@medusajs/types"
import { countries } from "./data/countries" import { countries, getCountryByIso2 } from "./data/countries"
export const isSameAddress = (a: AddressDTO | null, b: AddressDTO | null) => { export const isSameAddress = (a: AddressDTO | null, b: AddressDTO | null) => {
if (!a || !b) { if (!a || !b) {
@@ -72,8 +72,14 @@ export const getFormattedAddress = ({
if (country) { if (country) {
formattedAddress.push(country.display_name) formattedAddress.push(country.display_name)
} else if (country_code) { } else if (country_code) {
const country = getCountryByIso2(country_code)
if (country) {
formattedAddress.push(country.display_name)
} else {
formattedAddress.push(country_code.toUpperCase()) formattedAddress.push(country_code.toUpperCase())
} }
}
return formattedAddress return formattedAddress
} }