javaquery/api/src/main/java/org/apidesign/bck2brwsr/htmlpage/Knockout.java
author Lubomir Nerad <lubomir.nerad@oracle.com>
Thu, 21 Mar 2013 18:48:46 +0100
branchclosure
changeset 869 151f4ccd7673
parent 532 b5150a06c5d1
child 884 89891834511c
permissions -rw-r--r--
Initial attempt for advanced obfuscation
     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 org.apidesign.bck2brwsr.core.ExtraJavaScript;
    22 import org.apidesign.bck2brwsr.core.JavaScriptBody;
    23 
    24 /** Provides binding between models and 
    25  *
    26  * @author Jaroslav Tulach <jtulach@netbeans.org>
    27  */
    28 @ExtraJavaScript(resource = "/org/apidesign/bck2brwsr/htmlpage/knockout-2.2.1.js")
    29 public class Knockout {
    30     /** used by tests */
    31     static Knockout next;
    32     
    33     Knockout() {
    34     }
    35     
    36     public static <M> Knockout applyBindings(
    37         Class<M> modelClass, M model, String[] propsGettersAndSetters
    38     ) {
    39         Knockout bindings = next;
    40         next = null;
    41         if (bindings == null) {
    42             bindings = new Knockout();
    43         }
    44         for (int i = 0; i < propsGettersAndSetters.length; i += 4) {
    45             try {
    46                 Method getter = modelClass.getMethod(propsGettersAndSetters[i + 3]);
    47                 bind(bindings, model, propsGettersAndSetters[i],
    48                     propsGettersAndSetters[i + 1],
    49                     propsGettersAndSetters[i + 2],
    50                     getter.getReturnType().isPrimitive()
    51                 );
    52             } catch (NoSuchMethodException ex) {
    53                 throw new IllegalStateException(ex.getMessage());
    54             }
    55         }
    56         applyBindings(bindings);
    57         return bindings;
    58     }
    59 
    60     @JavaScriptBody(args = { "prop" }, body =
    61         "this[prop].valueHasMutated();"
    62     )
    63     public void valueHasMutated(String prop) {
    64     }
    65     
    66 
    67     @JavaScriptBody(args = { "id", "ev" }, body = "ko.utils.triggerEvent(window.document.getElementById(id), ev.substring(2));")
    68     public static void triggerEvent(String id, String ev) {
    69     }
    70     
    71     @JavaScriptBody(args = { "bindings", "model", "prop", "getter", "setter", "primitive" }, body =
    72           "var bnd = {\n"
    73         + "  'read': function() {\n"
    74         + "    var v = model[getter]();\n"
    75         + "    return v;\n"
    76         + "  },\n"
    77         + "  'owner': bindings\n"
    78         + "};\n"
    79         + "if (setter != null) {\n"
    80         + "  bnd['write'] = function(val) {\n"
    81         + "    model[setter](primitive ? new Number(val) : val);\n"
    82         + "  };\n"
    83         + "}\n"
    84         + "bindings[prop] = ko['computed'](bnd);"
    85     )
    86     private static void bind(
    87         Object bindings, Object model, String prop, String getter, String setter, boolean primitive
    88     ) {
    89     }
    90     
    91     @JavaScriptBody(args = { "bindings" }, body = "ko.applyBindings(bindings);")
    92     private static void applyBindings(Object bindings) {}
    93 }