This commit is contained in:
mmrbnjd
2025-08-18 19:34:34 +03:30
parent 88aac97280
commit 36019a2f80
4 changed files with 33 additions and 18 deletions

View File

@@ -236,7 +236,7 @@
<source src="@GetAudioDataUrl(msg.FileType, msg.FileContent)" type="@msg.FileType">
مرورگر شما از پخش صدا پشتیبانی نمی‌کند.
</audio>
</div>
}
@if (!string.IsNullOrWhiteSpace(msg.text))
@@ -248,7 +248,7 @@
{
@msg.text
}
</div>
</div>
@if (msg.Type != Common.Enums.ConversationType.UE)
{
if (msg.IsRead)
@@ -295,11 +295,11 @@
<!-- Audio Recording Button -->
<Button Color="@(IsRecording ? ButtonColor.Danger : ButtonColor.Secondary)"
Size=ButtonSize.Small
Outline="true"
@onclick="ToggleAudioRecording"
class=@($"audio-btn {(IsRecording ? "recording" : "")}")
title="@(IsRecording ? "توقف ضبط" : "ضبط صدا")">
Size=ButtonSize.Small
Outline="true"
@onclick="ToggleAudioRecording"
class=@($"audio-btn {(IsRecording ? "recording" : "")}")
title="@(IsRecording ? "توقف ضبط" : "ضبط صدا")">
@if (IsRecording)
{
<Icon Name="IconName.StopCircle" Class="recording-pulse" />
@@ -338,6 +338,7 @@
<Button Color="ButtonColor.Danger" Size=ButtonSize.ExtraSmall Outline="true" @onclick="ClearRecordedAudio">حذف صدا</Button>
</div>
}
<!-- Recording Status -->
@if (IsRecording)
{
@@ -349,17 +350,18 @@
</div>
}
</div>
}
</div>
</div>
</div>
@code {
Common.Dtos.CurrentUserInfo CurrentUser { get; set; }
List<Read_GroupDto> _Group = new List<Read_GroupDto>();
//-------------------------------------