diff src/get_chat.js.luan @ 46:42b741a1d5c6

add username
author Franklin Schmidt <fschmidt@gmail.com>
date Fri, 28 Feb 2025 19:25:12 -0700
parents 818697418dbe
children 9298b04607ae
line wrap: on
line diff
--- a/src/get_chat.js.luan	Fri Feb 28 14:37:11 2025 -0700
+++ b/src/get_chat.js.luan	Fri Feb 28 19:25:12 2025 -0700
@@ -7,13 +7,13 @@
 local Http = require "luan:http/Http.luan"
 local User = require "site:/lib/User.luan"
 local current_user = User.current or error()
+local get_user_by_id = User.get_by_id 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"
 
@@ -27,7 +27,15 @@
 	<div top>
 		<h3>
 			<img back onclick="back()" src="/images/arrow_back.svg">
-			<span><% chat_other_users_html(chat,user,true) %></span>
+			<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><%
+				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><%
+				end
+			%></span>
 		</h3>
 		<button onclick='deleteChat()'>Delete</button>
 	</div>