javaquery/api/src/main/java/org/apidesign/bck2brwsr/htmlpage/KOList.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Mon, 08 Apr 2013 12:36:12 +0200
branchmodel
changeset 950 445d5f1d4177
parent 930 e8916518b38d
child 955 dad881565d0a
permissions -rw-r--r--
Also notify changes in array 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 java.util.ArrayList;
    21 import java.util.Collection;
    22 import java.util.Iterator;
    23 import org.apidesign.bck2brwsr.core.JavaScriptOnly;
    24 
    25 /**
    26  *
    27  * @author Jaroslav Tulach <jtulach@netbeans.org>
    28  */
    29 public final class KOList<T> extends ArrayList<T> {
    30     private final String name;
    31     private final String[] deps;
    32     private Knockout model;
    33     private Runnable onchange;
    34 
    35     public KOList(String name, String... deps) {
    36         this.name = name;
    37         this.deps = deps;
    38     }
    39     
    40     public void assign(Knockout model) {
    41         this.model = model;
    42     }
    43     
    44     public KOList<T> onChange(Runnable r) {
    45         if (this.onchange != null) {
    46             throw new IllegalStateException();
    47         }
    48         this.onchange = r;
    49         return this;
    50     }
    51 
    52     @Override
    53     public boolean add(T e) {
    54         boolean ret = super.add(e);
    55         notifyChange();
    56         return ret;
    57     }
    58 
    59     @Override
    60     public boolean addAll(Collection<? extends T> c) {
    61         boolean ret = super.addAll(c);
    62         notifyChange();
    63         return ret;
    64     }
    65 
    66     @Override
    67     public boolean addAll(int index, Collection<? extends T> c) {
    68         boolean ret = super.addAll(index, c);
    69         notifyChange();
    70         return ret;
    71     }
    72 
    73     @Override
    74     public boolean remove(Object o) {
    75         boolean ret = super.remove(o);
    76         notifyChange();
    77         return ret;
    78     }
    79 
    80     @Override
    81     public void clear() {
    82         super.clear();
    83         notifyChange();
    84     }
    85 
    86     @Override
    87     public boolean removeAll(Collection<?> c) {
    88         boolean ret = super.removeAll(c);
    89         notifyChange();
    90         return ret;
    91     }
    92 
    93     @Override
    94     public boolean retainAll(Collection<?> c) {
    95         boolean ret = super.retainAll(c);
    96         notifyChange();
    97         return ret;
    98     }
    99 
   100     @Override
   101     public T set(int index, T element) {
   102         T ret = super.set(index, element);
   103         notifyChange();
   104         return ret;
   105     }
   106 
   107     @Override
   108     public void add(int index, T element) {
   109         super.add(index, element);
   110         notifyChange();
   111     }
   112 
   113     @Override
   114     public T remove(int index) {
   115         T ret = super.remove(index);
   116         notifyChange();
   117         return ret;
   118     }
   119 
   120     @Override
   121     public String toString() {
   122         Iterator<T> it = iterator();
   123         if (!it.hasNext()) {
   124             return "[]";
   125         }
   126         String sep = "";
   127         StringBuilder sb = new StringBuilder();
   128         sb.append('[');
   129         while (it.hasNext()) {
   130             T t = it.next();
   131             sb.append(sep);
   132             sb.append(ConvertTypes.toJSON(t));
   133             sep = ",";
   134         }
   135         sb.append(']');
   136         return sb.toString();
   137     }
   138     
   139     
   140     @JavaScriptOnly(name = "koArray", value = "function() { return this.toArray___3Ljava_lang_Object_2(); }")
   141     private static native int koArray();
   142 
   143     private void notifyChange() {
   144         Knockout m = model;
   145         if (m != null) {
   146             m.valueHasMutated(name);
   147             for (String dependant : deps) {
   148                 m.valueHasMutated(dependant);
   149             }
   150         }
   151         Runnable r = onchange;
   152         if (r != null) {
   153             r.run();
   154         }
   155     }
   156 
   157     @Override
   158     public KOList clone() {
   159         return (KOList)super.clone();
   160     }
   161     
   162 }