-
Notifications
You must be signed in to change notification settings - Fork 314
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore: adds ing-input-amount-dropdown tests #2505
base: master
Are you sure you want to change the base?
chore: adds ing-input-amount-dropdown tests #2505
Conversation
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi @thatdudemanguy great progress!
Keep up the good work 💪
spy.restore(); | ||
}); | ||
|
||
it('can override "all-countries-label"', async () => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
it('can override "all-countries-label"', async () => { | |
it('can override "all-currencies-label"', async () => { |
'dropdown', | ||
); | ||
// @ts-expect-error [allow-protected] | ||
el._preferredCountriesLabel = 'foo'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
el._preferredCountriesLabel = 'foo'; | |
el._preferredCurrenciesLabel = 'foo'; |
spy.restore(); | ||
}); | ||
|
||
it('can override "preferred-countries-label"', async () => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
it('can override "preferred-countries-label"', async () => { | |
it('can override "preferred-currencies-label"', async () => { |
@@ -0,0 +1,269 @@ | |||
const countryToCurrencyList = { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we add the source of this list?
*/ | ||
export const countryToCurrencyMap = new Map(Object.entries(countryToCurrencyList)); | ||
|
||
export const allCurrencies = new Set(Object.values(countryToCurrencyList)); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If we sort the list alphabetical based on allCurrencies, we can use type ahead to select an option.
export const allCurrencies = new Set(Object.values(countryToCurrencyList)); | |
export const allCurrencies = new Set(Object.values(countryToCurrencyList).sort()); |
'model-value-changed': this._onDropdownValueChange, | ||
}, | ||
labels: { | ||
selectCountry: localizeManager.msg('lion-input-tel:selectCountry'), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This still points to the input tel :)
I will requests translations for these 2 sentences. This will take some time, for now we should be fine with only the english text.
selectCountry: localizeManager.msg('lion-input-tel:selectCountry'), | |
selectCurrency: localizeManager.msg('lion-input-amount-dropdown:selectCurrency'), |
expect(getDropdownValue(/** @type {DropdownElement} */ (el.refs.dropdown.value))).to.equal( | ||
'EUR', | ||
); | ||
}); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
}); | |
}); | |
it('updates the modelValue based on the currency ', async () => { | |
// JPY has no decimals, while JOD has 3 decimals. | |
}); |
); | ||
}); | ||
}); | ||
}); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
}); | |
}); | |
describe('On locale change', () => { | |
it('on "en-GB" it sets the dropdown as a prefix', async () => {}); | |
it('on "nl-NL" it sets the dropdown as a suffix', async () => {}); | |
}); |
@@ -0,0 +1 @@ | |||
export { LionInputAmountDropdown } from '../components/input-amount-dropdown/src/LionInputAmountDropdown.js'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also need to add input-amount-dropdown-test-helpers.js
and input-amount-dropdown-test-suites.js` to the export folder to make the tests run.
What I did
input-amount-dropdown
test cases and suite to define the spec of the new component, according to the pre-existinginput-tel-dropdown
structure.CurrencyUtilManager
, according toPhoneUtilManager
to handle all possible currency codes.