feat(chat): show delete button on hover

This commit is contained in:
João Paulo Dubas 2024-11-01 21:43:44 +00:00
parent ee4cb20e46
commit c788bfa8d8
Signed by: joao.dubas
SSH Key Fingerprint: SHA256:V1mixgOGRc/YMhGx/DNkOSmJxgA2vHNrDZEk3wt/kOA

View File

@ -215,10 +215,10 @@ defmodule SlaxWeb.ChatRoomLive do
defp message(assigns) do
~H"""
<div id={@dom_id} class="relative flex px-4 py-3">
<div id={@dom_id} class="group relative flex px-4 py-3">
<button
:if={@current_user.id == @message.user_id}
class="absolute top-4 right-4 text-red-500 hover:text-red-800 cursor-pointer"
class="absolute top-4 right-4 text-red-500 hover:text-red-800 cursor-pointer hidden group-hover:block"
data-confirm="Are you sure?"
phx-click="delete-message"
phx-value-id={@message.id}