Mercurial Hosting > chat
diff src/get_chat.js.luan @ 65:6cfef9850520
people popup
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Wed, 05 Mar 2025 22:30:35 -0700 |
parents | afd5ab5b02a2 |
children | 329c3f70fd78 |
line wrap: on
line diff
--- a/src/get_chat.js.luan Wed Mar 05 21:43:11 2025 -0700 +++ b/src/get_chat.js.luan Wed Mar 05 22:30:35 2025 -0700 @@ -5,6 +5,8 @@ local digest_message = String.digest_message or error() local Parsers = require "luan:Parsers.luan" local json_string = Parsers.json_string or error() +local Html = require "luan:Html.luan" +local html_encode = Html.encode or error() local Io = require "luan:Io.luan" local Http = require "luan:http/Http.luan" local User = require "site:/lib/User.luan" @@ -30,7 +32,7 @@ <span><% local user_id = chat.other_user_id(user.id) local other_user = get_user_by_id(user_id) or error(user_id) - %><%= other_user.name_html() %><span online="<%= other_user.id %>"></span><% + %><a people href="javascript:openPeople()"><%= other_user.name_html() %></a><span online="<%= other_user.id %>"></span><% local voice_url = other_user.voice_url if voice_url ~= nil then %> <a href="<%=voice_url%>" title="Call" target="voice"><img phone src="/images/call.svg"></a><% @@ -54,6 +56,32 @@ <% end +local function people(chat) + for _, user_id in ipairs(chat.user_ids) do + local user = get_user_by_id(user_id) + local name = user.name + local email = user.email + local voice_url = user.voice_url + local voice = voice_url and `%> <a href="<%=voice_url%>" title="Call" target="voice"><img phone src="/images/call.svg"><%` or "" +%> + <p> +<% + if name == nil then +%> + <b><%=html_encode(email)%></b><%=voice%> +<% + else +%> + <b><%=html_encode(name)%></b><%=voice%><br> + <%=html_encode(email)%> +<% + end +%> + </p> +<% + end +end + return function() local user = current_user() or error() local chat = Http.request.parameters.chat or error() @@ -64,5 +92,6 @@ %> gotChat(<%=json_string(html)%>); filebinUrl = 'https://filebin.net/<%=digest%>/'; + document.querySelector('dialog[people] div[people]').innerHTML = <%=json_string(`people(chat)`)%>; <% end