LocalePicker
A locale picker for choosing and resetting language decisions in multilingual interfaces.
import { LocalePicker } from "@schukai/monster/source/components/accessibility/locale-picker.mjs";Introduction
The Monster LocalePicker lets users choose or reset their language preference through a direct UI control. Use it when multilingual products should make locale choice explicit and easy to revisit.
When to use LocalePicker
- Use it for visible language choice: Helpful on public sites and onboarding surfaces.
- Use it when users may want to override automatic locale detection: Manual control improves trust.
- Do not hide it behind unrelated account settings: Language switching should be easy to discover.
Simple Example
In this simple example, the language selector is seamlessly inserted into the DOM structure.
For the control to function properly, if the document's language is English, the html tag must include the attribute lang="en". Additionally, the alternative languages must be specified using link tags. This is done by adding the hreflang attribute to the HTMLLinkElement.
If you want to display the element as a popup or as a layer over other elements, you can easily achieve this using CSS. Simply define the following styles. You can also apply them through a separate CSS class: style="position: absolute; left: 0; top: 0; background-color: greenyellow; border: 1px solid black; padding: 10px;"
Javascript
import "@schukai/monster/source/components/accessibility/locale-picker.mjs";<script type="module">import "@schukai/monster/source/components/accessibility/locale-picker.mjs";</script>HTML
<monster-locale-picker></monster-locale-picker>Stylesheet
/** no additional stylesheet is defined **/Reset Selection
In this example, we demonstrate how to reverse a decision that has already been made. This is useful, for instance, when you want to give the user the option to undo an incorrect decision made by mistake.
The decision can easily be reversed by calling the reset method of the monster-locale-picker element.
Important Note: In this guide, we’re only simulating the behavior as there are no other language versions of the guide available. Clicking the switch to English button will therefore result in an error.
Javascript
import "@schukai/monster/source/components/accessibility/locale-picker.mjs";
document.getElementById("reset-button").addEventListener("click", function() {
document.getElementById("locale-picker").reset();
});<script type="module">import "@schukai/monster/source/components/accessibility/locale-picker.mjs";
document.getElementById("vi9Iu").addEventListener("click", function() {
document.getElementById("vi9Iu-lp").reset();
});</script>HTML
<monster-locale-picker id="locale-picker"></monster-locale-picker>
<button id="reset-button">reset decision</button>Stylesheet
/** no additional stylesheet is defined **/Component Design
This component is built using the Shadow DOM, which allows it to encapsulate its internal structure and styling. By using a shadow root, the component's internal elements are isolated from the rest of the webpage, ensuring that external styles or scripts cannot accidentally modify its internal layout or behavior.
Shadow DOM and Accessibility
Since the component is encapsulated within a shadow root, direct access to its internal elements is restricted. This means that developers cannot manipulate or style these elements from outside the component. The Shadow DOM helps maintain consistency in the design and behavior of the component by preventing external interference.
Customizing Through Exported Parts
While the Shadow DOM restricts direct access to the component's internal structure, customization is still possible through exported parts. Specific parts of the component are made accessible for styling by being explicitly marked for export. These exported parts can be targeted and customized using CSS, allowing you to modify the appearance of the component without compromising its encapsulation.
Available Part Attributes
control: This part represents the main control area, which includes the headline, buttons, and dropdown for language selection. Use this to style the layout and general appearance of the component.headline: Represents the headline text, which is customizable for different locales.container: Represents the container for buttons and the language dropdown.
Below is an example of how to use CSS part attributes to customize different parts of the Locale Picker.
monster-locale-picker::part(control) {
background-color: #f9f9f9;
padding: 16px;
}
monster-locale-picker::part(headline) {
font-size: 1.5em;
color: #333;
}
monster-locale-picker::part(container) {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 10px;
}
Explanation of the Example
monster-locale-picker::part(control): Styles the main control area with a light background and padding for better visual separation.monster-locale-picker::part(headline): Adjusts the font size and color of the headline to emphasize its importance.monster-locale-picker::part(container): Defines a grid layout for the buttons and dropdown, ensuring a structured and responsive design.
Accessibility
Accessibility is a key consideration in the design of this component. By following best practices for web accessibility, the component ensures that users of all abilities can interact with it effectively. This includes support for keyboard navigation, screen readers, and other assistive technologies to provide an inclusive user experience.
HTML Structure
<monster-locale-picker></monster-locale-picker>JavaScript Initialization
const element = document.createElement('monster-locale-picker');
document.body.appendChild(element);Exported
LocalePickerDerived from
CustomElementOptions
The Options listed in this section are defined directly within the class. This class is derived from several parent classes, including the CustomElement class. Therefore, it inherits Options from these parent classes. If you cannot find a specific Options in this list, we recommend consulting the documentation of the CustomElement.
- since
- deprecated
Properties and Attributes
The Properties and Attributes listed in this section are defined directly within the class. This class is derived from several parent classes, including the CustomElement class and ultimately from HTMLElement. Therefore, it inherits Properties and Attributes from these parent classes. If you cannot find a specific Properties and Attributes in this list, we recommend consulting the documentation of the CustomElement.
data-monster-options: Sets the configuration options for the collapse component when used as an HTML attribute.data-monster-option-[name]: Sets the value of the configuration option[name]for the collapse component when used as an HTML attribute.
Methods
The methods listed in this section are defined directly within the class. This class is derived from several parent classes, including the CustomElement class and ultimately from HTMLElement. Therefore, it inherits methods from these parent classes. If you cannot find a specific method in this list, we recommend consulting the documentation of the CustomElement.
Behavioral methods
hide()reset()show()Static methods
[instanceSymbol]()instanceof operator.getCSSStyleSheet()- {CSSStyleSheet[]}
getTag()- {string}
Lifecycle methods
Lifecycle methods are called by the environment and are usually not intended to be called directly.
[assembleMethodSymbol]()- {LocalePicker}
connectedCallback()- {void}
Other methods
[updaterTransformerMethodsSymbol]()- {object}: object containing transformer methods for internal use.
Events
This component does not fire any public events. It may fire events that are inherited from its parent classes.