javaquery/demo-calculator-dynamic/src/main/java/org/apidesign/bck2brwsr/demo/calc/Calc.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Fri, 22 Mar 2013 17:03:32 +0100
branchmodel
changeset 878 ecbd252fd3a7
parent 763 ecd7294f1e17
parent 831 513ecb0b76b3
child 885 4508b8b6b45b
permissions -rw-r--r--
Need to merge in default branch: It contains automatic conversion of boxed types to primitive values which is needed by Knockout to display elements of arrays properly.
     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.demo.calc;
    19 
    20 import org.apidesign.bck2brwsr.htmlpage.api.ComputedProperty;
    21 import org.apidesign.bck2brwsr.htmlpage.api.On;
    22 import static org.apidesign.bck2brwsr.htmlpage.api.OnEvent.*;
    23 import org.apidesign.bck2brwsr.htmlpage.api.Page;
    24 import org.apidesign.bck2brwsr.htmlpage.api.Property;
    25 
    26 /** HTML5 & Java demo showing the power of 
    27  * <a href="http://wiki.apidesign.org/wiki/AnnotationProcessor">annotation processors</a>
    28  * as well as other goodies.
    29  * 
    30  * @author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
    31  */
    32 @Page(xhtml="Calculator.xhtml", properties = {
    33     @Property(name = "memory", type = double.class),
    34     @Property(name = "display", type = double.class),
    35     @Property(name = "operation", type = String.class),
    36     @Property(name = "hover", type = boolean.class),
    37     @Property(name = "results", type = String.class, array = true)
    38 })
    39 public class Calc {
    40     static {
    41         Calculator m = new Calculator();
    42         m.applyBindings();
    43     }
    44     
    45     @On(event = CLICK, id="clear")
    46     static void clear(Calculator c) {
    47         c.setMemory(0);
    48         c.setOperation(null);
    49         c.setDisplay(0);
    50     }
    51     
    52     @On(event = CLICK, id= { "plus", "minus", "mul", "div" })
    53     static void applyOp(Calculator c, String id) {
    54         c.setMemory(c.getDisplay());
    55         c.setOperation(id);
    56         c.setDisplay(0);
    57     }
    58 
    59     @On(event = MOUSE_OVER, id= { "result" })
    60     static void attemptingIn(Calculator c) {
    61         c.setHover(true);
    62     }
    63     @On(event = MOUSE_OUT, id= { "result" })
    64     static void attemptingOut(Calculator c) {
    65         c.setHover(false);
    66     }
    67     
    68     @On(event = CLICK, id="result")
    69     static void computeTheValue(Calculator c) {
    70         final double val = compute(
    71             c.getOperation(), 
    72             c.getMemory(), 
    73             c.getDisplay()
    74         );
    75         c.getResults().add("another result " + val);
    76         c.setDisplay(val);
    77         c.setMemory(0);
    78     }
    79     
    80     private static double compute(String op, double memory, double display) {
    81         switch (op) {
    82             case "plus": return memory + display;
    83             case "minus": return memory - display;
    84             case "mul": return memory * display;
    85             case "div": return memory / display;
    86             default: throw new IllegalStateException(op);
    87         }
    88     }
    89     
    90     @On(event = CLICK, id={"n0", "n1", "n2", "n3", "n4", "n5", "n6", "n7", "n8", "n9"}) 
    91     static void addDigit(String id, Calculator c) {
    92         id = id.substring(1);
    93         
    94         double v = c.getDisplay();
    95         if (v == 0.0) {
    96             c.setDisplay(Integer.parseInt(id));
    97         } else {
    98             String txt = Double.toString(v);
    99             if (txt.endsWith(".0")) {
   100                 txt = txt.substring(0, txt.length() - 2);
   101             }
   102             txt = txt + id;
   103             c.setDisplay(Double.parseDouble(txt));
   104         }
   105     }
   106 
   107     @ComputedProperty
   108     public static String displayPreview(
   109         double display, boolean hover, double memory, String operation
   110     ) {
   111         if (!hover) {
   112             return "Type numbers and perform simple operations! Press '=' to get result.";
   113         }
   114         return "Attempt to compute " + memory + " " + operation + " " + display + " = " + compute(operation, memory, display);
   115     }
   116 }