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

fix(components): update style of language switch and fix keyboard nav #4260

Merged
merged 7 commits into from
Dec 20, 2024
Merged
Show file tree
Hide file tree
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .changeset/few-ways-beam.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
'@swisspost/design-system-documentation': major
'@swisspost/design-system-components': major
---

Renamed the "dropdown" variant to "menu" for the `post-language-switch` and `post-language-option` components.
5 changes: 5 additions & 0 deletions .changeset/moody-coats-kneel.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@swisspost/design-system-components': patch
---

Updated style and keyboard navigation of `post-language-switch`.
8 changes: 4 additions & 4 deletions packages/components/cypress/e2e/language-option.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ describe('language-option', () => {
describe('button', () => {
beforeEach(() => {
cy.getComponent('language-option', LANGUAGE_OPTION_ID);
cy.get('@language-option').shadow().find('button').as('button');
cy.get('@language-option').find('button').as('button');
});

it('should render', () => {
cy.get('@language-option').should('exist');
});

it('should not render an anchor', () => {
cy.get('@language-option').shadow().find('a').should('not.exist');
cy.get('@language-option').find('a').should('not.exist');
});

it('should render a button with correct properties', () => {
Expand All @@ -35,15 +35,15 @@ describe('language-option', () => {
describe('anchor', () => {
beforeEach(() => {
cy.getComponent('language-option', LANGUAGE_OPTION_ID, 'anchor');
cy.get('@language-option').shadow().find('a').as('anchor');
cy.get('@language-option').find('a').as('anchor');
});

it('should render', () => {
cy.get('@language-option').should('exist');
});

it('should not render a button', () => {
cy.get('@language-option').shadow().find('button').should('not.exist');
cy.get('@language-option').find('button').should('not.exist');
});

it('should render an anchor', () => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ export class PostHeader {
}

private switchLanguageSwitchMode() {
const variant: SwitchVariant = this.device === 'desktop' ? 'dropdown' : 'list';
const variant: SwitchVariant = this.device === 'desktop' ? 'menu' : 'list';
this.host.querySelector('post-language-switch')?.setAttribute('variant', variant);
}

Expand Down
Original file line number Diff line number Diff line change
@@ -1,64 +1,83 @@
@use '@swisspost/design-system-styles/core' as post;
@use '@swisspost/design-system-styles/mixins/utilities' as utilities-mx;

:host {
post-language-option {
display: inline-block;
width: fit-content;
}

button {
@include post.reset-button;
}
button {
@include post.reset-button;
}

a {
color: inherit;
text-decoration: none;
}
a {
color: inherit;
text-decoration: none;
}

:is(a, button) {
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
height: 100%;
width: 100%;
padding: var(--post-language-option-padding);
:is(a, button) {
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
height: 100%;
width: 100%;
padding: var(--post-language-option-padding);
border-radius: 2px;
@include utilities-mx.focus-style;
}
}

.post-language-option-list {
@include post.focus-style;
border-radius: 2px;
width: 40px;
height: 40px;
post-language-option:where([variant='list']) {
:is(a, button) {
width: 40px;
height: 40px;

&[aria-current='true'],
&[aria-current='page'] {
background-color: #050400;
color: #fff;
&:hover {
color: #504f4b;
}

&[aria-current='true'],
&[aria-current='page'] {
background-color: #050400;
color: #fff;

&:hover {
background-color: #504f4b;
}
}
}
}

.post-language-option-dropdown {
padding-block: 13px;
padding-inline: 24px;
box-sizing: border-box;
position: relative;
post-language-option:where([variant='menu']) {
width: 100%;

:is(a, button) {
padding-block: 13px;
padding-inline: 24px;
box-sizing: border-box;
position: relative;
left: -1px;
width: calc(100% + 2px);

&[aria-current='true'],
&[aria-current='page'] {
&::after {
content: '';
left: 0;
height: 3px;
background-color: #050400;
width: 100%;
display: block;
position: absolute;
bottom: 3px;
}

&[aria-current='true'],
&[aria-current='page'] {
&::after {
content: '';
left: -2px;
height: 3px;
background-color: #504f4b;
width: calc(100% + 4px);
display: block;
position: absolute;
bottom: 3px;
&:hover::after {
background-color: #504f4b;
}
}

&:focus::after {
width: calc(100% - 5px);
left: 2px;
&:hover {
color: #504f4b;
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ import { SwitchVariant } from '../post-language-switch/switch-variants';
@Component({
tag: 'post-language-option',
styleUrl: 'post-language-option.scss',
shadow: true,
})
export class PostLanguageOption {
@Element() host: HTMLPostLanguageOptionElement;
Expand Down Expand Up @@ -125,26 +124,34 @@ export class PostLanguageOption {
const lang = this.code.toLowerCase();

return (
<Host data-version={version} role="listitem">
<Host data-version={version} role={this.variant ? `${this.variant}item` : null}>
{this.url ? (
<a
class={this.variant ? `post-language-option-${this.variant}` : ''}
aria-current={this.active ? 'page' : undefined}
aria-label={this.name}
href={this.url}
hrefLang={lang}
lang={lang}
onClick={() => this.emitChange()}
onKeyDown={e => {
if (e.key === 'Enter' || e.key === ' ') {
this.emitChange();
}
}}
leagrdv marked this conversation as resolved.
Show resolved Hide resolved
>
<slot />
</a>
) : (
<button
class={this.variant ? `post-language-option-${this.variant}` : ''}
aria-current={this.active ? 'true' : undefined}
aria-label={this.name}
lang={lang}
onClick={() => this.emitChange()}
onKeyDown={e => {
if (e.key === 'Enter' || e.key === ' ') {
this.emitChange();
}
}}
>
<slot />
</button>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@

## Properties

| Property | Attribute | Description | Type | Default |
| ------------------- | --------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------- | ----------- |
| `active` | `active` | If set to `true`, the language option is considered the current language for the page. | `boolean` | `undefined` |
| `code` _(required)_ | `code` | The ISO 639 language code, formatted according to [RFC 5646 (also known as BCP 47)](https://datatracker.ietf.org/doc/html/rfc5646). For example, "de". | `string` | `undefined` |
| `name` | `name` | The full name of the language. For example, "Deutsch". | `string` | `undefined` |
| `url` | `url` | The URL used for the href attribute of the internal anchor. This field is optional; if not provided, a button will be used internally instead of an anchor. | `string` | `undefined` |
| `variant` | `variant` | The variant of the post-language-switch parent (dynamically set by the parent) | `"dropdown" \| "list"` | `undefined` |
| Property | Attribute | Description | Type | Default |
| ------------------- | --------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------ | ----------- |
| `active` | `active` | If set to `true`, the language option is considered the current language for the page. | `boolean` | `undefined` |
| `code` _(required)_ | `code` | The ISO 639 language code, formatted according to [RFC 5646 (also known as BCP 47)](https://datatracker.ietf.org/doc/html/rfc5646). For example, "de". | `string` | `undefined` |
| `name` | `name` | The full name of the language. For example, "Deutsch". | `string` | `undefined` |
| `url` | `url` | The URL used for the href attribute of the internal anchor. This field is optional; if not provided, a button will be used internally instead of an anchor. | `string` | `undefined` |
| `variant` | `variant` | The variant of the post-language-switch parent (dynamically set by the parent) | `"list" \| "menu"` | `undefined` |


## Events
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,26 @@
@use '@swisspost/design-system-styles/mixins/button' as button-mx;
@use '@swisspost/design-system-styles/mixins/utilities' as utilities-mx;
@use '@swisspost/design-system-styles/components/header/mixins' as header-mx;
@use '@swisspost/design-system-styles/mixins/media';

tokens.$default-map: components.$post-button;

:host {
display: block;

@include media.max(lg) {
display: flex !important;
gap: 0.5rem;
}
}

.post-language-switch-dropdown-container {
display: flex;
flex-direction: column;

> * {
width: 100%;
}
}

.post-language-switch-trigger {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ export class PostLanguageSwitch {
});
}

componentShouldUpdate() {
componentWillUpdate() {
this.updateChildrenVariant();
}

Expand All @@ -100,7 +100,7 @@ export class PostLanguageSwitch {
});

// Hides the dropdown when an option has been clicked
if (this.variant === 'dropdown') {
if (this.variant === 'menu') {
const menu = this.host.shadowRoot.querySelector('post-menu') as HTMLPostMenuElement;
menu.toggle(menu);
}
Expand Down Expand Up @@ -133,10 +133,8 @@ export class PostLanguageSwitch {
<post-icon aria-hidden="true" name="chevrondown"></post-icon>
</button>
</post-menu-trigger>
<post-menu id={this.menuId}>
<div class="post-language-switch-dropdown-container">
<slot></slot>
</div>
<post-menu id={this.menuId} class="post-language-switch-dropdown-container">
<slot></slot>
</post-menu>
</Host>
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@

## Properties

| Property | Attribute | Description | Type | Default |
| ------------- | ------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------- | ----------- |
| `caption` | `caption` | A title for the list of language options | `string` | `undefined` |
| `description` | `description` | A descriptive text for the list of language options | `string` | `undefined` |
| `variant` | `variant` | Variant that determines the rendering of the language switch either as a list (used on mobile in the header) or a dropdown (used on desktop in the header) | `"dropdown" \| "list"` | `'list'` |
| Property | Attribute | Description | Type | Default |
| ------------- | ------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------ | ----------- |
| `caption` | `caption` | A title for the list of language options | `string` | `undefined` |
| `description` | `description` | A descriptive text for the list of language options | `string` | `undefined` |
| `variant` | `variant` | Variant that determines the rendering of the language switch either as a list (used on mobile in the header) or a dropdown (used on desktop in the header) | `"list" \| "menu"` | `'list'` |


## Dependencies
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export const SWITCH_VARIANTS = ['list', 'dropdown'] as const;
export const SWITCH_VARIANTS = ['list', 'menu'] as const;

export type SwitchVariant = (typeof SWITCH_VARIANTS)[number];
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ function renderLanguageSwitchAsLinks(args: Partial<HTMLPostLanguageSwitchElement
return html`<post-language-switch
caption=${args.caption}
description=${args.description}
variant="dropdown"
variant="menu"
>
<post-language-option url="/de" active="true" code="de" name="Deutsch">DE</post-language-option>
<post-language-option url="/en" active="false" code="en" name="English"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,6 @@ export const LanguageOption: Story = {
_args: HTMLPostLanguageOptionElement,
context: StoryContext<HTMLPostLanguageOptionElement>,
) => {
return schemes(
() => html`
<div class="d-flex flex-column gap-16" role="list">
${meta.render?.({ ...context.args }, context)}
</div>
`,
);
return schemes(() => html` ${meta.render?.({ ...context.args }, context)} `);
},
};
Loading