can.Component
Create widgets that use a template, a view-model and custom tags.
< TAG [ATTR-NAME=ATTR-VALUE] >
Create an instance of a component on a particular tag. Currently, this only works within can.Mustache templates.
Parameters
-
TAG
{String}
An HTML tag name that matches the tag property of the component.
-
ATTR-NAME
{String}
An HTML attribute name. Any attribute name is valid. Any attributes added to the element are added as properties to the component's scope.
-
ATTR-VALUE
{String}
Specifies the value of a property passed to the component instance's scope. By default
ATTR-VALUE
values are looked up in the can.Mustache scope. If the string value of theATTR-NAME
is desired, this can be specified like:ATTR-NAME: "@"
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:
Extending 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.
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:Scope
A component's scope defines a can.Map that is used to render the component's template. The maps properties are typically set by attributes on the custom element's HTML. By default, every attribute's value is looked up in the parent scope of the custom element and added to the scope 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 scope, give scope a default value of "@". The following component:
Changes the following rendered template:
Into:
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: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:
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 scope'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 scope like:When the "+" icon is clicked next to each item, the scope'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 creates an instance of thePaginate
model and awebsitesDeferred
that represents a request for the Websites that should be displayed.The
app
control passes paginate, paginate's values, and websitesDeferreds to its sub-components: