javaquery/api/src/main/java/org/apidesign/bck2brwsr/htmlpage/Knockout.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Sun, 20 Jan 2013 18:20:18 +0100
branchmodel
changeset 492 854286e49061
child 493 df3513758d20
permissions -rw-r--r--
Basic support for knockout.js. It can read and write model properties.
     1 /**
     2  * Back 2 Browser Bytecode Translator
     3  * Copyright (C) 2012 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
     4  *
     5  * This program is free software: you can redistribute it and/or modify
     6  * it under the terms of the GNU General Public License as published by
     7  * the Free Software Foundation, version 2 of the License.
     8  *
     9  * This program is distributed in the hope that it will be useful,
    10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
    11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    12  * GNU General Public License for more details.
    13  *
    14  * You should have received a copy of the GNU General Public License
    15  * along with this program. Look for COPYING file in the top folder.
    16  * If not, see http://opensource.org/licenses/GPL-2.0.
    17  */
    18 package org.apidesign.bck2brwsr.htmlpage;
    19 
    20 import org.apidesign.bck2brwsr.core.ExtraJavaScript;
    21 import org.apidesign.bck2brwsr.core.JavaScriptBody;
    22 
    23 /** Provides binding between models and 
    24  *
    25  * @author Jaroslav Tulach <jtulach@netbeans.org>
    26  */
    27 @ExtraJavaScript(resource = "org/apidesign/bck2brwsr/htmlpage/knockout-min-2.2.0.js")
    28 public final class Knockout {
    29 
    30 
    31     private Knockout() {
    32     }
    33     
    34     public static <M> void applyBindings(
    35         Class<M> modelClass, M model, String[] propsGettersAndSetters
    36     ) {
    37         Object bindings = new Object();
    38         for (int i = 0; i < propsGettersAndSetters.length; i += 3) {
    39             bind(bindings, model, propsGettersAndSetters[i],
    40                 propsGettersAndSetters[i + 1],
    41                 propsGettersAndSetters[i + 2]
    42             );
    43         }
    44         applyBindings(bindings);
    45     }
    46     
    47     @JavaScriptBody(args = { "bindings", "model", "prop", "getter", "setter" }, body =
    48           "var bnd = {\n"
    49         + "  read: function() {\n"
    50         + "    var v = model[getter]();\n"
    51         + "    return v;\n"
    52         + "  },\n"
    53         + "  owner: bindings\n"
    54         + "};\n"
    55         + "if (setter != null) {\n"
    56         + "  bnd.write = function(val) {\n"
    57         + "    model[setter](new Number(val));\n"
    58         + "  };\n"
    59         + "}\n"
    60         + "bindings[prop] = ko.computed(bnd);"
    61     )
    62     private static void bind(
    63         Object bindings, Object model, String prop, String getter, String setter
    64     ) {
    65     }
    66     
    67     @JavaScriptBody(args = { "bindings" }, body = "ko.applyBindings(bindings);")
    68     private static void applyBindings(Object bindings) {}
    69 }