chat/client/src/main/java/org/apidesign/demo/chat/ChatClient.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Fri, 22 Apr 2016 05:56:47 +0200
branchNewChat
changeset 238 a0f15cb8c730
child 239 f57278ddd70e
permissions -rw-r--r--
Switching to newer version of the libraries
     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.demo.chat;
    25 
    26 import net.java.html.json.ComputedProperty;
    27 import net.java.html.json.Function;
    28 import net.java.html.json.Model;
    29 import net.java.html.json.OnReceive;
    30 import net.java.html.json.Property;
    31 import org.apidesign.demo.chat.shared.Message;
    32 import org.apidesign.demo.chat.shared.Query;
    33 
    34 /**
    35  *
    36  * @author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
    37  */
    38 @Model(className = "ChatModel", targetId = "", properties = {
    39     @Property(name = "user", type = String.class),
    40     @Property(name = "comment", type = String.class),
    41     @Property(name = "url", type = String.class),
    42     @Property(name = "msgs", type = Message.class, array = true)
    43 })
    44 class ChatClient {
    45     @ComputedProperty
    46     static boolean sendEnabled(String user, String comment) {
    47         boolean res = user != null && comment != null && !user.isEmpty() && !comment.isEmpty();
    48         return res;
    49     }
    50     
    51     @Function
    52     static void submit(ChatModel m) {
    53         if (!sendEnabled(m.getUser(), m.getComment())) {
    54             return;
    55         }
    56         Message msg = new Message();
    57         msg.setUser(m.getUser());
    58         msg.setComment(m.getComment());
    59         m.postComment(m.getUrl(), msg);
    60     }
    61     
    62     static void cantChat(ChatModel model, Exception err) {
    63         model.getMsgs().add(new Message("System", err.getMessage(), 0));
    64     }
    65     
    66     
    67     @OnReceive(url = "{url}/chat", method = "POST", data = Message.class, onError = "cantChat")
    68     static void postComment(ChatModel m, Message addedMessage) {
    69         if (addedMessage.getComment().equals(m.getComment())) {
    70             m.setComment("");
    71         }
    72     }
    73     
    74     @OnReceive(url = "{url}/chat?since=0")
    75     static void initialRead(ChatModel m, Query q) {
    76         m.getMsgs().clear();
    77         m.getMsgs().addAll(q.getMessages());
    78         moreMessages(m);
    79     }
    80     
    81     @OnReceive(url = "{url}/chat?since={since}")
    82     static void updateMsgs(ChatModel m, Query q) {
    83         m.getMsgs().addAll(q.getMessages());
    84         moreMessages(m);
    85     }
    86     
    87     private static void moreMessages(ChatModel m) {
    88         long now = 0;
    89         for (Message msg : m.getMsgs()) {
    90             if (now < msg.getSince()) {
    91                 now = msg.getSince();
    92             }
    93         }
    94         m.updateMsgs(m.getUrl(), "" + (now + 1));
    95     }
    96     
    97     public static void onPageLoad() {
    98         ChatModel chm = new ChatModel();
    99         chm.setUrl("http://localhost:8080");
   100         Message m = new Message();
   101         m.setComment("Waiting for messages from the server...");
   102         m.setUser("system");
   103         chm.getMsgs().add(m);
   104         chm.applyBindings();
   105         chm.initialRead(chm.getUrl());        
   106     }
   107 }