javaquery/demo-calculator/src/main/java/org/apidesign/bck2brwsr/mavenhtml/App.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Mon, 21 Jan 2013 15:57:30 +0100
branchmodel
changeset 510 aaf86ae88f46
parent 505 4198be34b516
permissions -rw-r--r--
Injection of model
     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.mavenhtml;
    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 })
    38 public class App {
    39     static {
    40         new Calculator().applyBindings();
    41     }
    42     
    43     @On(event = CLICK, id="clear")
    44     static void clear(Calculator c) {
    45         c.setMemory(0);
    46         c.setOperation(null);
    47         c.setDisplay(0);
    48     }
    49     
    50     @On(event = CLICK, id= { "plus", "minus", "mul", "div" })
    51     static void applyOp(Calculator c, String op) {
    52         c.setMemory(c.getDisplay());
    53         c.setOperation(op);
    54         c.setDisplay(0);
    55     }
    56 
    57     @On(event = MOUSE_OVER, id= { "result" })
    58     static void attemptingIn(Calculator c, String op) {
    59         c.setHover(true);
    60     }
    61     @On(event = MOUSE_OUT, id= { "result" })
    62     static void attemptingOut(Calculator c, String op) {
    63         c.setHover(false);
    64     }
    65     
    66     @On(event = CLICK, id="result")
    67     static void computeTheValue(Calculator c) {
    68         c.setDisplay(compute(
    69             c.getOperation(), 
    70             c.getMemory(), 
    71             c.getDisplay()
    72         ));
    73         c.setMemory(0);
    74     }
    75     
    76     private static double compute(String op, double memory, double display) {
    77         switch (op) {
    78             case "plus": return memory + display;
    79             case "minus": return memory - display;
    80             case "mul": return memory * display;
    81             case "div": return memory / display;
    82             default: throw new IllegalStateException(op);
    83         }
    84     }
    85     
    86     @On(event = CLICK, id={"n0", "n1", "n2", "n3", "n4", "n5", "n6", "n7", "n8", "n9"}) 
    87     static void addDigit(String digit, Calculator c) {
    88         digit = digit.substring(1);
    89         
    90         double v = c.getDisplay();
    91         if (v == 0.0) {
    92             c.setDisplay(Integer.parseInt(digit));
    93         } else {
    94             String txt = Double.toString(v);
    95             if (txt.endsWith(".0")) {
    96                 txt = txt.substring(0, txt.length() - 2);
    97             }
    98             txt = txt + digit;
    99             c.setDisplay(Double.parseDouble(txt));
   100         }
   101     }
   102 
   103     @ComputedProperty
   104     public static String displayPreview(
   105         double display, boolean hover, double memory, String operation
   106     ) {
   107         if (!hover) {
   108             return "Type numbers and perform simple operations! Press '=' to get result.";
   109         }
   110         return "Attempt to compute " + memory + " " + operation + " " + display + " = " + compute(operation, memory, display);
   111     }
   112 }