DoneJS StealJS jQuery++ FuncUnit DocumentJS
4.3.0
5.0.0 3.13.1 2.3.35
  • About
  • Guides
  • API Docs
  • Community
  • Contributing
  • Bitovi
    • Bitovi.com
    • Blog
    • Design
    • Development
    • Training
    • Open Source
    • About
    • Contact Us
  • About
  • Guides
  • API Docs
    • Observables
      • can-bind
      • can-compute
      • can-debug
      • can-define
      • can-define/list/list
      • can-define/map/map
      • can-define-backup
      • can-define-stream
      • can-define-stream-kefir
      • can-event-queue
      • can-kefir
      • can-list
      • can-map
      • can-map-define
      • can-observation
      • can-observation-recorder
      • can-observe
      • can-simple-map
      • can-simple-observable
      • can-stream
      • can-stream-kefir
      • can-value
    • Data Modeling
      • can-connect
      • can-connect-feathers
      • can-fixture
      • can-fixture-socket
      • can-ndjson-stream
      • can-set
    • Views
      • can-component
      • can-stache
      • can-stache-bindings
      • can-stache-converters
      • can-stache-route-helpers
      • can-view-autorender
      • can-view-callbacks
        • types
          • attrData
          • tagData
        • methods
          • attr
          • attrs
          • tag
      • can-view-import
      • can-view-live
      • can-view-model
      • can-view-nodelist
      • can-view-parser
      • can-view-scope
      • can-view-target
      • react-view-model
      • react-view-model/component
      • steal-stache
    • Routing
      • can-deparam
      • can-param
      • can-route
      • can-route-hash
      • can-route-mock
      • can-route-pushstate
    • JS Utilities
      • can-assign
      • can-define-lazy-value
      • can-diff
      • can-globals
      • can-join-uris
      • can-key
      • can-key-tree
      • can-make-map
      • can-parse-uri
      • can-queues
      • can-string
      • can-string-to-any
      • can-util
      • can-zone
      • can-zone-storage
    • DOM Utilities
      • can-ajax
      • can-attribute-encoder
      • can-child-nodes
      • can-control
      • can-dom-data
      • can-dom-events
      • can-dom-mutate
      • can-event-dom-enter
      • can-event-dom-radiochange
      • can-fragment
    • Data Validation
      • can-define-validate-validatejs
      • can-validate
      • can-validate-interface
      • can-validate-legacy
      • can-validate-validatejs
    • Typed Data
      • can-cid
      • can-construct
      • can-construct-super
      • can-data-types
      • can-namespace
      • can-reflect
      • can-reflect-dependencies
      • can-reflect-promise
      • can-types
    • Polyfills
      • can-symbol
      • can-vdom
    • Core
    • Infrastructure
      • can-global
      • can-test-helpers
    • Ecosystem
    • Legacy
  • Community
  • Contributing
  • GitHub
  • Twitter
  • Chat
  • Forum
  • News
Bitovi

tag

  • Edit on GitHub

callbacks.tag(tagName, tagHandler(el, tagData))

Registers the tagHandler callback when tagName is found in a template.

import $ from "jquery";
require( "jquery-datepicker" );
import canViewCallbacks from "can-view-callbacks";

canViewCallbacks.tag( "date-picker", function( el, tagData ) {
    $( el ).datePicker();
} );

Parameters

  1. tagName {String}:

    A lower-case, hyphenated or colon-separated html tag. Example: "my-widget" or "my:widget". It is considered a best-practice to have a hyphen or colon in all custom-tag names.

  2. tagHandler {function(el, tagData)}:

    Adds custom behavior to el. If tagHandler returns data, it is used to render tagData.subtemplate and the result is inserted as the childNodes of el.

Use

canViewCallbacks.tag is a low-level way to add custom behavior to custom elements. Often, you want to do this with can-component. However, callbacks.tag is useful for when can-component might be considered overkill. For example, the following creates a jQueryUI DatePicker every time a <jqui-datepicker> element is found:

callbacks.tag( "jqui-datepicker", function( el, tagData ) {
    $( el ).datepicker();
} );

The tagHandler’s tagData argument is an object that contains the stache Scope and helper [can-view-scope.Options] where el is found and a sub-template that renders the contents of the template within the custom tag.

Getting values from the template

tagData.scope can be used to read data from the template. For example, if I wanted the value of "format" within the current template, it could be read like:

callbacks.tag( "jqui-datepicker", function( el, tagData ) {
    $( el ).datepicker( { format: tagData.scope.get( "format" ) } );
} );

const template = mustache( "<jqui-datepicker></jqui-datepicker>" );
template( { format: "mm/dd/yy" } );

tagData.options contains the helpers and partials provided to the template. A helper function might need to be called to get the current value of format like:

callbacks.tag( "jqui-datepicker", function( el, tagData ) {
    $( el ).datepicker( {
        format: tagData.options.get( "helpers.format" )()
    } );
} );

const template = mustache( "<jqui-datepicker></jqui-datepicker>" );
template( {}, { format: function() {
    return "mm/dd/yy";
} } );

Responding to changing data

Often, data passed to a template is observable. If you use tag, you must listen and respond to changes yourself. Consider if format is property on a settings can-map like:

const settings = new Map( {
    format: "mm/dd/yy"
} );

You want to update the datepicker if format changes. The easiest way to do this is to use Scope’s compute method which returns a get-set compute that is tied to a key value:

callbacks.tag( "jqui-datepicker", function( el, tagData ) {

    const formatCompute = tagData.scope.compute( "format" );
    const changeHandler = function( ev, newVal ) {
        $( el ).datepicker( "option", "format", newVal );
    };

    formatCompute.bind( "change", changeHandler );

    changeHandler( {}, formatCompute() );

    // ...

} );

const template = mustache( "<jqui-datepicker/>" );
template( settings );

If you listen on something outside the tag, it’s a good practice to stop listening when the element is [can-dom-mutate/events/events removed] from the page:

domEvents.addEventListener.call( el, "removed", function onremove() {
    compute.off( "change", showOrHide );
    formatCompute.unbind( "change", changeHandler );
} );

Subtemplate

If content is found within a custom tag like:

const template = stache( `
  <my-form>
     <input value="{{first}}"/>
     <input value="{{last}}"/>
   </my-form>
` );

A separate template function is compiled and passed as tagData.subtemplate. That sub-template can be rendered with custom data and options. For example:

callbacks.tag( "my-form", function( el, tagData ) {
    const frag = tagData.subtemplate( {
        first: "Justin"
    }, tagData.options );

    $( el ).html( frag );
} );

template( {
    last: "Meyer"
} );

In this case, the sub-template will not get a value for last. To include the original data in the sub-template’s scope, add to the old scope like:

callbacks.tag( "my-form", function( el, tagData ) {
    const frag = tagData.subtemplate(
        tagData.scope.add( { first: "Justin" } ),
        tagData.options
    );

    $( el ).html( frag );
} );

template( {
    last: "Meyer"
} );

CanJS is part of DoneJS. Created and maintained by the core DoneJS team and Bitovi. Currently 4.3.0.

On this page

Get help

  • Chat with us
  • File an issue
  • Ask questions
  • Read latest news