4.0.1-p4.0.0.1 • Published 4 years ago

@limetech/mdc-chips v4.0.1-p4.0.0.1

Weekly downloads
493
License
MIT
Repository
github
Last release
4 years ago

Chips

Chips are compact elements that allow users to enter information, select a choice, filter content, or trigger an action.

Design & API Documentation

Installation

npm install @limetech/mdc-chips

Basic Usage

HTML Structure

Note: Due to IE11 and Edge's lack of support for the :focus-within selector, keyboard navigation of the chip set will not be visually obvious.

<div class="mdc-chip-set" role="grid">
  <div class="mdc-chip" role="row">
    <div class="mdc-chip__ripple"></div>
    <span role="gridcell">
      <span role="button" tabindex="0" class="mdc-chip__text">Chip One</span>
    </span>
  </div>
  <div class="mdc-chip" role="row">
    <div class="mdc-chip__ripple"></div>
    <span role="gridcell">
      <span role="button" tabindex="-1" class="mdc-chip__text">Chip Two</span>
    </span>
  </div>
  ...
</div>

Styles

@import "@limetech/mdc-chips/mdc-chips";

JavaScript Instantiation

import {MDCChipSet} from '@limetech/mdc-chips';
const chipSetEl = document.querySelector('.mdc-chip-set');
const chipSet = new MDCChipSet(chipSetEl);

See Importing the JS component for more information on how to import JavaScript.

Variants

Leading and Trailing Icons

You can optionally add a leading icon (i.e. thumbnail) and/or a trailing "remove" icon to a chip. To add an icon, add an i element with your preferred icon, give it a class of mdc-chip__icon, and a class of either mdc-chip__icon--leading or mdc-chip__icon--trailing.

We recommend using Material Icons from Google Fonts:

<head>
  <link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
</head>

However, you can also use SVG, Font Awesome, or any other icon library you wish.

Leading icon

<div class="mdc-chip" role="row">
  <div class="mdc-chip__ripple"></div>
  <i class="material-icons mdc-chip__icon mdc-chip__icon--leading">event</i>
  <span role="gridcell">
    <span role="button" tabindex="0" class="mdc-chip__text">Add to calendar</span>
  </span>
</div>

Trailing icon

A trailing icon comes with the functionality to remove the chip from the set. If you're adding a trailing icon, also set tabindex="0" and role="button" to make it accessible by keyboard and screenreader. Trailing icons should only be added to input chips.

<div class="mdc-chip" role="row">
  <div class="mdc-chip__ripple"></div>
  <span role="gridcell">
    <span role="button" tabindex="0" class="mdc-chip__text">Jane Smith</span>
  </span>
  <span role="gridcell">
    <i class="material-icons mdc-chip__icon mdc-chip__icon--trailing" tabindex="-1" role="button">cancel</i>
  </span>
</div>

Choice Chips

Choice chips are a variant of chips which allow single selection from a set of options. To define a set of chips as choice chips, add the class mdc-chip-set--choice to the chip set element.

<div class="mdc-chip-set mdc-chip-set--choice" role="grid">
  ...
</div>

Filter Chips

Filter chips are a variant of chips which allow multiple selection from a set of options. To define a set of chips as filter chips, add the class mdc-chip-set--filter to the chip set element. When a filter chip is selected, a checkmark appears as the leading icon. If the chip already has a leading icon, the checkmark replaces it. This requires the HTML structure of a filter chip to differ from other chips:

<div class="mdc-chip-set mdc-chip-set--filter" role="grid">
  <div class="mdc-chip" role="row">
    <div class="mdc-chip__ripple"></div>
    <span class="mdc-chip__checkmark" >
      <svg class="mdc-chip__checkmark-svg" viewBox="-2 -3 30 30">
        <path class="mdc-chip__checkmark-path" fill="none" stroke="black"
              d="M1.73,12.91 8.1,19.28 22.79,4.59"/>
      </svg>
    </span>
    <span role="gridcell">
      <span role="checkbox" tabindex="0" aria-checked="false" class="mdc-chip__text">Filterable content</span>
    </span>
  </button>
  ...
</div>

To use a leading icon in a filter chip, put the mdc-chip__icon--leading element before the mdc-chip__checkmark element:

<div class="mdc-chip-set mdc-chip-set--filter" role="grid">
  <div class="mdc-chip" role="row">
    <div class="mdc-chip__ripple"></div>
    <i class="material-icons mdc-chip__icon mdc-chip__icon--leading">face</i>
    <span class="mdc-chip__checkmark" >
      <svg class="mdc-chip__checkmark-svg" viewBox="-2 -3 30 30">
        <path class="mdc-chip__checkmark-path" fill="none" stroke="black"
              d="M1.73,12.91 8.1,19.28 22.79,4.59"/>
      </svg>
    </span>
    <span role="gridcell">
      <span role="checkbox" tabindex="0" aria-checked="false" class="mdc-chip__text">Filterable content</span>
    </span>
  </div>
  ...
</div>

Input Chips

Input chips are a variant of chips which enable user input by converting text into chips. To define a set of chips as input chips, add the class mdc-chip-set--input to the chip set element.

<div class="mdc-chip-set mdc-chip-set--input" role="grid">
  ...
</div>

Adding Chips to the DOM

The MDC Chips package does not handle the process of converting text into chips, in order to remain framework-agnostic. The MDCChipSet component exposes an addChip method, which accepts an element which is expected to already be inserted within the Chip Set element after any existing chips. The MDCChipSet component will then handle creating and tracking a MDCChip component instance.

For example:

input.addEventListener('keydown', function(event) {
  if (event.key === 'Enter' || event.keyCode === 13) {
    const chipEl = document.createElement('div');
    // ... perform operations to properly populate/decorate chip element ...
    chipSetEl.appendChild(chipEl);
    chipSet.addChip(chipEl);
  }
});

NOTE: MDCChipSet will generate a unique ID to apply to each added chip's element if it does not already have an ID when it is passed to addChip. This is used to distinguish chips during user interactions.

Removing Chips from the DOM

By default, input chips are removed in response to clicking the trailing remove icon in the chip. Removal can also be triggered by calling MDCChip's beginExit() method.

Individual MDCChip instances will emit a MDCChip:removal event once the exit transition ends. MDCChipSet will handle destroying the MDCChip instance in response to MDCChip:removal, but it must be removed from the DOM manually. You can listen for MDCChip:removal from the parent Chip Set or any ancestor, since the event bubbles:

chipSet.listen('MDCChip:removal', function(event) {
  chipSetEl.removeChild(event.detail.root);
});

Pre-selected

To display a pre-selected filter or choice chip, add the class mdc-chip--selected to the root chip element.

<div class="mdc-chip-set mdc-chip-set--choice" role="grid">
  <div class="mdc-chip mdc-chip--selected" role="row">
    <div class="mdc-chip__ripple"></div>
    <span role="gridcell">
      <span role="radio" tabindex="0" aria-checked="true" class="mdc-chip__text">Add to calendar</span>
    </span>
  </div>
</div>

To pre-select filter chips that have a leading icon, also add the class mdc-chip__icon--leading-hidden to the mdc-chip__icon--leading element. This will ensure that the checkmark displaces the leading icon.

<div class="mdc-chip-set mdc-chip-set--filter" role="grid">
  <div class="mdc-chip mdc-chip--selected" role="row">
    <div class="mdc-chip__ripple"></div>
    <i class="material-icons mdc-chip__icon mdc-chip__icon--leading mdc-chip__icon--leading-hidden">face</i>
    <span class="mdc-chip__checkmark">
      <svg class="mdc-chip__checkmark-svg" viewBox="-2 -3 30 30">
        <path class="mdc-chip__checkmark-path" fill="none" stroke="black"
              d="M1.73,12.91 8.1,19.28 22.79,4.59"/>
      </svg>
    </span>
    <span role="gridcell">
      <span role="checkbox" tabindex="0" aria-checked="true" class="mdc-chip__text">Filterable content</span>
    </span>
  </div>
</div>

Additional Information

Accessibility

Material Design spec advises that touch targets should be at least 48 x 48 px. To meet this requirement, add the following to your chip:

<div class="mdc-touch-target-wrapper">
  <button class="mdc-chip mdc-chip--touch">
    <div class="mdc-chip__ripple"></div>
    <span role="gridcell">
      <span role="button" tabindex="0" class="mdc-chip__text">Chip One</span>
    </span>
    <div class="mdc-chip__touch"></div>
  </button>
</div>

Note that the outer mdc-touch-target-wrapper element is only necessary if you want to avoid potentially overlapping touch targets on adjacent elements (due to collapsing margins).

Style Customization

CSS Classes

CSS ClassDescription
mdc-chip-setMandatory. Indicates the set that the chip belongs to.
mdc-chip-set--inputOptional. Indicates that the chips in the set are input chips, which enable user input by converting text into chips.
mdc-chip-set--choiceOptional. Indicates that the chips in the set are choice chips, which allow a single selection from a set of options.
mdc-chip-set--filterOptional. Indicates that the chips in the set are filter chips, which allow multiple selection from a set of options.
mdc-chipMandatory.
mdc-chip__rippleMandatory. Indicates the element which shows the ripple styling.
mdc-chip--selectedOptional. Indicates that the chip is selected.
mdc-chip__textMandatory. Indicates the text content of the chip.
mdc-chip__iconOptional. Indicates an icon in the chip. We recommend using Material Icons from Google Fonts.
mdc-chip__icon--leadingOptional. Indicates a leading icon in the chip.
mdc-chip__icon--leading-hiddenOptional. Hides the leading icon in a filter chip when the chip is selected.
mdc-chip__icon--trailingOptional. Indicates a trailing icon which removes the chip from the DOM. Only use with input chips.
mdc-chip__checkmarkOptional. Indicates the checkmark in a filter chip.
mdc-chip__checkmark-svgMandatory with the use of mdc-chip__checkmark. Indicates the checkmark SVG element in a filter chip.
mdc-chip__checkmark-pathMandatory with the use of mdc-chip__checkmark. Indicates the checkmark SVG path in a filter chip.

NOTE: Every element that has an mdc-chip__icon class must also have either the mdc-chip__icon--leading or mdc-chip__icon--trailing class.

mdc-chip__action--primary | Mandatory. Placed on the mdc-chip__text element. mdc-chip__action--trailing | Optinoal. Placed on the mdc-chip__icon--trailing when it should be accessible via keyboard navigation. mdc-chip--deletable | Optional. Indicates that the chip should be removable by the delete or backspace key.

Sass Mixins

MixinDescription
mdc-chip-set-spacing($gap-size)Customizes the amount of space between each chip in the set
mdc-chip-shape-radius($radius, $rtl-reflexive)Sets the rounded shape to chip with given radius size. Set $rtl-reflexive to true to flip radius values in RTL context, defaults to false.
mdc-chip-fill-color-accessible($color)Customizes the background fill color for a chip, and updates the chip's ink, icon and ripple colors to meet accessibility standards
mdc-chip-fill-color($color)Customizes the background fill color for a chip
mdc-chip-ink-color($color)Customizes the text ink color for a chip, and updates the chip's ripple color to match
mdc-chip-selected-ink-color($color)Customizes text ink and ripple color of a chip in the selected state
mdc-chip-outline($width, $style, $color)Customizes the outline properties for a chip
mdc-chip-outline-width($width, $horizontal-padding)Customizes the outline width for a chip. $horizontal-padding is only required in cases where mdc-chip-horizontal-padding is also included with a custom value
mdc-chip-outline-style($style)Customizes the outline style for a chip
mdc-chip-outline-color($color)Customizes the outline color for a chip
mdc-chip-height($height)Customizes the height for a chip
mdc-chip-horizontal-padding($padding)Customizes the horizontal padding for a chip
mdc-chip-leading-icon-color($color, $opacity)Customizes the color of a leading icon in a chip, optionally customizes opacity
mdc-chip-trailing-icon-color($color, $opacity, $hover-opacity, $focus-opacity)Customizes the color of a trailing icon in a chip, optionally customizes regular/hover/focus opacities
mdc-chip-leading-icon-size($size)Customizes the size of a leading icon in a chip
mdc-chip-trailing-icon-size($size)Customizes the size of a trailing icon in a chip
mdc-chip-leading-icon-margin($left-margin, $right-margin)Customizes the margin of a leading icon in a chip
mdc-chip-trailing-icon-margin($left-margin, $right-margin)Customizes the margin of a trailing icon in a chip
mdc-chip-elevation-transition()Adds a MDC elevation transition to the chip. This should be used instead of setting transition with mdc-elevation-transition-value() directly when a box shadow transition is desired for a chip
mdc-chip-density($density-scale)Sets density scale for chip. Supported density scales are -2, -1 and 0 (default).

NOTE: mdc-chip-set-spacing also sets the amount of space between a chip and the edge of the set it's contained in.

MDCChip and MDCChipSet Properties and Methods

The MDC Chips package is composed of two JavaScript classes:

  • MDCChip defines the behavior of a single chip.
  • MDCChipSet defines the behavior of chips within a specific set. For example, chips in an input chip set behave differently from those in a filter chip set.

To use the MDCChip and MDCChipSet classes, import both classes from @limetech/mdc-chips.

MDCChip

Method SignatureDescription
beginExit() => voidProxies to the foundation's beginExit method
focusPrimaryAction() => voidProxies to the foundation's focusPrimaryAction method
focusTrailingAction() => voidProxies to the foundation's focusTrailingAction method
removeFocus() => voidProxies to the foundation's removeFocus method
setSelectedFromChipSet(selected: boolean) => voidProxies to the foundation's setSelectedFromChipset method (only called from the chip set)
PropertyValue TypeDescription
idstring (read-only)Unique identifier on the chip*
selectedbooleanProxies to the foundation's isSelected/setSelected methods
shouldRemoveOnTrailingIconClickbooleanProxies to the foundation's getShouldRemoveOnTrailingIconClick/setShouldRemoveOnTrailingIconClick methods**
rippleMDCRipple (read-only)The MDCRipple instance for the root element that MDCChip initializes

*NOTE: This will be the same as the id attribute on the root element. If an id is not provided, a unique one will be generated by MDCChipSet.addChip().

**NOTE: If shouldRemoveOnTrailingIconClick is set to false, you must manually call beginExit() on the chip to remove it.

Events
Event Nameevent.detailDescription
MDCChip:interaction{chipId: string}Indicates the chip was interacted with (via click/tap or Enter key)
MDCChip:selection{chipId: string, selected: boolean}Indicates the chip's selection state has changed (for choice/filter chips)
MDCChip:removal{chipId: string, root: Element}Indicates the chip is ready to be removed from the DOM
MDCChip:trailingIconInteraction{chipId: string}Indicates the chip's trailing icon was interacted with (via click/tap or Enter key)
MDCChip:navigation{chipId: string, key: string, source: FocusSource}Indicates a navigation event has occurred on a chip

NOTE: All of MDCChip's emitted events bubble up through the DOM.

MDCChipSet

Method SignatureDescription
addChip(chipEl: Element) => voidAdds a new MDCChip instance to the chip set based on the given mdc-chip element
PropertyValue TypeDescription
chipsReadonlyArray<MDCChip>An array of the MDCChip objects that represent chips in the set
selectedChipIdsReadonlyArray<string>An array of the IDs of all selected chips

Usage within Web Frameworks

If you are using a JavaScript framework, such as React or Angular, you can create Chips for your framework. Depending on your needs, you can use the Simple Approach: Wrapping MDC Web Vanilla Components, or the Advanced Approach: Using Foundations and Adapters. Please follow the instructions here.

Adapters: MDCChipAdapter and MDCChipSetAdapter

See chip/component.ts and chip-set/component.ts for vanilla DOM implementations of these adapter APIs for reference.

MDCChipAdapter

Method SignatureDescription
addClass(className: string) => voidAdds a class to the root element
removeClass(className: string) => voidRemoves a class from the root element
hasClass(className: string) => booleanReturns true if the root element contains the given class
addClassToLeadingIcon(className: string) => voidAdds a class to the leading icon element
removeClassFromLeadingIcon(className: string) => voidRemoves a class from the leading icon element
eventTargetHasClass(target: EventTarget, className: string) => booleanReturns true if target has className, false otherwise
notifyInteraction() => voidNotifies the Chip Set that the chip has been interacted with*
notifySelection(selected: boolean, chipSetShouldIgnore: boolean) => voidNotifies the Chip Set that the chip has been selected or deselected**. When chipSetShouldIgnore is true, the chip set does not process the event.
notifyTrailingIconInteraction() => voidNotifies the Chip Set that the chip's trailing icon has been interacted with*
notifyRemoval() => voidNotifies the Chip Set that the chip will be removed***
getComputedStyleValue(propertyName: string) => stringReturns the computed property value of the given style property on the root element
setStyleProperty(propertyName: string, value: string) => voidSets the property value of the given style property on the root element
hasLeadingIcon() => booleanReturns whether the chip has a leading icon
getRootBoundingClientRect() => ClientRectReturns the bounding client rect of the root element
getCheckmarkBoundingClientRect() => ClientRect \| nullReturns the bounding client rect of the checkmark element or null if it doesn't exist
notifyNavigation(key: string, source: EventSource) => voidNotifies the Chip Set that a navigation event has occurred
setPrimaryActionAttr(attr: string, value: string) => voidSets an attribute on the primary action element to the given value
focusPrimaryAction() => voidGives focus to the primary action element
hasTrailingAction() => booleanReturns true if the chip has a trailing action element
setTrailingActionAttr(attr: string, value: string) => voidSets an attribute on the trailing action element to the given value, if the element exists
focusTrailingAction() => voidGives focus to the trailing action element if present

*NOTE: notifyInteraction and notifyTrailingIconInteraction must pass along the target chip's ID, and must be observable by the parent mdc-chip-set element (e.g. via DOM event bubbling).

**NOTE: notifySelection must pass along the target chip's ID and selected state, and must be observable by the parent mdc-chip-set element (e.g. via DOM event bubbling).

***NOTE: notifyRemoval must pass along the target chip's ID and its root element, and must be observable by the parent mdc-chip-set element (e.g. via DOM event bubbling).

MDCChipSetAdapter

Method SignatureDescription
hasClass(className: string) => booleanReturns whether the chip set element has the given class
removeChipAtIndex(index: number) => voidRemoves the chip with the given index from the chip set
selectChipAtIndex(index: string, selected: boolean, shouldNotifyClients: boolean) => voidCalls MDCChip#setSelectedFromChipSet(selected) on the chip at the given index. Will emit a selection event if called with shouldNotifyClients set to true. The emitted selection event will be ignored by the MDCChipSetFoundation.
getIndexOfChipById(id: string) => numberReturns the index of the chip with the matching id or -1
focusChipPrimaryActionAtIndex(index: number) => voidCalls MDCChip#focusPrimaryAction() on the chip at the given index
focusChipTrailingActionAtIndex(index: number) => voidCalls MDCChip#focusTrailingAction() on the chip at the given index
isRTL() => booleanReturns true if the text direction is RTL
getChipListCount() => numberReturns the number of chips inside the chip set
removeFocusFromChipAtIndex(index: number) => voidCalls MDCChip#removeFocus() on the chip at the given index

Foundations: MDCChipFoundation and MDCChipSetFoundation

MDCChipFoundation

Method SignatureDescription
isSelected() => booleanReturns true if the chip is selected
setSelected(selected: boolean) => voidSets the chip's selected state
setSelectedFromChipSet(selected: boolean, shouldNotifyClients: boolean) => voidSets the chip's selected state (called from the chip set) to the selected param. Will emit a selection event if called with shouldNotifyClients set to true. The emitted selection event will be ignored by the MDCChipSetFoundation.
getShouldRemoveOnTrailingIconClick() => booleanReturns whether a trailing icon click should trigger exit/removal of the chip
setShouldRemoveOnTrailingIconClick(shouldRemove: boolean) => voidSets whether a trailing icon click should trigger exit/removal of the chip
getDimensions() => ClientRectReturns the dimensions of the chip. This is used for applying ripple to the chip.
beginExit() => voidBegins the exit animation which leads to removal of the chip
handleInteraction(evt: Event) => voidHandles an interaction event on the root element
handleTransitionEnd(evt: Event) => voidHandles a transition end event on the root element
handleTrailingIconInteraction(evt: Event) => voidHandles an interaction event on the trailing icon element
handleKeydown(evt: Event) => voidHandles a keydown event on the root element
removeFocus() => voidRemoves focusability from the chip

MDCChipFoundation Event Handlers

When wrapping the Chip foundation, the following events must be bound to the indicated foundation methods:

EventsElement SelectorFoundation Handler
click, keydown.mdc-chip (root)handleInteraction()
click, keydown.mdc-chip__icon--trailing (if present)handleTrailingIconInteraction()
transitionend.mdc-chip (root)handleTransitionEnd()
keydown.mdc-chip (root)handleKeydown()

MDCChipSetFoundation

Method SignatureDescription
getSelectedChipIds() => ReadonlyArray<string>Returns an array of the IDs of all selected chips
select(chipId: string) => voidSelects the chip with the given id
handleChipInteraction(chipId: string) => voidHandles a custom MDCChip:interaction event on the root element
handleChipSelection(chipId: string, selected: boolean, chipSetShouldIgnore: boolean) => voidHandles a custom MDCChip:selection event on the root element. When chipSetShouldIgnore is true, the chip set does not process the event.
handleChipRemoval(chipId: string) => voidHandles a custom MDCChip:removal event on the root element
handleChipNavigation(chipId: string, key: string) => voidHandles a custom MDCChip:navigation event on the root element

MDCChipSetFoundation Event Handlers

When wrapping the Chip Set foundation, the following events must be bound to the indicated foundation methods:

EventsElement SelectorFoundation Handler
MDCChip:interaction.mdc-chip-set (root)handleChipInteraction
MDCChip:selection.mdc-chip-set (root)handleChipSelection
MDCChip:removal.mdc-chip-set (root)handleChipRemoval
MDCChip:navigation.mdc-chip-set (root)handleChipNavigation