javaquery/api/src/main/java/org/apidesign/bck2brwsr/htmlpage/Knockout.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Wed, 24 Apr 2013 20:22:19 +0200
branchmodel
changeset 1018 49eb825c87b7
parent 909 e51a474fcf79
child 1055 0d7b63408a1e
permissions -rw-r--r--
javaquery.api is now implementation of net.java.html.json API
     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 java.lang.reflect.Method;
    21 import java.util.List;
    22 import org.apidesign.bck2brwsr.core.ExtraJavaScript;
    23 import org.apidesign.bck2brwsr.core.JavaScriptBody;
    24 
    25 /** Provides binding between models and 
    26  *
    27  * @author Jaroslav Tulach <jtulach@netbeans.org>
    28  */
    29 @ExtraJavaScript(resource = "/org/apidesign/bck2brwsr/htmlpage/knockout-2.2.1.js")
    30 public class Knockout {
    31     /** used by tests */
    32     static Knockout next;
    33     private final Object model;
    34 
    35     Knockout(Object model) {
    36         this.model = model == null ? this : model;
    37     }
    38     
    39     public static <M> Knockout applyBindings(
    40         Object model, String[] propsGettersAndSetters,
    41         String[] methodsAndSignatures
    42     ) {
    43         applyImpl(propsGettersAndSetters, model.getClass(), model, model, methodsAndSignatures);
    44         return new Knockout(model);
    45     }
    46     public static <M> Knockout applyBindings(
    47         Class<M> modelClass, M model, String[] propsGettersAndSetters,
    48         String[] methodsAndSignatures
    49     ) {
    50         Knockout bindings = next;
    51         next = null;
    52         if (bindings == null) {
    53             bindings = new Knockout(null);
    54         }
    55         applyImpl(propsGettersAndSetters, modelClass, bindings, model, methodsAndSignatures);
    56         applyBindings(bindings);
    57         return bindings;
    58     }
    59 
    60     public void valueHasMutated(String prop) {
    61         valueHasMutated(model, prop);
    62     }
    63     @JavaScriptBody(args = { "self", "prop" }, body =
    64         "var p = self[prop]; if (p) p.valueHasMutated();"
    65     )
    66     public static void valueHasMutated(Object self, String prop) {
    67     }
    68     
    69 
    70     @JavaScriptBody(args = { "id", "ev" }, body = "ko.utils.triggerEvent(window.document.getElementById(id), ev.substring(2));")
    71     public static void triggerEvent(String id, String ev) {
    72     }
    73     
    74     @JavaScriptBody(args = { "bindings", "model", "prop", "getter", "setter", "primitive", "array" }, body =
    75           "var bnd = {\n"
    76         + "  'read': function() {\n"
    77         + "    var v = model[getter]();\n"
    78         + "    if (array) v = v.koArray();\n"
    79         + "    return v;\n"
    80         + "  },\n"
    81         + "  'owner': bindings\n"
    82         + "};\n"
    83         + "if (setter != null) {\n"
    84         + "  bnd['write'] = function(val) {\n"
    85         + "    model[setter](primitive ? new Number(val) : val);\n"
    86         + "  };\n"
    87         + "}\n"
    88         + "bindings[prop] = ko['computed'](bnd);"
    89     )
    90     static void bind(
    91         Object bindings, Object model, String prop, String getter, String setter, boolean primitive, boolean array
    92     ) {
    93     }
    94 
    95     @JavaScriptBody(args = { "bindings", "model", "prop", "sig" }, body = 
    96         "bindings[prop] = function(data, ev) { model[sig](data, ev); };"
    97     )
    98     static void expose(
    99         Object bindings, Object model, String prop, String sig
   100     ) {
   101     }
   102     
   103     @JavaScriptBody(args = { "bindings" }, body = "ko.applyBindings(bindings);")
   104     static void applyBindings(Object bindings) {}
   105     
   106     private static void applyImpl(
   107         String[] propsGettersAndSetters,
   108         Class<?> modelClass,
   109         Object bindings,
   110         Object model,
   111         String[] methodsAndSignatures
   112     ) throws IllegalStateException, SecurityException {
   113         for (int i = 0; i < propsGettersAndSetters.length; i += 4) {
   114             try {
   115                 Method getter = modelClass.getMethod(propsGettersAndSetters[i + 3]);
   116                 bind(bindings, model, propsGettersAndSetters[i],
   117                     propsGettersAndSetters[i + 1],
   118                     propsGettersAndSetters[i + 2],
   119                     getter.getReturnType().isPrimitive(),
   120                     List.class.isAssignableFrom(getter.getReturnType()));
   121             } catch (NoSuchMethodException ex) {
   122                 throw new IllegalStateException(ex.getMessage());
   123             }
   124         }
   125         for (int i = 0; i < methodsAndSignatures.length; i += 2) {
   126             expose(
   127                 bindings, model, methodsAndSignatures[i], methodsAndSignatures[i + 1]);
   128         }
   129     }
   130 }