26 lines
842 B
C#
26 lines
842 B
C#
using Microsoft.AspNetCore.Mvc;
|
|
using Nop.Services.Forums;
|
|
using Nop.Web.Factories;
|
|
using Nop.Web.Framework.Components;
|
|
|
|
namespace Nop.Web.Components;
|
|
|
|
public partial class ForumLastPostViewComponent : NopViewComponent
|
|
{
|
|
protected readonly IForumModelFactory _forumModelFactory;
|
|
protected readonly IForumService _forumService;
|
|
|
|
public ForumLastPostViewComponent(IForumModelFactory forumModelFactory, IForumService forumService)
|
|
{
|
|
_forumModelFactory = forumModelFactory;
|
|
_forumService = forumService;
|
|
}
|
|
|
|
public async Task<IViewComponentResult> InvokeAsync(int forumPostId, bool showTopic)
|
|
{
|
|
var forumPost = await _forumService.GetPostByIdAsync(forumPostId);
|
|
var model = await _forumModelFactory.PrepareLastPostModelAsync(forumPost, showTopic);
|
|
|
|
return View(model);
|
|
}
|
|
} |