0
|
1 local Luan = require "luan:Luan.luan"
|
|
2 local error = Luan.error
|
|
3 local Io = require "luan:Io.luan"
|
|
4 local Http = require "luan:http/Http.luan"
|
|
5 local Shared = require "site:/lib/Shared.luan"
|
|
6 local head = Shared.head or error()
|
|
7 local header = Shared.header or error()
|
10
|
8 local started = Shared.started or error()
|
15
|
9 local chats_html = Shared.chats_html or error()
|
4
|
10 local User = require "site:/lib/User.luan"
|
5
|
11 local current_user = User.current or error()
|
4
|
12 local Chat = require "site:/lib/Chat.luan"
|
59
|
13 local get_chat_by_id = Chat.get_by_id or error()
|
8
|
14 local Logging = require "luan:logging/Logging.luan"
|
21
|
15 local logger = Logging.logger "index.html"
|
0
|
16
|
|
17
|
|
18 return function()
|
4
|
19 local user = current_user()
|
|
20 if user == nil then
|
59
|
21 Http.response.send_redirect("/login.html")
|
4
|
22 return
|
|
23 end
|
59
|
24 local user_id = user.id
|
|
25 local chat = Http.request.parameters.chat
|
8
|
26 local selected = nil
|
59
|
27 if chat ~= nil then
|
|
28 selected = get_chat_by_id(chat)
|
4
|
29 end
|
0
|
30 Io.stdout = Http.response.text_writer()
|
|
31 %>
|
|
32 <!doctype html>
|
|
33 <html>
|
|
34 <head>
|
|
35 <% head() %>
|
7
|
36 <style>
|
10
|
37 @import "chat.css?s=<%=started%>";
|
7
|
38 </style>
|
33
|
39 <style online></style>
|
10
|
40 <script src="chat.js?s=<%=started%>"></script>
|
0
|
41 </head>
|
|
42 <body>
|
|
43 <% header() %>
|
60
|
44 <div chat_content show="intro">
|
7
|
45 <div chats>
|
15
|
46 <% chats_html() %>
|
7
|
47 </div>
|
60
|
48 <div intro>
|
|
49 <h3 or>Choose a chat on the left</h3>
|
|
50 <p or>or</p>
|
|
51 <h3>Chat with another person</h3>
|
|
52 <form action="javascript:invite()">
|
|
53 <p>
|
|
54 <label>Person's email</label><br>
|
|
55 <input type=email name=email required><br>
|
|
56 </p>
|
|
57 <p>
|
|
58 <input type=submit>
|
|
59 </p>
|
|
60 </form>
|
34
|
61 </div>
|
60
|
62 <div posts></div>
|
0
|
63 </div>
|
35
|
64 <div hidden>
|
|
65 <span pulldown>
|
|
66 <img onclick="clickMenu(this)" src="/images/more_vert.svg">
|
|
67 <div>
|
38
|
68 <span onclick="editPost(this)">Edit</span>
|
|
69 <span onclick="deletePost(this)">Delete</span>
|
35
|
70 </div>
|
|
71 </span>
|
|
72 </div>
|
20
|
73 <dialog delete_chat>
|
|
74 <h2>Delete Chat</h2>
|
|
75 <p>Are you sure that you want to delete this chat?</p>
|
|
76 <div buttons>
|
60
|
77 <button onclick="closeModal(this)">Cancel</button>
|
|
78 <button onclick="doDeleteChat(this)">Delete</button>
|
20
|
79 </div>
|
|
80 </dialog>
|
23
|
81 <dialog delete_post>
|
|
82 <h2>Delete Message</h2>
|
|
83 <p>Are you sure that you want to delete this message?</p>
|
|
84 <div buttons>
|
60
|
85 <button onclick="closeModal(this)">Cancel</button>
|
|
86 <button onclick="doDeletePost(this)">Delete</button>
|
23
|
87 </div>
|
|
88 </dialog>
|
24
|
89 <dialog edit_post>
|
|
90 <h2>Edit Message</h2>
|
|
91 <p><textarea onfocus="fixTextarea(event)" oninput="fixTextarea(event)"></textarea></p>
|
|
92 <div buttons>
|
60
|
93 <button onclick="closeModal(this)">Cancel</button>
|
|
94 <button onclick="savePost(this)">Save</button>
|
24
|
95 </div>
|
|
96 </dialog>
|
56
|
97 <dialog invite>
|
|
98 <h2>Chat with another person</h2>
|
|
99 <p>We have sent an invite to <span email></span></p>
|
|
100 <div buttons>
|
60
|
101 <button onclick="gotoInvite(this)">Close</button>
|
56
|
102 </div>
|
|
103 </dialog>
|
63
|
104 <input type="file" required onchange="loadedFile(this)">
|
15
|
105 <script>
|
35
|
106 'use strict';
|
|
107
|
8
|
108 <%
|
|
109 if selected ~= nil then
|
|
110 %>
|
59
|
111 selectChat('<%=selected.id%>');
|
8
|
112 <%
|
|
113 end
|
|
114 %>
|
35
|
115 setUserEventSource(<%=user_id%>);
|
30
|
116 lastUpdate = <%=user.last_update()%>;
|
35
|
117 userId = '<%=user_id%>';
|
15
|
118 </script>
|
|
119 </body>
|
0
|
120 </html>
|
|
121 <%
|
|
122 end
|