javaquery/api/src/main/java/org/apidesign/bck2brwsr/htmlpage/Knockout.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Sun, 20 Jan 2013 21:01:46 +0100
branchmodel
changeset 496 a06c98795b01
parent 493 df3513758d20
child 499 af027874f93e
permissions -rw-r--r--
Refresh the knockout model when a setter is called
     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 final class Knockout {
    29     private Knockout() {
    30     }
    31     
    32     public static <M> Knockout applyBindings(
    33         Class<M> modelClass, M model, String[] propsGettersAndSetters
    34     ) {
    35         Knockout bindings = new Knockout();
    36         for (int i = 0; i < propsGettersAndSetters.length; i += 3) {
    37             bind(bindings, model, propsGettersAndSetters[i],
    38                 propsGettersAndSetters[i + 1],
    39                 propsGettersAndSetters[i + 2]
    40             );
    41         }
    42         applyBindings(bindings);
    43         return bindings;
    44     }
    45 
    46     @JavaScriptBody(args = { "prop" }, body =
    47         "this[prop].valueHasMutated();"
    48     )
    49     public void valueHasMutated(String prop) {
    50     }
    51     
    52     @JavaScriptBody(args = { "bindings", "model", "prop", "getter", "setter" }, body =
    53           "var bnd = {\n"
    54         + "  read: function() {\n"
    55         + "    var v = model[getter]();\n"
    56         + "    return v;\n"
    57         + "  },\n"
    58         + "  owner: bindings\n"
    59         + "};\n"
    60         + "if (setter != null) {\n"
    61         + "  bnd.write = function(val) {\n"
    62         + "    model[setter](new Number(val));\n"
    63         + "  };\n"
    64         + "}\n"
    65         + "bindings[prop] = ko.computed(bnd);"
    66     )
    67     private static void bind(
    68         Object bindings, Object model, String prop, String getter, String setter
    69     ) {
    70     }
    71     
    72     @JavaScriptBody(args = { "bindings" }, body = "ko.applyBindings(bindings);")
    73     private static void applyBindings(Object bindings) {}
    74 }