javaquery/api/src/main/java/org/apidesign/bck2brwsr/htmlpage/Knockout.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Mon, 21 Jan 2013 13:43:40 +0100
branchmodel
changeset 505 4198be34b516
parent 499 af027874f93e
child 530 3ce069ec3312
permissions -rw-r--r--
Moving towards testability: Model class does not have any public fields, rather instance onces
     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-2.2.1.js")
    28 public class Knockout {
    29     /** used by tests */
    30     static Knockout next;
    31     
    32     Knockout() {
    33     }
    34     
    35     public static <M> Knockout applyBindings(
    36         Class<M> modelClass, M model, String[] propsGettersAndSetters
    37     ) {
    38         Knockout bindings = next;
    39         next = null;
    40         if (bindings == null) {
    41             bindings = new Knockout();
    42         }
    43         for (int i = 0; i < propsGettersAndSetters.length; i += 3) {
    44             bind(bindings, model, propsGettersAndSetters[i],
    45                 propsGettersAndSetters[i + 1],
    46                 propsGettersAndSetters[i + 2]
    47             );
    48         }
    49         applyBindings(bindings);
    50         return bindings;
    51     }
    52 
    53     @JavaScriptBody(args = { "prop" }, body =
    54         "this[prop].valueHasMutated();"
    55     )
    56     public void valueHasMutated(String prop) {
    57     }
    58     
    59     @JavaScriptBody(args = { "bindings", "model", "prop", "getter", "setter" }, body =
    60           "var bnd = {\n"
    61         + "  read: function() {\n"
    62         + "    var v = model[getter]();\n"
    63         + "    return v;\n"
    64         + "  },\n"
    65         + "  owner: bindings\n"
    66         + "};\n"
    67         + "if (setter != null) {\n"
    68         + "  bnd.write = function(val) {\n"
    69         + "    model[setter](new Number(val));\n"
    70         + "  };\n"
    71         + "}\n"
    72         + "bindings[prop] = ko.computed(bnd);"
    73     )
    74     private static void bind(
    75         Object bindings, Object model, String prop, String getter, String setter
    76     ) {
    77     }
    78     
    79     @JavaScriptBody(args = { "bindings" }, body = "ko.applyBindings(bindings);")
    80     private static void applyBindings(Object bindings) {}
    81 }