Mercurial Hosting > chat
view src/get_chat.js.luan @ 33:e2b7f6393dab
add online
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Sun, 10 Nov 2024 19:57:14 -0700 |
parents | 809193524522 |
children | 62d04ca486dd |
line wrap: on
line source
local Luan = require "luan:Luan.luan" local error = Luan.error local ipairs = Luan.ipairs or error() local Parsers = require "luan:Parsers.luan" local json_string = Parsers.json_string or error() local Io = require "luan:Io.luan" local Http = require "luan:http/Http.luan" local User = require "site:/lib/User.luan" local current_user = User.current or error() local Chat = require "site:/lib/Chat.luan" local get_chat_by_id = Chat.get_by_id or error() local Post = require "site:/lib/Post.luan" local post_search = Post.search or error() local Shared = require "site:/lib/Shared.luan" local post_html = Shared.post_html or error() local chat_other_users_html = Shared.chat_other_users_html or error() local Logging = require "luan:logging/Logging.luan" local logger = Logging.logger "get_chat.js" local function html() local user = current_user() or error() local chat = Http.request.parameters.chat or error() chat = get_chat_by_id(chat) or error() local posts = post_search( "post_chat_id:"..chat.id, "id" ) %> <div top> <h3> <img back onclick="back()" src="/images/arrow_back.svg"> <span><% chat_other_users_html(chat,user) %></span> </h3> <button onclick='deleteChat()'>delete</button> </div> <div main> <% for _, post in ipairs(posts) do post_html(post) end %> <div input> <textarea oninput="fixTextarea(event)" onkeydown="textareaKey(event)"></textarea> <button onclick="addPost()" title="Send"><img src="/images/send.svg"></button> </div> </div> <% end return function() Io.stdout = Http.response.text_writer() %> gotChat(<%=json_string(`html()`)%>); <% end