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()
|
53
|
25 chat.read(user)
|
10
|
26 local posts = post_search( "post_chat_id:"..chat.id, "id" )
|
7
|
27 %>
|
10
|
28 <div top>
|
27
|
29 <h3>
|
|
30 <img back onclick="back()" src="/images/arrow_back.svg">
|
46
|
31 <span><%
|
|
32 local user_id = chat.other_user_id(user.id)
|
|
33 local other_user = get_user_by_id(user_id) or error(user_id)
|
|
34 %><%= other_user.name_html() %><span online="<%= other_user.id %>"></span><%
|
|
35 local voice_url = other_user.voice_url
|
|
36 if voice_url ~= nil then
|
|
37 %> <a href="<%=voice_url%>" title="Call" target="voice"><img phone src="/images/call.svg"></a><%
|
|
38 end
|
|
39 %></span>
|
27
|
40 </h3>
|
34
|
41 <button onclick='deleteChat()'>Delete</button>
|
10
|
42 </div>
|
|
43 <div main>
|
|
44 <%
|
|
45 for _, post in ipairs(posts) do
|
|
46 post_html(post)
|
|
47 end
|
|
48 %>
|
|
49 <div input>
|
|
50 <textarea oninput="fixTextarea(event)" onkeydown="textareaKey(event)"></textarea>
|
|
51 <button onclick="addPost()" title="Send"><img src="/images/send.svg"></button>
|
|
52 </div>
|
|
53 </div>
|
7
|
54 <%
|
|
55 end
|
|
56
|
|
57 return function()
|
|
58 Io.stdout = Http.response.text_writer()
|
|
59 %>
|
12
|
60 gotChat(<%=json_string(`html()`)%>);
|
7
|
61 <%
|
|
62 end
|