diff src/index.html.luan @ 35:27c41f22d2a9

improve fixPosts
author Franklin Schmidt <fschmidt@gmail.com>
date Tue, 12 Nov 2024 17:17:59 -0700
parents 62d04ca486dd
children 436216d17a1b
line wrap: on
line diff
--- a/src/index.html.luan	Tue Nov 12 16:08:24 2024 -0700
+++ b/src/index.html.luan	Tue Nov 12 17:17:59 2024 -0700
@@ -85,6 +85,7 @@
 			selected = get_chat(with)
 		end
 	end
+	local user_id = user.id
 	Io.stdout = Http.response.text_writer()
 %>
 <!doctype html>
@@ -93,10 +94,6 @@
 <%		head() %>
 		<style>
 			@import "chat.css?s=<%=started%>";
-
-			div[who="<%=user.id%>"] span[pulldown] {
-				visibility: visible;
-			}
 		</style>
 		<style online></style>
 		<script src="chat.js?s=<%=started%>"></script>
@@ -111,6 +108,15 @@
 				<h3 intro>Choose a chat on the left</h3>
 			</div>
 		</div>
+		<div hidden>
+			<span pulldown>
+				<img onclick="clickMenu(this)" src="/images/more_vert.svg">
+				<div>
+					<span onclick="editPost('<%=user_id%>')">Edit</span>
+					<span onclick="deletePost('<%=user_id%>')">Delete</span>
+				</div>
+			</span>
+		</div>
 		<dialog delete_chat>
 			<h2>Delete Chat</h2>
 			<p>Are you sure that you want to delete this chat?</p>
@@ -136,6 +142,8 @@
 			</div>
 		</dialog>
 		<script>
+			'use strict';
+
 <%
 	if selected ~= nil then
 %>
@@ -144,8 +152,9 @@
 <%
 	end
 %>
-			setUserEventSource(<%=user.id%>);
+			setUserEventSource(<%=user_id%>);
 			lastUpdate = <%=user.last_update()%>;
+			userId = '<%=user_id%>';
 		</script>
 	</body>
 </html>