Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Aurelia versus KendoUI Template Processing #3

Open
adriatic opened this issue Aug 6, 2017 · 0 comments
Open

Aurelia versus KendoUI Template Processing #3

adriatic opened this issue Aug 6, 2017 · 0 comments

Comments

@adriatic
Copy link
Member

adriatic commented Aug 6, 2017

Template compilation

Introduction

Many Kendo controls allow developers to use templates. Take the Autocomplete control as an example:



Image 1


The list items of this autocomplete control are customized via the template property of the control.

   $("#customers").kendoAutoComplete({
        template: '<span class="k-state-default" style="background-image: url(\'../content/web/Customers/#:data.CustomerID#.jpg\')"></span>' +
                 '<span class="k-state-default"><h3>#: data.ContactName #</h3><p>#: data.CompanyName #</p></span>'
});

More about Kendo's templating system can be found here.


Aurelia's templating system

Aurelia also has a templating system, with a different syntax than Kendo's. We wanted to allow developers to be able to use Aurelia's templating syntax and all the features that come with Aurelia's system. This integration between Kendo controls and the Aurelia framework has become one of the nicest features of this Aurelia KendoUI bridge.

So we wanted to be able to do something like this:

    $("#customers").kendoAutoComplete({
        template: '${data.ContactName} <button k-button>Call</button>'
    });

Note that we used the ${data.ContactName} interpolation expression and the k-button custom attribute.


The hook

As an example of a good design (and existing AngularJS interface) KendoUI implements a hook for Angular to compile views. Once we contacted Telerik they graciously provided more information about this hook.

Kendo controls which support template customization invoke "Angular interface" to compile and cleanup views. The function responsible for invoking this interface looks like this:

 _angularItems: function(cmd) {
    var that = this;
    that.angular(cmd, function(){
        return {
            elements: that.items(),
            data: $.map(that.dataItems(), function(dataItem){
                return { dataItem: dataItem };
            })
        };
    });
}

The Angular function is called with two parameters: the command and an object with additional data such as a collection of HTML elements and a collection of dataItems. We'll explain more about how it is called in the next chapter.

We made a class that is responsible for patching this Angular function, and handle any function call made by a Kendo control. This is our Template Compiler being discussed in this note.

This code section, replicated below for reader's convenience, shows how the Angular function is patched.

...
kendo.ui.Widget.prototype.angular = function(_event, _args) {
    _this.handleTemplateEvents(this, _event, _args);
};
kendo.mobile.ui.Widget.prototype.angular = function(_event, _args) {
    _this.handleTemplateEvents(this, _event, _args);
};
...

Note that we are not using a fat arrow because the caller is the Kendo control, and we want to keep that "context", as we need pull data of of it, in a different part of the TemplateCompiler.


How is the Angular hook called?

As we have shown before, the code calling the Angular hook looks like this:

_angularItems: function(cmd) {
    var that = this;
    that.angular(cmd, function(){
        return {
            elements: that.items(),
            data: $.map(that.dataItems(), function(dataItem){
                return { dataItem: dataItem };
            })
        };
    });
}

This means that our TemplateCompiler (which patched the angular function) is called with 2 parameters: the command (cmd) and an object (we'll call this the arguments). The command is a string such "init", "compile" or "cleanup".

Imgur

Our TemplateCompiler only cares about the "compile" and "cleanup" calls. As you can see in the image above, the compile and cleanup functions are called with arguments containing elements and data.

For example, when Kendo wants to have the <th> elements compiled of a Kendo Grid, the angular function is called with these arguments:

Imgur


As you can see, the elements is an array of HTML elements Kendo wants to have compiled. The data are the dataItems that should be used when compiling. For example, the first item of the data array belongs to the first item of the elements array.

As another sign of a good design, this is all that Aurelia needs to compile a view.


Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant