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