120 lines
7.2 KiB
Plaintext
120 lines
7.2 KiB
Plaintext
@using Indotalent.ConfigBackEnd.Extensions
|
|
@using Indotalent.Features.Pipeline.LeadActivity.Cqrs
|
|
@using Indotalent.Shared.Utils
|
|
@using MudBlazor
|
|
@inject LeadActivityService LeadActivityService
|
|
@inject ISnackbar Snackbar
|
|
|
|
<MudPaper Elevation="0" Square="true" Class="pa-6 mb-3 d-flex align-center gap-4" Style="border: 1px solid #DCEBFA;">
|
|
<MudIconButton Icon="@Icons.Material.Filled.ArrowBack" OnClick="() => OnCancel.InvokeAsync()" />
|
|
<div>
|
|
<MudText Typo="Typo.h5" Style="font-weight: 900; color: #1a1a1a;">@(ReadOnly ? "Activity Details" : "Edit Activity")</MudText>
|
|
<MudText Typo="Typo.body2" Style="color: #64748b;">@(ReadOnly ? "Viewing activity log." : "Modify activity details.")</MudText>
|
|
</div>
|
|
</MudPaper>
|
|
|
|
<MudPaper Elevation="0" Outlined="true" Class="pa-8" Style="border-radius: 0px; border: 1px solid #DCEBFA;">
|
|
<MudForm @ref="_form" Model="_model">
|
|
<MudGrid Spacing="3">
|
|
<MudItem xs="12"><MudText Typo="Typo.button" Color="Color.Primary" Style="font-weight: 800;">Basic Information</MudText><MudDivider /></MudItem>
|
|
|
|
<MudItem xs="12" sm="6">
|
|
<MudText Typo="Typo.subtitle2" Class="mb-1">Summary</MudText>
|
|
<MudTextField @bind-Value="_model.Summary" For="@(() => _model.Summary)" ReadOnly="ReadOnly" Variant="Variant.Outlined" Margin="Margin.Dense" FullWidth="true" />
|
|
</MudItem>
|
|
|
|
<MudItem xs="12" sm="6">
|
|
<MudText Typo="Typo.subtitle2" Class="mb-0">Lead</MudText>
|
|
<MudSelect T="string" @bind-Value="_model.LeadId" ReadOnly="ReadOnly" Variant="Variant.Outlined" Margin="Margin.Dense" Dense="true" FullWidth="true" AnchorOrigin="Origin.BottomCenter" TransformOrigin="Origin.TopCenter">
|
|
@foreach (var item in _lookup.Leads)
|
|
{
|
|
<MudSelectItem T="string" Value="@item.Id">@item.Name</MudSelectItem>
|
|
}
|
|
</MudSelect>
|
|
</MudItem>
|
|
|
|
<MudItem xs="12" sm="6">
|
|
<MudText Typo="Typo.subtitle2" Class="mb-0">Activity Type</MudText>
|
|
<MudSelect T="Indotalent.Data.Enums.LeadActivityType" @bind-Value="_model.Type" ReadOnly="ReadOnly" Variant="Variant.Outlined" Margin="Margin.Dense" Dense="true" FullWidth="true" AnchorOrigin="Origin.BottomCenter" TransformOrigin="Origin.TopCenter">
|
|
@foreach (var item in _lookup.ActivityTypes)
|
|
{
|
|
<MudSelectItem Value="@((Indotalent.Data.Enums.LeadActivityType)item.Value)">@item.Name</MudSelectItem>
|
|
}
|
|
</MudSelect>
|
|
</MudItem>
|
|
|
|
<MudItem xs="12">
|
|
<MudText Typo="Typo.subtitle2" Class="mb-1">Description</MudText>
|
|
<MudTextField @bind-Value="_model.Description" ReadOnly="ReadOnly" Variant="Variant.Outlined" Margin="Margin.Dense" Lines="2" FullWidth="true" />
|
|
</MudItem>
|
|
|
|
<MudItem xs="12" Class="mt-4"><MudText Typo="Typo.button" Color="Color.Primary" Style="font-weight: 800;">Schedule</MudText><MudDivider /></MudItem>
|
|
|
|
<MudItem xs="12" sm="6">
|
|
<MudText Typo="Typo.subtitle2" Class="mb-0">From Date</MudText>
|
|
<MudDatePicker @bind-Date="_model.FromDate" ReadOnly="ReadOnly" Variant="Variant.Outlined" Margin="Margin.Dense" />
|
|
</MudItem>
|
|
|
|
<MudItem xs="12" sm="6">
|
|
<MudText Typo="Typo.subtitle2" Class="mb-0">To Date</MudText>
|
|
<MudDatePicker @bind-Date="_model.ToDate" ReadOnly="ReadOnly" Variant="Variant.Outlined" Margin="Margin.Dense" />
|
|
</MudItem>
|
|
|
|
<MudItem xs="12" Class="mt-4"><MudText Typo="Typo.button" Color="Color.Primary" Style="font-weight: 800;">Audit History</MudText><MudDivider Class="mt-2 mb-4" /></MudItem>
|
|
<MudItem xs="12" sm="6"><MudText Typo="Typo.subtitle2">Created At</MudText><MudText Typo="Typo.body2" Style="font-weight: 600;">@DateTimeExtensions.ToString(_model.CreatedAt)</MudText></MudItem>
|
|
<MudItem xs="12" sm="6"><MudText Typo="Typo.subtitle2">Created By</MudText><MudText Typo="Typo.body2" Style="font-weight: 600;">@(!string.IsNullOrEmpty(_model.CreatedBy) ? _model.CreatedBy : "System")</MudText></MudItem>
|
|
<MudItem xs="12" sm="6"><MudText Typo="Typo.subtitle2">Last Updated At</MudText><MudText Typo="Typo.body2" Style="font-weight: 600;">@DateTimeExtensions.ToString(_model.UpdatedAt)</MudText></MudItem>
|
|
<MudItem xs="12" sm="6"><MudText Typo="Typo.subtitle2">Last Updated By</MudText><MudText Typo="Typo.body2" Style="font-weight: 600;">@(!string.IsNullOrEmpty(_model.UpdatedBy) ? _model.UpdatedBy : "System")</MudText></MudItem>
|
|
</MudGrid>
|
|
<div class="d-flex justify-end gap-2 mt-10">
|
|
<MudButton OnClick="() => OnCancel.InvokeAsync()" Variant="Variant.Outlined" Style="border-radius: 4px; border: 1px solid #e0e0e0; text-transform: none; font-weight: 700;">@(ReadOnly ? "Back to List" : "Cancel")</MudButton>
|
|
@if (!ReadOnly)
|
|
{
|
|
<MudButton Color="Color.Primary" Variant="Variant.Filled" OnClick="Submit" Disabled="_processing" Style="border-radius: 0px; font-weight: 700;">
|
|
@if (_processing)
|
|
{
|
|
<MudProgressCircular Size="Size.Small" Indeterminate="true" />
|
|
<MudText Class="ms-2" Typo="Typo.button" Style="text-transform: none !important;">Updating...</MudText>
|
|
}
|
|
else
|
|
{
|
|
<MudText>Save Changes</MudText>
|
|
}
|
|
</MudButton>
|
|
}
|
|
</div>
|
|
</MudForm>
|
|
</MudPaper>
|
|
|
|
@code {
|
|
[Parameter] public UpdateLeadActivityRequest Data { get; set; } = new();
|
|
[Parameter] public bool ReadOnly { get; set; } = false;
|
|
[Parameter] public EventCallback OnCancel { get; set; }
|
|
[Parameter] public EventCallback OnSuccess { get; set; }
|
|
private MudForm _form = default!;
|
|
private UpdateLeadActivityValidator _validator = new();
|
|
private UpdateLeadActivityRequest _model = new();
|
|
private LeadActivityLookupResponse _lookup = new();
|
|
private bool _processing = false;
|
|
protected override async Task OnInitializedAsync()
|
|
{
|
|
var res = await LeadActivityService.GetLeadActivityLookupAsync();
|
|
if (res != null && res.IsSuccess) _lookup = res.Value ?? new();
|
|
_model = new UpdateLeadActivityRequest
|
|
{
|
|
Id = Data.Id,
|
|
LeadId = Data.LeadId,
|
|
Summary = Data.Summary,
|
|
Description = Data.Description,
|
|
FromDate = Data.FromDate,
|
|
ToDate = Data.ToDate,
|
|
Type = Data.Type,
|
|
CreatedAt = Data.CreatedAt,
|
|
CreatedBy = Data.CreatedBy,
|
|
UpdatedAt = Data.UpdatedAt,
|
|
UpdatedBy = Data.UpdatedBy
|
|
};
|
|
StateHasChanged();
|
|
}
|
|
private async Task Submit() { await _form.Validate(); if (!_form.IsValid) return; _processing = true; try { var res = await LeadActivityService.UpdateLeadActivityAsync(_model); await Task.Delay(500); if (res != null && res.IsSuccess) { Snackbar.Add("Updated successfully", Severity.Success); await OnSuccess.InvokeAsync(); } } finally { _processing = false; } }
|
|
} |