serverside/src/main/java/org/apidesign/bck2brwsr/demo/serverside/ChatClient.java
author Jaroslav Tulach <jtulach@netbeans.org>
Sat, 04 May 2013 07:21:05 +0200
changeset 5 f0a52c72ef74
child 9 045360776205
permissions -rw-r--r--
Skeleton of client part of the chat application
     1 /**
     2  * The MIT License (MIT)
     3  *
     4  * Copyright (C) 2013 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
     5  *
     6  * Permission is hereby granted, free of charge, to any person obtaining a copy
     7  * of this software and associated documentation files (the "Software"), to deal
     8  * in the Software without restriction, including without limitation the rights
     9  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    10  * copies of the Software, and to permit persons to whom the Software is
    11  * furnished to do so, subject to the following conditions:
    12  *
    13  * The above copyright notice and this permission notice shall be included in
    14  * all copies or substantial portions of the Software.
    15  *
    16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    17  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    18  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    19  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    20  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    21  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    22  * THE SOFTWARE.
    23  */
    24 package org.apidesign.bck2brwsr.demo.serverside;
    25 
    26 import net.java.html.json.ComputedProperty;
    27 import net.java.html.json.Context;
    28 import net.java.html.json.Function;
    29 import net.java.html.json.Model;
    30 import net.java.html.json.Property;
    31 
    32 /**
    33  *
    34  * @author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
    35  */
    36 @Model(className = "ChatModel", properties = {
    37     @Property(name = "user", type = String.class),
    38     @Property(name = "text", type = String.class),
    39     @Property(name = "msgs", type = Message.class, array = true)
    40 })
    41 class ChatClient {
    42     @ComputedProperty
    43     static boolean sendEnabled(String user, String text) {
    44         boolean res = user != null && text != null && !user.isEmpty() && !text.isEmpty();
    45         try {
    46             if (true) throw new IllegalStateException("Query for msg '" + text + "' by user " + user + " res: " + res);
    47         } catch (Exception ex) {
    48             
    49         }
    50         return res;
    51     }
    52     
    53     @Function
    54     static void submit(ChatModel m) {
    55         if (!sendEnabled(m.getUser(), m.getText())) {
    56             return;
    57         }
    58         Message msg = new Message(CNTX);
    59         msg.setComment(m.getText());
    60         msg.setUser(m.getUser());
    61         m.getMsgs().add(msg);
    62     }
    63     
    64     static final Context CNTX = Context.findDefault(ChatClient.class);
    65     static {
    66         ChatModel chm = new ChatModel(CNTX);
    67         Message m = new Message(CNTX);
    68         m.setComment("Hello World!");
    69         m.setUser("Jarda");
    70         chm.getMsgs().add(m);
    71         chm.applyBindings();
    72     }
    73 }