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