Files
FrontOffice/src/FrontOffice.Main/Pages/PackageDetail.razor
T
masoodafar-web 6db83ccd90
Build and Deploy to Kubernetes / build-and-deploy (push) Failing after 4m55s
feat: full FrontOffice updates - discount store, blog, payment gateway, UI improvements
- Discount store pages (products, cart, orders, order detail)
- Blog pages and services
- Payment gateway callback page
- AppImage component, EmptyState, LoadingState, PageHeader
- DiscountCartService, DiscountOrderService, DiscountProductService
- BlogCategoryService, BlogPostService, SitePageService, ImageCacheService
- PhoneVerifyForm component
- Profile Hub page
- UI/UX improvements across all pages
- landing.js for homepage
- Config and routing updates
2026-02-16 00:51:39 +03:30

246 lines
14 KiB
Plaintext

@attribute [Route(RouteConstants.Package.Detail + "{id:long}")]
<PageTitle>@(_package?.Title ?? "جزئیات پکیج")</PageTitle>
@if (_isLoading)
{
<MudContainer MaxWidth="MaxWidth.Large" Class="py-6">
<LoadingState Message="در حال بارگذاری..." />
</MudContainer>
}
else if (_package == null)
{
<MudContainer MaxWidth="MaxWidth.Large" Class="py-6">
<EmptyState Icon="@Icons.Material.Filled.Error"
Title="پکیج یافت نشد"
Description="پکیج مورد نظر وجود ندارد یا حذف شده است."
ActionText="بازگشت به صفحه اصلی"
ActionHref="@RouteConstants.Main.MainPage" />
</MudContainer>
}
else
{
<!-- Breadcrumb -->
<MudContainer MaxWidth="MaxWidth.Large" Class="py-4">
<PageHeader Title="جزئیات پکیج" BackHref="@RouteConstants.Package.List" />
<MudBreadcrumbs Items="_breadcrumbItems" />
</MudContainer>
<!-- Package Details -->
<MudContainer MaxWidth="MaxWidth.Large" Class="pb-8">
<MudGrid Spacing="4">
<!-- Sidebar (Mobile First) -->
<MudItem xs="12" lg="4" Class="order-1 order-lg-2">
<MudPaper Elevation="2" Class="pa-6 sticky-top">
<MudStack Class="mb-4">
<!-- Package Image -->
<MudPaper Class="pa-2 rounded-xl" Style="background: radial-gradient(600px 280px at 120% 0, #daccff 0, transparent 60%), radial-gradient(600px 280px at -10% 100%, #ffe2f2 0, transparent 60%), linear-gradient(180deg, #fff, #fbfaff);">
<AppImage Path="@_package.Image"
Alt="@_package.Title"
ImgHeight="250"
ObjectFit="ObjectFit.Cover"
ObjectPosition="ObjectPosition.Center"
Style="width:100%"
Class="rounded-xl" />
</MudPaper>
<MudText Typo="Typo.h4" Class="px-2">@(_package.Title)</MudText>
</MudStack>
<!-- Pricing -->
<MudStack Spacing="3">
@if (_package.Pricing.HasDiscount)
{
<div>
<MudStack Row="true" Spacing="2" AlignItems="AlignItems.Center">
<MudText Typo="Typo.h5" Class="text-decoration-line-through mud-text-secondary">@_package.Pricing.OriginalPrice.ToThousands().ToCurrencyUnitIRT()</MudText>
<MudChip T="string" Color="Color.Error" Variant="Variant.Filled" Size="Size.Small">@_package.Pricing.DiscountPercent% تخفیف</MudChip>
</MudStack>
<MudText Typo="Typo.h4" Color="Color.Success">@_package.Pricing.FinalPrice.ToThousands().ToCurrencyUnitIRT()</MudText>
</div>
}
else
{
<MudText Typo="Typo.h4" Color="Color.Primary">@_package.Pricing.FinalPrice.ToThousands().ToCurrencyUnitIRT()</MudText>
}
<!-- Purchase Button -->
<MudButton Variant="Variant.Filled"
Color="Color.Primary"
FullWidth="true"
Size="Size.Large"
OnClick="PurchasePackage"
Disabled="_isPurchasing">
@(_isPurchasing ? "در حال پردازش..." : "خرید پکیج")
</MudButton>
<!-- Package Features -->
<div>
<MudText Typo="Typo.subtitle2" Class="mb-2">شامل:</MudText>
<MudStack Spacing="1">
@foreach (var feature in _package.Features)
{
<MudStack Row="true" Spacing="2" AlignItems="AlignItems.Start">
<MudIcon Icon="@Icons.Material.Filled.Check" Size="Size.Small" Color="Color.Success" Class="mt-1" />
<MudText Typo="Typo.body2">@feature</MudText>
</MudStack>
}
</MudStack>
</div>
<!-- Support Info -->
<MudDivider Class="my-2" />
<MudStack Row="true" Spacing="2" AlignItems="AlignItems.Center">
<MudIcon Icon="@Icons.Material.Filled.Support" Size="Size.Small" Color="Color.Info" />
<MudText Typo="Typo.body2">پشتیبانی ۲۴ ساعته</MudText>
</MudStack>
</MudStack>
</MudPaper>
</MudItem>
<!-- Main Content -->
<MudItem xs="12" lg="8" Class="order-2 order-lg-1">
<MudPaper Elevation="2" Class="pa-6">
<!-- Package Header -->
<MudStack Spacing="4">
<!-- Package Description -->
<div>
<MudText Typo="Typo.h6" Class="mb-3">توضیحات پکیج</MudText>
@((MarkupString)_package.Body)
</div>
<!-- Package Specifications -->
<div>
<MudText Typo="Typo.h6" Class="mb-3">مشخصات پکیج</MudText>
<MudGrid Spacing="2">
@foreach (var spec in _package.Specifications)
{
<MudItem xs="12" sm="6">
<MudPaper Outlined="true" Class="pa-3 rounded-lg">
<MudStack Row="true" Spacing="2" AlignItems="AlignItems.Center">
<MudIcon Icon="@spec.Icon" Size="Size.Small" Color="Color.Primary" />
<div>
<MudText Typo="Typo.body2" >@spec.Name</MudText>
<MudText Typo="Typo.caption" Class="mud-text-secondary">@spec.Value</MudText>
</div>
</MudStack>
</MudPaper>
</MudItem>
}
</MudGrid>
</div>
</MudStack>
</MudPaper>
<!-- Reviews Section -->
<MudPaper Elevation="2" Class="pa-6 mt-4">
<!-- Comment Submission Form (only for authenticated users) -->
@if (_isAuthenticated)
{
<MudPaper Outlined="true" Class="pa-4 rounded-lg mb-4">
<MudStack Row="true" AlignItems="AlignItems.Center">
<MudText Typo="Typo.subtitle1" Class="mb-3">نظر خود را ثبت کنید</MudText>
<MudSpacer />
<MudRating @bind-Value="_newComment.Rating" Size="Size.Medium" />
</MudStack>
<MudStack Spacing="3">
<MudTextField @bind-Value="_newComment.Comment"
Label="نظر شما"
Variant="Variant.Outlined"
Lines="3"
Placeholder="نظر خود را درباره این پکیج بنویسید..." />
<MudStack AlignItems="AlignItems.Start">
<MudButton Variant="Variant.Filled"
Color="Color.Primary"
OnClick="SubmitComment"
Disabled="_isSubmittingComment"
StartIcon="@Icons.Material.Filled.Send">
@(_isSubmittingComment ? "در حال ارسال..." : "ارسال نظر")
</MudButton>
</MudStack>
</MudStack>
</MudPaper>
}
else
{
<MudPaper Outlined="true" Class="pa-4 rounded-lg mb-4">
<MudStack AlignItems="AlignItems.Center" Spacing="2">
<MudIcon Icon="@Icons.Material.Filled.Lock" Size="Size.Medium" Color="Color.Default" />
<MudText Typo="Typo.body2" Class="mud-text-secondary">
برای ثبت نظر ابتدا
<MudLink OnClick="OpenAuthDialog" Class="text-primary">وارد حساب کاربری</MudLink>
شوید.
</MudText>
</MudStack>
</MudPaper>
}
<MudText Typo="Typo.h6" Class="my-4">نظرات کاربران</MudText>
<!-- Reviews List -->
@if (_reviews.Any())
{
<MudStack Spacing="3">
@foreach (var review in _reviews)
{
<MudPaper Outlined="true" Class="pa-4 rounded-lg">
<MudStack Spacing="2">
<MudStack Row="true" Spacing="2" AlignItems="AlignItems.Center">
<MudAvatar Size="Size.Small">
<MudIcon Icon="@Icons.Material.Filled.Person" Size="Size.Small" />
</MudAvatar>
<div>
<MudText Typo="Typo.body2" >@(review.UserName)</MudText>
<MudRating ReadOnly="true" Value="@review.Rating" Size="Size.Small" />
</div>
<MudSpacer />
<MudText Typo="Typo.caption" Class="mud-text-secondary">@(review.Date)</MudText>
</MudStack>
<MudText Typo="Typo.body2">@(review.Comment)</MudText>
</MudStack>
</MudPaper>
}
</MudStack>
}
else
{
<MudStack AlignItems="AlignItems.Center" Class="py-8">
<MudIcon Icon="@Icons.Material.Filled.Chat" Size="Size.Large" Color="Color.Default" />
<MudText Typo="Typo.body2" Class="mud-text-secondary mt-2">هنوز نظری ثبت نشده است.</MudText>
</MudStack>
}
</MudPaper>
</MudItem>
</MudGrid>
</MudContainer>
<!-- Related Packages -->
@if (_relatedPackages.Any())
{
<section class="py-8 bg-grey-50">
<MudContainer MaxWidth="MaxWidth.Large">
<MudText Typo="Typo.h5" Align="Align.Center" Class="mb-6">پکیج‌های پیشنهادی</MudText>
<MudGrid Spacing="3" Justify="Justify.Center">
@foreach (var relatedPackage in _relatedPackages)
{
<MudItem xs="12" md="4">
<MudPaper Elevation="2" Class="pa-4 d-flex flex-column h-100 cursor-pointer"
OnClick="() => NavigateToPackage(relatedPackage.Id)">
<AppImage Path="@relatedPackage.Image"
Alt="@relatedPackage.Title"
ImgHeight="200"
ObjectFit="ObjectFit.Cover"
Class="rounded-xl mb-3" />
<MudText Typo="Typo.h6" Class="mb-2">@relatedPackage.Title</MudText>
<MudText Typo="Typo.body2" Class="mud-text-secondary mb-3 line-clamp-2">@relatedPackage.ShortDescription</MudText>
<MudSpacer />
<MudText Typo="Typo.h6" Color="Color.Primary">@relatedPackage.Pricing.FinalPrice.ToString("N0") تومان</MudText>
</MudPaper>
</MudItem>
}
</MudGrid>
</MudContainer>
</section>
}
}