comparison src/lib/Shared.luan @ 35:27c41f22d2a9

improve fixPosts
author Franklin Schmidt <fschmidt@gmail.com>
date Tue, 12 Nov 2024 17:17:59 -0700
parents 62d04ca486dd
children 7ea33179592a
comparison
equal deleted inserted replaced
34:62d04ca486dd 35:27c41f22d2a9
95 local author_id = post.author_id 95 local author_id = post.author_id
96 local user = current_user() or error() 96 local user = current_user() or error()
97 local author = get_user_by_id(author_id) 97 local author = get_user_by_id(author_id)
98 local id = post.id 98 local id = post.id
99 %> 99 %>
100 <div post="<%=id%>"> 100 <div post="<%=id%>" author="<%=author.id%>" fix>
101 <div who="<%=author.id%>"> 101 <div who>
102 <span author><%=author.email%></span> 102 <span author><%=author.email%></span>
103 <span right> 103 <span right>
104 <span when fix><%=post.date%></span> 104 <span when><%=post.date%></span>
105 <span pulldown> 105 <span pulldown></span>
106 <img onclick="clickMenu(this)" src="/images/more_vert.svg">
107 <div>
108 <span onclick="editPost('<%=id%>')">Edit</span>
109 <span onclick="deletePost('<%=id%>')">Delete</span>
110 </div>
111 </span>
112 </span> 106 </span>
113 </div> 107 </div>
114 <div text fix><%= html_encode(post.content) %></div> 108 <div text><%= html_encode(post.content) %></div>
115 </div> 109 </div>
116 <% 110 <%
117 end 111 end
118 112
119 local function chat_other_users_html(chat,user) 113 local function chat_other_users_html(chat,user)