chat/client/src/main/java/org/apidesign/html/chatserver/client/ChatClient.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Fri, 09 Jan 2015 06:10:00 +0100
changeset 227 fd26342cf23d
parent 83 1b1d3f559196
permissions -rw-r--r--
Switching to HTML/Java@1.1 and bck2brwsr@0.12
     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.html.chatserver.client;
    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.html.chatserver.model.Message;
    32 import org.apidesign.html.chatserver.model.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 = "msgs", type = Message.class, array = true)
    42 })
    43 class ChatClient {
    44     @ComputedProperty
    45     static boolean sendEnabled(String user, String comment) {
    46         boolean res = user != null && comment != null && !user.isEmpty() && !comment.isEmpty();
    47         return res;
    48     }
    49     
    50     @Function
    51     static void submit(ChatModel m) {
    52         if (!sendEnabled(m.getUser(), m.getComment())) {
    53             return;
    54         }
    55         Message msg = new Message();
    56         msg.setUser(m.getUser());
    57         msg.setComment(m.getComment());
    58         m.postComment(msg);
    59     }
    60     
    61     @OnReceive(url = "/chat", method = "POST", data = Message.class)
    62     static void postComment(ChatModel m, Message addedMessage) {
    63         if (addedMessage.getComment().equals(m.getComment())) {
    64             m.setComment("");
    65         }
    66     }
    67     
    68     @OnReceive(url = "/chat?since=0")
    69     static void initialRead(ChatModel m, Query q) {
    70         m.getMsgs().clear();
    71         m.getMsgs().addAll(q.getMessages());
    72         moreMessages(m);
    73     }
    74     
    75     @OnReceive(url = "/chat?since={since}")
    76     static void updateMsgs(ChatModel m, Query q) {
    77         m.getMsgs().addAll(q.getMessages());
    78         moreMessages(m);
    79     }
    80     
    81     private static void moreMessages(ChatModel m) {
    82         long now = 0;
    83         for (Message msg : m.getMsgs()) {
    84             if (now < msg.getSince()) {
    85                 now = msg.getSince();
    86             }
    87         }
    88         m.updateMsgs("" + (now + 1));
    89     }
    90 }