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()
|
33
|
16 local chat_other_users_html = Shared.chat_other_users_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">
|
41
|
30 <span><% chat_other_users_html(chat,user,true) %></span>
|
27
|
31 </h3>
|
34
|
32 <button onclick='deleteChat()'>Delete</button>
|
10
|
33 </div>
|
|
34 <div main>
|
|
35 <%
|
|
36 for _, post in ipairs(posts) do
|
|
37 post_html(post)
|
|
38 end
|
|
39 %>
|
|
40 <div input>
|
|
41 <textarea oninput="fixTextarea(event)" onkeydown="textareaKey(event)"></textarea>
|
|
42 <button onclick="addPost()" title="Send"><img src="/images/send.svg"></button>
|
|
43 </div>
|
|
44 </div>
|
7
|
45 <%
|
|
46 end
|
|
47
|
|
48 return function()
|
|
49 Io.stdout = Http.response.text_writer()
|
|
50 %>
|
12
|
51 gotChat(<%=json_string(`html()`)%>);
|
7
|
52 <%
|
|
53 end
|