can.Component
2.0Create widgets that use a template, a view-model and custom tags.
< TAG BINDINGS... > 2.3
Create an instance of a component on a particular tag in a can.stache template. In 2.3, use the bindings syntaxes to setup bindings.
Parameters
-
TAG
{String}
An HTML tag name that matches the tag property of the component.
-
BINDINGS
{can.view.bindings}
Use the following binding syntaxes to connect the component's can.Component.prototype.viewModel to the template's scope:
- {to-child}=key - one way binding to child
- {^to-parent}=key - one way binding to parent
- {(two-way)}=key - two way binding child to parent
Example:
<my-tag {to-child}="key" {^to-parent}="key" {(two-way)}="key"></my-tag>
< TAG [ATTR-NAME="{KEY}|ATTR-VALUE"] > 2.1
Create an instance of a component on a particular tag in a can.stache template. This form of two way bindings is deprecated as of 2.3. It looked like:
<my-tag attr-name="{key}"></my-tag>
Please check earlier versions of the documentation for more information.
< TAG [ATTR-NAME=KEY|ATTR-VALUE] >
Create an instance of a component on a particular tag in a can.mustache template. Use of can.mustache is deprecated as of 2.3. Please check earlier versions of the documentation for more information.
Use
To create a
can.Component
, you must first extendcan.Component
with the methods and properties of how your component behaves:This element says "Click me" until a user clicks it and then says "Hello There!". To create a a instance of this component on the page, add
<hello-world></hello-world>
to a mustache template, render the template and insert the result in the page like:Check this out here:
Typically, you do not append a single component at a time. Instead, you'll render a template with many custom tags like:
Creating a can.Component
Use can.Component.extend to create a
can.Component
constructor function that will automatically get initialized whenever the component's tag is found.Note that inheriting from components works differently than other CanJS APIs. You can't call
.extend
on a particular component to create a "subclass" of that component.Instead, components work more like HTML elements. To reuse functionality from a base component, build on top of it with parent components that wrap other components in their template and pass any needed viewModel properties via attributes.
Tag
A component's tag is the element node name that the component will be created on.
The following matches
<hello-world>
elements.Template
A component's template is rendered as the element's innerHTML.
The following component:
Changes
<hello-world></hello-world>
elements into:Use the
<content/>
tag to position the custom element's source HTML.The following component:
Changes
<hello-world>Hi There</hello-world>
into:viewModel
A component's viewModel defines a can.Map that is used to render the component's template. The maps properties are typically set by attribute bindings on the custom element. By default, every attribute's value is looked up in the parent viewModel of the custom element and added to the viewModel object.
The following component:
Changes the following rendered template:
Into:
Default values can be provided. The following component:
Changes the following rendered template:
Into:
If you want to set the string value of the attribute on viewModel, set an attribute without any binding syntax.
The following template, with the previous
"hello-world"
component:Renders to:
Events
A component's events object is used to listen to events (that are not listened to with view bindings). The following component adds "!" to the message every time
<hello-world>
is clicked:Components have the ability to bind to special inserted and removed events that are called when a component's tag has been inserted into or removed from the page.
Helpers
A component's helpers object provides mustache helper functions that are available within the component's template. The following component only renders friendly messages:
Differences between components in can.mustache and can.stache
A can.mustache template passes values from the viewModel to a
can.Component
by specifying the key of the value in the attribute directly. For example:With can.stache, you wrap the attribute name with
{}
for parent to child binding. For example:If the key was not wrapped, the template would render:
Because the attribute value would be passed as the value of
greeting
.Examples
Check out the following examples built with
can.Component
.Tabs
The following demos a tabs widget. Click "Add Vegetables" to add a new tab.
An instance of the tabs widget is created by creating
<tabs>
and<panel>
elements like:To add another panel, all we have to do is add data to
foodTypes
like:The secret is that the
<panel>
element listens to when it is inserted and adds its data to the tabs' list of panels with:TreeCombo
The following tree combo lets people walk through a hierarchy and select locations.
The secret to this widget is the viewModel's
breadcrumb
property, which is an array of items the user has navigated through, andselectableItems
, which represents the children of the last item in the breadcrub. These are defined on the viewModel like:When the "+" icon is clicked next to each item, the viewModel's
showChildren
method is called, which adds that item to the breadcrumb like:Paginate
The following example shows 3 widget-like components: a grid, next / prev buttons, and a page count indicator. And, it shows an application component that puts them all together.
This demo uses a
Paginate
can.Map to assist with maintaining a paginated state:The
app
component, using the [can.Map.define define plugin], creates an instance of thePaginate
model and awebsitesPromise
that represents a request for the Websites that should be displayed.The
app
control passes paginate, paginate's values, and websitesPromise to its sub-components:IE 8 Support
While CanJS does support Internet Explorer 8 out of the box, if you decide to use
can.Component
then you will need to include HTML5 Shiv in order for your custom tags to work properly.For namespaced tag names (e.g.
<can:example>
) and hyphenated tag names (e.g.<can-example>
) to work properly, you will need to use version 3.7.2 or later.Videos
Watch this video for an overview of can.Component, why you should use it, and a hello world example:
This video provides a more in depth overview of the API and goes over several examples of can.Components:
Note: the videos above reference the
scope
property, which was replaced by the viewModel property in 2.2.