ZK8 Series: UI Template Injection

From Documentation
Revision as of 10:33, 3 February 2015 by Jumperchen (talk | contribs)
DocumentationSmall Talks2015FebruaryZK8 Series: UI Template Injection
ZK8 Series: UI Template Injection

Author
Jumper Chen, Senior Engineer, Potix Corporation
Date
February 3, 2015
Version
ZK 8.0.0-FL, ZUTI 1.0.0-FL

WarningTriangle-32x32.png This page is under construction, so we cannot guarantee the accuracy of the content!

Introduction

ZK 8 is moving to a next generation framework for application developer and web designer to cooperate with each other on a different aspect of the view while develop a webapp or website. The main feature of ZK 8 is to introduce a new Shadow Element concept, which is inspired from Shadow DOM to enable better composition of the ZK components and support with ZK DataBinding (MVVM) mechanism.

The built-in shadow elements are:

  • Apply: an executable tags to allows you to choose which template to be applied, it will lookup the template inside-out recursively.
  • ForEach: allows you to iterate over a collection of objects. You specify the collection using the items attribute, and the current item is available through a variable named by the var attribute.
  • Choose/When/Otherwise: performs conditional block execution by the embedded <when> subtags. It renders the body of the first <when> tag whose test condition evaluates to true. If none of the test conditions of nested <when> tags evaluates to true, then the body of an <otherwise> tag is evaluated, if present.
  • If: allows the conditional execution of ites body according to the value of the test attribute.

Note: you can customize yourown shadow element if needed.

Shadow Element Concept

A shadow element is like a boilerplate template to help application developer to compose the html layout with some dynamic data, and the other hand the web designer can predefine the template or HTML page for application developer to use. In fact, the shadow elements are not visible while application developer to manipulate ZK components tree as explaining below.

For example,

<div>
    <if test="${user.editable}">
        User Name: <textbox value="${user.name}"/>
        <forEach items="${user.phones}" var="phone">
            <label value="${phone.name}"/>
        </forEach>
    </if>
</div>

Shadow Diagram.PNG

As the diagram shown above, there are separated into "Logical Tree" and "Composed Tree". "Logical Tree" is created by ZK page parser to construct a page definition tree and then instantiate it into a "Composed Tree", which is also separated into two parts, one is component tree (green area) same as usual before, and the other is the new concept (red area) shadow tree, which is not visible for application developer but component developer. The shadow tree in this example with EL expression won't be alive once the ouput is rendered to the client, that is because the shadow elements are not applied with dynamic data (like @load expression), so there is not a reaean to store them in the server side.


Comments



Copyright © Potix Corporation. This article is licensed under GNU Free Documentation License.