Mercurial Hosting > chat
diff src/lib/Shared.luan @ 46:42b741a1d5c6
add username
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Fri, 28 Feb 2025 19:25:12 -0700 |
parents | e138343b2c76 |
children | 38c209714df9 |
line wrap: on
line diff
--- a/src/lib/Shared.luan Fri Feb 28 14:37:11 2025 -0700 +++ b/src/lib/Shared.luan Fri Feb 28 19:25:12 2025 -0700 @@ -7,6 +7,8 @@ local Time = require "luan:Time.luan" local Thread = require "luan:Thread.luan" local thread_run = Thread.run 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 Http = require "luan:http/Http.luan" @@ -128,7 +130,7 @@ %> <div post="<%=id%>" author="<%=author.id%>" fix> <div who> - <span author><%=author.email%></span> + <span author><%=author.name_html()%></span> <span right> <span when><%=post.date%></span> <span pulldown></span> @@ -139,33 +141,16 @@ <% end -local function chat_other_users_html(chat,user,show_phone) - local my_id = user.id - local is_first = true - for _, user_id in ipairs(chat.user_ids) do - if user_id ~= my_id then - local other_user = get_user_by_id(user_id) or error() - if is_first then - is_first = false - else - %>, <% - end - %><span email><%= other_user.email %></span><span online="<%= other_user.id %>"></span><% - local voice_url = other_user.voice_url - if voice_url ~= nil and show_phone then - %> <a href="<%=voice_url%>" title="Call" target="voice"><img phone src="/images/call.svg"></a><% - end - end - end -end -Shared.chat_other_users_html = chat_other_users_html - function Shared.chats_html() local user = current_user() or error() local chats = chat_search( "chat_user_ids:"..user.id, "chat_updated desc" ) for _, chat in ipairs(chats) do + local user_id = chat.other_user_id(user.id) + local other_user = get_user_by_id(user_id) or error() %> - <div chat="<%=chat.id%>" onclick="selectChat(this)"><% chat_other_users_html(chat,user,false) %></div> + <div chat="<%=chat.id%>" onclick='selectChat(this,<%=json_string(other_user.email)%>)'><% + %><%= other_user.name_html() %><span online="<%= other_user.id %>"></span><% + %></div> <% end end