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()
|
27
|
16 local Logging = require "luan:logging/Logging.luan"
|
|
17 local logger = Logging.logger "get_chat.js"
|
7
|
18
|
10
|
19
|
7
|
20 local function html()
|
|
21 local user = current_user() or error()
|
|
22 local chat = Http.request.parameters.chat or error()
|
|
23 chat = get_chat_by_id(chat) or error()
|
10
|
24 local posts = post_search( "post_chat_id:"..chat.id, "id" )
|
7
|
25 %>
|
10
|
26 <div top>
|
27
|
27 <h3>
|
|
28 <img back onclick="back()" src="/images/arrow_back.svg">
|
|
29 <span><%= chat.other_users_email(user) %></span>
|
|
30 </h3>
|
11
|
31 <button onclick='deleteChat()'>delete</button>
|
10
|
32 </div>
|
|
33 <div main>
|
|
34 <%
|
|
35 for _, post in ipairs(posts) do
|
|
36 post_html(post)
|
|
37 end
|
|
38 %>
|
|
39 <div input>
|
|
40 <textarea oninput="fixTextarea(event)" onkeydown="textareaKey(event)"></textarea>
|
|
41 <button onclick="addPost()" title="Send"><img src="/images/send.svg"></button>
|
|
42 </div>
|
|
43 </div>
|
7
|
44 <%
|
|
45 end
|
|
46
|
|
47 return function()
|
|
48 Io.stdout = Http.response.text_writer()
|
|
49 %>
|
12
|
50 gotChat(<%=json_string(`html()`)%>);
|
7
|
51 <%
|
|
52 end
|