7
|
1 local Luan = require "luan:Luan.luan"
|
|
2 local error = Luan.error
|
10
|
3 local ipairs = Luan.ipairs or error()
|
7
|
4 local Parsers = require "luan:Parsers.luan"
|
|
5 local json_string = Parsers.json_string or error()
|
|
6 local Io = require "luan:Io.luan"
|
|
7 local Http = require "luan:http/Http.luan"
|
|
8 local User = require "site:/lib/User.luan"
|
|
9 local current_user = User.current or error()
|
|
10 local Chat = require "site:/lib/Chat.luan"
|
|
11 local get_chat_by_id = Chat.get_by_id or error()
|
10
|
12 local Post = require "site:/lib/Post.luan"
|
|
13 local post_search = Post.search or error()
|
12
|
14 local Shared = require "site:/lib/Shared.luan"
|
|
15 local post_html = Shared.post_html or error()
|
7
|
16
|
10
|
17
|
7
|
18 local function html()
|
|
19 local user = current_user() or error()
|
|
20 local chat = Http.request.parameters.chat or error()
|
|
21 chat = get_chat_by_id(chat) or error()
|
10
|
22 local posts = post_search( "post_chat_id:"..chat.id, "id" )
|
7
|
23 %>
|
10
|
24 <div top>
|
|
25 <h3><%= chat.other_users_email(user) %></h3>
|
11
|
26 <button onclick='deleteChat()'>delete</button>
|
10
|
27 </div>
|
|
28 <div main>
|
|
29 <%
|
|
30 for _, post in ipairs(posts) do
|
|
31 post_html(post)
|
|
32 end
|
|
33 %>
|
|
34 <div input>
|
|
35 <textarea oninput="fixTextarea(event)" onkeydown="textareaKey(event)"></textarea>
|
|
36 <button onclick="addPost()" title="Send"><img src="/images/send.svg"></button>
|
|
37 </div>
|
|
38 </div>
|
7
|
39 <%
|
|
40 end
|
|
41
|
|
42 return function()
|
|
43 Io.stdout = Http.response.text_writer()
|
|
44 %>
|
12
|
45 gotChat(<%=json_string(`html()`)%>);
|
7
|
46 <%
|
|
47 end
|