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()
|
46
|
10 local get_user_by_id = User.get_by_id or error()
|
7
|
11 local Chat = require "site:/lib/Chat.luan"
|
|
12 local get_chat_by_id = Chat.get_by_id or error()
|
10
|
13 local Post = require "site:/lib/Post.luan"
|
|
14 local post_search = Post.search or error()
|
12
|
15 local Shared = require "site:/lib/Shared.luan"
|
|
16 local post_html = Shared.post_html or error()
|
27
|
17 local Logging = require "luan:logging/Logging.luan"
|
|
18 local logger = Logging.logger "get_chat.js"
|
7
|
19
|
10
|
20
|
7
|
21 local function html()
|
|
22 local user = current_user() or error()
|
|
23 local chat = Http.request.parameters.chat or error()
|
|
24 chat = get_chat_by_id(chat) or error()
|
10
|
25 local posts = post_search( "post_chat_id:"..chat.id, "id" )
|
7
|
26 %>
|
10
|
27 <div top>
|
27
|
28 <h3>
|
|
29 <img back onclick="back()" src="/images/arrow_back.svg">
|
46
|
30 <span><%
|
|
31 local user_id = chat.other_user_id(user.id)
|
|
32 local other_user = get_user_by_id(user_id) or error(user_id)
|
|
33 %><%= other_user.name_html() %><span online="<%= other_user.id %>"></span><%
|
|
34 local voice_url = other_user.voice_url
|
|
35 if voice_url ~= nil then
|
|
36 %> <a href="<%=voice_url%>" title="Call" target="voice"><img phone src="/images/call.svg"></a><%
|
|
37 end
|
|
38 %></span>
|
27
|
39 </h3>
|
34
|
40 <button onclick='deleteChat()'>Delete</button>
|
10
|
41 </div>
|
|
42 <div main>
|
|
43 <%
|
|
44 for _, post in ipairs(posts) do
|
|
45 post_html(post)
|
|
46 end
|
|
47 %>
|
|
48 <div input>
|
|
49 <textarea oninput="fixTextarea(event)" onkeydown="textareaKey(event)"></textarea>
|
|
50 <button onclick="addPost()" title="Send"><img src="/images/send.svg"></button>
|
|
51 </div>
|
|
52 </div>
|
7
|
53 <%
|
|
54 end
|
|
55
|
|
56 return function()
|
|
57 Io.stdout = Http.response.text_writer()
|
|
58 %>
|
12
|
59 gotChat(<%=json_string(`html()`)%>);
|
7
|
60 <%
|
|
61 end
|