Skip to content
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

Draft
wants to merge 3 commits into
base: master
Choose a base branch
from

Conversation

thatdudemanguy
Copy link
Contributor

What I did

  1. Added input-amount-dropdown test cases and suite to define the spec of the new component, according to the pre-existing input-tel-dropdown structure.
  2. Added CurrencyUtilManager, according to PhoneUtilManager to handle all possible currency codes.

Copy link

changeset-bot bot commented Mar 31, 2025

⚠️ No Changeset found

Latest commit: 9ad0632

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

Copy link
Member

@gerjanvangeest gerjanvangeest left a 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 () => {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
it('can override "all-countries-label"', async () => {
it('can override "all-currencies-label"', async () => {

'dropdown',
);
// @ts-expect-error [allow-protected]
el._preferredCountriesLabel = 'foo';
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
el._preferredCountriesLabel = 'foo';
el._preferredCurrenciesLabel = 'foo';

spy.restore();
});

it('can override "preferred-countries-label"', async () => {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
it('can override "preferred-countries-label"', async () => {
it('can override "preferred-currencies-label"', async () => {

@@ -0,0 +1,269 @@
const countryToCurrencyList = {
Copy link
Member

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));
Copy link
Member

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.

Suggested change
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'),
Copy link
Member

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.

Suggested change
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',
);
});
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
});
});
it('updates the modelValue based on the currency ', async () => {
// JPY has no decimals, while JOD has 3 decimals.
});

);
});
});
});
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
});
});
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';
Copy link
Member

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants