Try your search with a different keyword or use * as a wildcard.
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Routing;
using Nop.Plugin.Payments.PayPalCommerce.Domain;
using Nop.Plugin.Payments.PayPalCommerce.Factories;
using Nop.Plugin.Payments.PayPalCommerce.Models.Public;
using Nop.Plugin.Payments.PayPalCommerce.Services;
using Nop.Core.Http;
using Nop.Services.Catalog;
using Nop.Web.Framework.Components;
using Nop.Web.Framework.Infrastructure;
using Nop.Web.Models.Catalog;
namespace Nop.Plugin.Payments.PayPalCommerce.Components.Public;
///
/// Represents the view component to display PayPal buttons in the public store
///
public class ButtonsViewComponent : NopViewComponent
{
#region Fields
private readonly IProductService _productService;
private readonly PayPalCommerceModelFactory _modelFactory;
private readonly PayPalCommerceServiceManager _serviceManager;
private readonly PayPalCommerceSettings _settings;
#endregion
#region Ctor
public ButtonsViewComponent(IProductService productService,
PayPalCommerceModelFactory modelFactory,
PayPalCommerceServiceManager serviceManager,
PayPalCommerceSettings settings)
{
_productService = productService;
_modelFactory = modelFactory;
_serviceManager = serviceManager;
_settings = settings;
}
#endregion
#region Methods
///
/// Invoke view component
///
/// Widget zone name
/// Additional data
///
/// 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);
PaymentInfoModel model = null;
if (widgetZone.Equals(PublicWidgetZones.ProductDetailsAddInfo))
{
if (_settings.DisplayButtonsOnProductDetails)
{
var productId = additionalData is ProductDetailsModel.AddToCartModel product ? (int?)product.ProductId : null;
if (productId is null || (await _productService.GetProductByIdAsync(productId ?? 0))?.ParentGroupedProductId == 0)
model = await _modelFactory.PreparePaymentInfoModelAsync(ButtonPlacement.Product, productId);
}
}
else if (widgetZone.Equals(PublicWidgetZones.OrderSummaryContentBefore))
{
if (_settings.DisplayButtonsOnShoppingCart)
{
var routeName = HttpContext.GetEndpoint()?.Metadata.GetMetadata()?.RouteName;
if (routeName == NopRouteNames.General.CART)
model = await _modelFactory.PreparePaymentInfoModelAsync(ButtonPlacement.Cart);
}
}
else
{
if (_settings.DisplayButtonsOnPaymentMethod)
model = await _modelFactory.PreparePaymentInfoModelAsync(ButtonPlacement.PaymentMethod);
}
if (model?.Cart.IsRecurring is null)
return Content(string.Empty);
if (model.Cart.IsRecurring == true)
return View("~/Plugins/Payments.PayPalCommerce/Views/Public/_Buttons.Recurring.cshtml", model);
return View("~/Plugins/Payments.PayPalCommerce/Views/Public/_Buttons.cshtml", model);
}
#endregion
}