Exemplo n.º 1
0
        private TagHomeVModel GetPostsForTag(int tagId, string bid,
                                             int pageNum, string order)
        {
            if (bid == null)
            {
                bid = blogId;
            }
            SeqTag tag = tagRep.GetTag(tagId, bid);
            //if (tag == null) return null;
            IQueryable <SeqPost> tagPosts = tagRep.PostsForTag(
                tag, order, pageSize, pageNum);

            TagHomeVModel thvm = new TagHomeVModel(tagId);

            thvm.Tag          = tag.Name;
            thvm.BlogId       = bid;
            thvm.RecentPosts  = VModelFactory.BlogPosts(tagPosts);
            thvm.Controller   = "Tag";
            thvm.CurrentPage  = pageNum;
            thvm.PageSize     = pageSize;
            thvm.HasMorePages = thvm.RecentPosts.Count() > 0;
            //thvm.News = VModelFactory.BlogPosts(catRep.RecentNews(5));
            //thvm.Books = VModelFactory.Books(bookRep.AllBooks());
            return(thvm);
        }
Exemplo n.º 2
0
        public ActionResult AjaxPostsForTag(int tagId, string bid, int pageNum,
                                            string order)
        {
            TagHomeVModel thvm = GetPostsForTag(tagId, bid, pageNum, order);

            //if (thvm == null) return PartialView("NoTagsFound");
            thvm.Action = "AjaxPostsForTag";
            return(PartialView(thvm));
        }
Exemplo n.º 3
0
        public ActionResult PostsForTag(int tagId, string bid, int pageNum,
                                        string order)
        {
            TagHomeVModel thvm = GetPostsForTag(tagId, bid, pageNum, order);

            if (thvm == null)
            {
                return(View("NoTagsFound"));
            }
            thvm.Action        = "PostsForTag";
            thvm.AllCategories = VModelFactory.AllCategories(
                catRep.AllCategories(bid), bid);
            return(View("PostsForTag", thvm));
        }