new
@ -1,36 +1,80 @@
|
|||||||
{% if chat_message.member %}
|
{% if chat_message.member %}
|
||||||
<div class="w-full flex justify-start items-end gap-2 fade-in-up">
|
<div class="w-full flex items-end justify-start gap-2">
|
||||||
<div>
|
<div>
|
||||||
<div
|
<div
|
||||||
class="w-[30px] h-[30px] rounded-full shadow-md text-white flex justify-center items-center bg-osiblue uppercase text-xs">
|
class="w-[25px] h-[25px] rounded-full shadow-md text-white flex justify-center items-center bg-osiblue uppercase text-xs">
|
||||||
{% if chat_message.member.staffprofile.image %}
|
{% if chat_message.member.staffprofile.image %}
|
||||||
<img class="w-full h-full rounded-full"
|
<img class="w-full h-full rounded-full"
|
||||||
src="http://192.168.1.106:8000{{chat_message.member.staffprofile.image.url}}">
|
src="http://192.168.1.106:8000{{chat_message.member.staffprofile.image.url}}">
|
||||||
|
{% else %}
|
||||||
|
<p>{{chat_message.member.first_name.0}}{{chat_message.member.last_name.0}}</p>
|
||||||
|
{% endif %}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{% if not chat_message.chatmessageattachment %}
|
||||||
|
<div
|
||||||
|
class="max-w-[80%] bg-gray-50 px-4 py-3 rounded-r-3xl rounded-tl-3xl text-secondosiblue text-sm leading-6 bg-opacity-50 shadow-md border border-gray-100">
|
||||||
|
<p style="white-space: pre-line; overflow-wrap: anywhere;">{{chat_message.content}}</p>
|
||||||
|
</div>
|
||||||
|
{% else %}
|
||||||
|
{% if chat_message.chatmessageattachment.is_image %}
|
||||||
|
<div
|
||||||
|
class="max-w-[80%] bg-gray-50 p-4 rounded-r-3xl rounded-tl-3xl text-secondosiblue text-sm leading-6 bg-opacity-50 shadow-md border border-gray-100">
|
||||||
|
<img src="http://192.168.1.106:8000/{{chat_message.chatmessageattachment.attachment}}" class="rounded-md">
|
||||||
|
</div>
|
||||||
{% else %}
|
{% else %}
|
||||||
<p>{{chat_message.member.first_name.0}}{{chat_message.member.last_name.0}}</p>
|
<div
|
||||||
|
class="max-w-[80%] bg-gray-50 p-4 rounded-r-3xl rounded-tl-3xl text-secondosiblue text-sm leading-6 bg-opacity-50 shadow-md border border-gray-100">
|
||||||
|
<div class="w-full flex items-center gap-1">
|
||||||
|
<div>
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" class="w-5 text-secondosiblue notFilledSvg">
|
||||||
|
<path d="M8 7L16 7" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path>
|
||||||
|
<path d="M8 11L12 11" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path>
|
||||||
|
<path d="M13 21.5V21C13 18.1716 13 16.7574 13.8787 15.8787C14.7574 15 16.1716 15 19 15H19.5M20 13.3431V10C20 6.22876 20 4.34315 18.8284 3.17157C17.6569 2 15.7712 2 12 2C8.22877 2 6.34315 2 5.17157 3.17157C4 4.34314 4 6.22876 4 10L4 14.5442C4 17.7892 4 19.4117 4.88607 20.5107C5.06508 20.7327 5.26731 20.9349 5.48933 21.1139C6.58831 22 8.21082 22 11.4558 22C12.1614 22 12.5141 22 12.8372 21.886C12.9044 21.8623 12.9702 21.835 13.0345 21.8043C13.3436 21.6564 13.593 21.407 14.0919 20.9081L18.8284 16.1716C19.4065 15.5935 19.6955 15.3045 19.8478 14.9369C20 14.5694 20 14.1606 20 13.3431Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path>
|
||||||
|
</svg>
|
||||||
|
</div>
|
||||||
|
<div class="flex flex-col">
|
||||||
|
<span class="text-xs">{{chat_message.chatmessageattachment.file_name}}</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</div>
|
{% endif %}
|
||||||
</div>
|
|
||||||
<div
|
|
||||||
class="w-fit bg-gray-50 px-3 py-2 rounded-r-3xl rounded-tl-3xl text-secondosiblue text-sm leading-6 bg-opacity-50 shadow-md border border-gray-100">
|
|
||||||
<p class="break-all">{{chat_message.content}}</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
{% else %}
|
|
||||||
<div class="w-full flex justify-end">
|
|
||||||
<div
|
|
||||||
class="w-fit px-3 py-2 rounded-l-3xl rounded-tr-3xl text-white shadow-md text-sm leading-6 bg-opacity-70 bg-osiblue fade-in-up">
|
|
||||||
<p class="break-all">{{chat_message.content}}</p>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
{% endif %}
|
|
||||||
|
|
||||||
<style>
|
<!-- GUEST MESSAGE -->
|
||||||
@keyframes fadeInAndUp {
|
{% else %}
|
||||||
from { opacity: 0; transform: translateY(12px); }
|
{% if not chat_message.chatmessageattachment %}
|
||||||
to { opacity: 1; transform: translateY(0px); }
|
<div class="w-full flex justify-end">
|
||||||
}
|
<div
|
||||||
.fade-in-up {
|
class="max-w-[80%] px-4 py-3 rounded-l-3xl rounded-tr-3xl text-white shadow-md text-sm leading-6 bg-opacity-70 bg-osiblue">
|
||||||
animation: fadeInAndUp 0.6s ease;
|
<p style="white-space: pre-line; overflow-wrap: anywhere;">{{chat_message.content}}</p>
|
||||||
}
|
</div>
|
||||||
</style>
|
</div>
|
||||||
|
{% else %}
|
||||||
|
{% if chat_message.chatmessageattachment.is_image %}
|
||||||
|
<div class="w-full flex justify-end">
|
||||||
|
<div class="max-w-[80%] p-4 rounded-l-3xl rounded-tr-3xl text-white shadow-md text-sm leading-6 bg-opacity-70 bg-osiblue">
|
||||||
|
<img src="http://192.168.1.106:8000/{{chat_message.chatmessageattachment.attachment}}" class="rounded-md">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{% else %}
|
||||||
|
<div class="w-full flex justify-end">
|
||||||
|
<div class="max-w-[80%] p-4 rounded-l-3xl rounded-tr-3xl text-white shadow-md text-sm leading-6 bg-opacity-70 bg-osiblue">
|
||||||
|
<div class="w-full flex items-center gap-1">
|
||||||
|
<div>
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" class="w-5 text-white notFilledSvg">
|
||||||
|
<path d="M8 7L16 7" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path>
|
||||||
|
<path d="M8 11L12 11" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path>
|
||||||
|
<path d="M13 21.5V21C13 18.1716 13 16.7574 13.8787 15.8787C14.7574 15 16.1716 15 19 15H19.5M20 13.3431V10C20 6.22876 20 4.34315 18.8284 3.17157C17.6569 2 15.7712 2 12 2C8.22877 2 6.34315 2 5.17157 3.17157C4 4.34314 4 6.22876 4 10L4 14.5442C4 17.7892 4 19.4117 4.88607 20.5107C5.06508 20.7327 5.26731 20.9349 5.48933 21.1139C6.58831 22 8.21082 22 11.4558 22C12.1614 22 12.5141 22 12.8372 21.886C12.9044 21.8623 12.9702 21.835 13.0345 21.8043C13.3436 21.6564 13.593 21.407 14.0919 20.9081L18.8284 16.1716C19.4065 15.5935 19.6955 15.3045 19.8478 14.9369C20 14.5694 20 14.1606 20 13.3431Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path>
|
||||||
|
</svg>
|
||||||
|
</div>
|
||||||
|
<div class="flex flex-col">
|
||||||
|
<span class="text-xs">{{chat_message.chatmessageattachment.file_name}}</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{% endif %}
|
||||||
|
{% endif %}
|
||||||
|
{% endif %}
|
After Width: | Height: | Size: 1.3 MiB |
After Width: | Height: | Size: 4.6 MiB |
After Width: | Height: | Size: 220 KiB |
After Width: | Height: | Size: 220 KiB |
After Width: | Height: | Size: 220 KiB |
After Width: | Height: | Size: 91 KiB |
After Width: | Height: | Size: 91 KiB |
After Width: | Height: | Size: 91 KiB |
After Width: | Height: | Size: 91 KiB |
After Width: | Height: | Size: 91 KiB |
After Width: | Height: | Size: 1.3 MiB |
After Width: | Height: | Size: 1.3 MiB |
After Width: | Height: | Size: 2.4 MiB |
After Width: | Height: | Size: 1.4 MiB |