This commit is contained in:
MeysamMoghaddam
2025-10-12 23:00:59 +03:30
parent 80e0f4172e
commit f69cdf4a05
2 changed files with 24 additions and 106 deletions

View File

@@ -28,13 +28,11 @@
<!-- Personal Information Tab -->
<MudTabPanel Text="اطلاعات شخصی" Icon="@Icons.Material.Filled.Person">
<div class="pa-4">
<MudText Typo="Typo.h6" Class="mb-4 mud-typography-subtitle1">اطلاعات شخصی</MudText>
<MudForm @ref="_personalForm" Model="_userProfile" Validation="@((Func<object, IEnumerable<FluentValidation.Results.ValidationFailure>>)((model) => _personalValidator.Validate((UserProfile)model).Errors))">
<MudGrid Spacing="3">
<MudItem xs="12" md="6">
<MudTextField @bind-Value="_userProfile.FirstName"
For="@(() => _userProfile.FirstName)"
<MudTextField @bind-Value="_updateUserRequest.FirstName"
For="@(() => _updateUserRequest.FirstName)"
Label="نام"
Variant="Variant.Outlined"
Required="true"
@@ -42,8 +40,8 @@
</MudItem>
<MudItem xs="12" md="6">
<MudTextField @bind-Value="_userProfile.LastName"
For="@(() => _userProfile.LastName)"
<MudTextField @bind-Value="_updateUserRequest.LastName"
For="@(() => _updateUserRequest.LastName)"
Label="نام خانوادگی"
Variant="Variant.Outlined"
Required="true"
@@ -51,18 +49,8 @@
</MudItem>
<MudItem xs="12" md="6">
<MudTextField @bind-Value="_userProfile.Mobile"
For="@(() => _userProfile.Mobile)"
Label="شماره موبایل"
Variant="Variant.Outlined"
InputType="InputType.Text"
Required="true"
RequiredError="وارد کردن شماره موبایل الزامی است." />
</MudItem>
<MudItem xs="12" md="6">
<MudTextField @bind-Value="_userProfile.NationalCode"
For="@(() => _userProfile.NationalCode)"
<MudTextField @bind-Value="_updateUserRequest.NationalCode"
For="@(() => _updateUserRequest.NationalCode)"
Label="کد ملی"
Variant="Variant.Outlined"
InputType="InputType.Text" />
@@ -70,9 +58,6 @@
</MudGrid>
<MudStack Row="true" Spacing="2" Justify="Justify.FlexEnd" Class="mt-4">
<MudButton Variant="Variant.Outlined" Color="Color.Secondary" OnClick="CancelPersonalChanges">
لغو
</MudButton>
<MudButton Variant="Variant.Filled" Color="Color.Primary" OnClick="SavePersonalInfo" Disabled="_isPersonalSaving">
ذخیره تغییرات
</MudButton>
@@ -82,7 +67,7 @@
</MudTabPanel>
<!-- Account Settings Tab -->
<MudTabPanel Text="تنظیمات حساب" Icon="@Icons.Material.Filled.Settings">
@* <MudTabPanel Text="تنظیمات حساب" Icon="@Icons.Material.Filled.Settings">
<div class="pa-4">
<MudText Typo="Typo.h6" Class="mb-4 mud-typography-subtitle1">تنظیمات حساب</MudText>
@@ -136,7 +121,7 @@
</MudStack>
</MudStack>
</div>
</MudTabPanel>
</MudTabPanel> *@
<!-- Statistics Tab -->
@* <MudTabPanel Text="آمار و اطلاعات" Icon="@Icons.Material.Filled.BarChart">

View File

@@ -2,6 +2,7 @@ using FluentValidation;
using FrontOffice.BFF.Package.Protobuf.Protos.Package;
using FrontOffice.BFF.User.Protobuf.Protos.User;
using FrontOffice.Main.Utilities;
using Mapster;
using Microsoft.AspNetCore.Components;
using MudBlazor;
using System.ComponentModel.DataAnnotations;
@@ -14,18 +15,14 @@ public partial class Index
[Inject] private UserContract.UserContractClient UserContract { get; set; } = default!;
private GetUserResponse _userProfile = new();
private PasswordChangeModel _passwordModel = new();
private AccountSettings _settings = new();
private UpdateUserRequest _updateUserRequest = new();
private MudForm? _personalForm;
private MudForm? _passwordForm;
private bool _isPersonalSaving;
private bool _isPasswordChanging;
private bool _isSettingsSaving;
private readonly UserProfileValidator _personalValidator = new();
private readonly PasswordChangeValidator _passwordValidator = new();
protected override async Task OnAfterRenderAsync(bool firstRender)
{
@@ -40,22 +37,23 @@ public partial class Index
private async Task LoadUserProfile()
{
_userProfile = await UserContract.GetUserAsync(request: new());
_updateUserRequest = _userProfile.Adapt<UpdateUserRequest>();
StateHasChanged();
}
private async Task LoadAccountSettings()
{
// TODO: Load settings from API
_settings = new AccountSettings
{
EmailNotifications = true,
SmsNotifications = true,
PushNotifications = false,
ProfileVisibility = true,
ShowOnlineStatus = true,
Language = "fa",
Theme = "light"
};
//_settings = new AccountSettings
//{
// EmailNotifications = true,
// SmsNotifications = true,
// PushNotifications = false,
// ProfileVisibility = true,
// ShowOnlineStatus = true,
// Language = "fa",
// Theme = "light"
//};
}
private async Task SavePersonalInfo()
@@ -69,9 +67,8 @@ public partial class Index
try
{
// TODO: Save to API
await Task.Delay(1000); // Simulate API call
await UserContract.UpdateUserAsync(request: _updateUserRequest);
await LoadUserProfile();
Snackbar.Add("اطلاعات شخصی با موفقیت ذخیره شد.", Severity.Success);
}
catch (Exception ex)
@@ -91,45 +88,6 @@ public partial class Index
Snackbar.Add("تغییرات لغو شد.", Severity.Info);
}
private async Task ChangePassword()
{
if (_passwordForm is null) return;
await _passwordForm.Validate();
if (!_passwordForm.IsValid) return;
if (_passwordModel.NewPassword != _passwordModel.ConfirmPassword)
{
Snackbar.Add("رمز عبور جدید و تکرار آن مطابقت ندارند.", Severity.Warning);
return;
}
_isPasswordChanging = true;
try
{
// TODO: Change password via API
await Task.Delay(1000); // Simulate API call
Snackbar.Add("رمز عبور با موفقیت تغییر یافت.", Severity.Success);
_passwordModel = new PasswordChangeModel();
}
catch (Exception ex)
{
Snackbar.Add($"خطا در تغییر رمز عبور: {ex.Message}", Severity.Error);
}
finally
{
_isPasswordChanging = false;
await InvokeAsync(StateHasChanged);
}
}
private void CancelPasswordChange()
{
_passwordModel = new PasswordChangeModel();
Snackbar.Add("تغییر رمز عبور لغو شد.", Severity.Info);
}
private async Task SaveSettings()
{
@@ -184,21 +142,6 @@ public partial class Index
public int TotalReferrals { get; set; }
public string? Level { get; set; }
}
public class PasswordChangeModel
{
[Required(ErrorMessage = "رمز عبور فعلی الزامی است")]
public string? CurrentPassword { get; set; }
[Required(ErrorMessage = "رمز عبور جدید الزامی است")]
[MinLength(8, ErrorMessage = "رمز عبور باید حداقل ۸ کاراکتر باشد")]
public string? NewPassword { get; set; }
[Required(ErrorMessage = "تکرار رمز عبور الزامی است")]
[Compare(nameof(NewPassword), ErrorMessage = "رمز عبور و تکرار آن مطابقت ندارند")]
public string? ConfirmPassword { get; set; }
}
public class AccountSettings
{
public bool EmailNotifications { get; set; }
@@ -220,14 +163,4 @@ public partial class Index
RuleFor(x => x.PhoneNumber).NotEmpty().WithMessage("شماره موبایل الزامی است");
}
}
public class PasswordChangeValidator : AbstractValidator<PasswordChangeModel>
{
public PasswordChangeValidator()
{
RuleFor(x => x.CurrentPassword).NotEmpty().WithMessage("رمز عبور فعلی الزامی است");
RuleFor(x => x.NewPassword).NotEmpty().MinimumLength(8).WithMessage("رمز عبور جدید باید حداقل ۸ کاراکتر باشد");
RuleFor(x => x.ConfirmPassword).NotEmpty().WithMessage("تکرار رمز عبور الزامی است");
}
}
}