Most components ship with Component / Foundation classes which are used to provide a full-fidelity Material Design component. Depending on what technology you use in your stack, there are several ways to import the JavaScript.
import {MDCFoo, MDCFooFoundation} from '@material/foo';
Note that MDC Web's packages point main
to pre-compiled UMD modules under dist
to maximize compatibility.
Build toolchains often assume that dependencies under node_modules
are already ES5, and thus skip transpiling them.
However, if you want to take advantage of tree-shaking and dependency sharing within MDC Web's code to reduce the size
of your built assets, you will want to explicitly reference the package's index.js
, which contains the ES2015+ source:
import {MDCFoo, MDCFooFoundation} from '@material/foo/index';
Note that in this case, you must ensure your build toolchain is configured to process and transpile MDC Web's modules
as well as your own. You will also need to include babel's
transform-object-assign
plugin for IE 11 support.
See the Getting Started guide for more details on setting up an environment.
const mdcFoo = require('mdc-foo');
const MDCFoo = mdcFoo.MDCFoo;
const MDCFooFoundation = mdcFoo.MDCFooFoundation;
require(['path/to/mdc-foo'], mdcFoo => {
const MDCFoo = mdcFoo.MDCFoo;
const MDCFooFoundation = mdcFoo.MDCFooFoundation;
});
const MDCFoo = mdc.foo.MDCFoo;
const MDCFooFoundation = mdc.foo.MDCFooFoundation;
Many of the examples across the MDC Web documentation demonstrate how to create a component instance for a single element in a page:
const foo = new MDCFoo(document.querySelector('.mdc-foo'));
This assumes there is one element of interest on the entire page, because document.querySelector
always returns at most one element (the first match it finds).
To instantiate components for multiple elements at once, use querySelectorAll
:
const foos = [].map.call(document.querySelectorAll('.mdc-foo'), function(el) {
return new MDCFoo(el);
});