Try your search with a different keyword or use * as a wildcard.
using Microsoft.AspNetCore.Mvc;
using Nop.Plugin.Payments.PayPalCommerce.Models.Admin;
using Nop.Plugin.Payments.PayPalCommerce.Services;
using Nop.Services.Common;
using Nop.Services.Shipping;
using Nop.Web.Areas.Admin.Models.Orders;
using Nop.Web.Framework.Components;
using Nop.Web.Framework.Infrastructure;
namespace Nop.Plugin.Payments.PayPalCommerce.Components.Admin;
///
/// Represents the view component to render an additional input on the shipment details page in the admin area
///
public class ShipmentCarrierViewComponent : NopViewComponent
{
#region Fields
private readonly IGenericAttributeService _genericAttributeService;
private readonly IShipmentService _shipmentService;
private readonly PayPalCommerceServiceManager _serviceManager;
private readonly PayPalCommerceSettings _settings;
#endregion
#region Ctor
public ShipmentCarrierViewComponent(IGenericAttributeService genericAttributeService,
IShipmentService shipmentService,
PayPalCommerceServiceManager serviceManager,
PayPalCommerceSettings settings)
{
_genericAttributeService = genericAttributeService;
_shipmentService = shipmentService;
_serviceManager = serviceManager;
_settings = settings;
}
#endregion
#region Methods
///
/// Invoke the widget view component
///
/// Widget zone
/// Additional parameters
///
/// A task that represents the asynchronous operation
/// The task result contains the view component result
///
public async Task InvokeAsync(string widgetZone, object additionalData)
{
var (active, _) = await _serviceManager.IsActiveAsync(_settings);
if (!active)
return Content(string.Empty);
if (!_settings.UseShipmentTracking)
return Content(string.Empty);
if (!widgetZone.Equals(AdminWidgetZones.OrderShipmentDetailsButtons) && !widgetZone.Equals(AdminWidgetZones.OrderShipmentAddButtons))
return Content(string.Empty);
if (additionalData is not ShipmentModel shipmentModel)
return Content(string.Empty);
var shipment = await _shipmentService.GetShipmentByIdAsync(shipmentModel.Id);
var model = new ShipmentCarrierModel
{
TrackingNumber = shipmentModel.TrackingNumber,
PayPalCommerceShipmentCarrier = shipment is not null
? await _genericAttributeService.GetAttributeAsync(shipment, PayPalCommerceDefaults.ShipmentCarrierAttribute)
: null
};
return View("~/Plugins/Payments.PayPalCommerce/Views/Admin/_ShipmentCarrier.cshtml", model);
}
#endregion
}