13
13
using System . Collections . Generic ;
14
14
using System . Linq ;
15
15
using System . Web . Mvc ;
16
+ using System . Web . UI ;
16
17
using React . Sample . Mvc4 . Models ;
17
18
using React . Sample . Mvc4 . ViewModels ;
18
19
@@ -36,20 +37,21 @@ public class IndexViewModel
36
37
{
37
38
public IEnumerable < CommentModel > Comments { get ; set ; }
38
39
public int CommentsPerPage { get ; set ; }
40
+ public int Page { get ; set ; }
39
41
}
40
42
}
41
43
42
44
namespace React . Sample . Mvc4 . Controllers
43
45
{
44
- public class HomeController : Controller
45
- {
46
- private const int COMMENTS_PER_PAGE = 3 ;
46
+ public class HomeController : Controller
47
+ {
48
+ private const int COMMENTS_PER_PAGE = 3 ;
47
49
48
- private readonly IDictionary < string , AuthorModel > _authors ;
50
+ private readonly IDictionary < string , AuthorModel > _authors ;
49
51
private readonly IList < CommentModel > _comments ;
50
52
51
- public HomeController ( )
52
- {
53
+ public HomeController ( )
54
+ {
53
55
// In reality, you would use a repository or something for fetching data
54
56
// For clarity, we'll just use a hard-coded list.
55
57
_authors = new Dictionary < string , AuthorModel >
@@ -60,36 +62,52 @@ public HomeController()
60
62
{ "jordwalke" , new AuthorModel { Name = "Jordan Walke" , GithubUsername = "jordwalke" } } ,
61
63
{ "zpao" , new AuthorModel { Name = "Paul O'Shannessy" , GithubUsername = "zpao" } } ,
62
64
} ;
63
- _comments = new List < CommentModel >
64
- {
65
+ _comments = new List < CommentModel >
66
+ {
65
67
new CommentModel { Author = _authors [ "daniel" ] , Text = "First!!!!111!" } ,
66
68
new CommentModel { Author = _authors [ "zpao" ] , Text = "React is awesome!" } ,
67
69
new CommentModel { Author = _authors [ "cpojer" ] , Text = "Awesome!" } ,
68
70
new CommentModel { Author = _authors [ "vjeux" ] , Text = "Hello World" } ,
69
71
new CommentModel { Author = _authors [ "daniel" ] , Text = "Foo" } ,
70
72
new CommentModel { Author = _authors [ "daniel" ] , Text = "Bar" } ,
71
73
new CommentModel { Author = _authors [ "daniel" ] , Text = "FooBarBaz" } ,
72
- } ;
73
- }
74
+ } ;
75
+ }
74
76
75
- public ActionResult Index ( )
76
- {
77
- return View ( new IndexViewModel
78
- {
79
- Comments = _comments . Take ( COMMENTS_PER_PAGE ) ,
80
- CommentsPerPage = COMMENTS_PER_PAGE
81
- } ) ;
82
- }
77
+ public ActionResult Index ( )
78
+ {
79
+ return View ( new IndexViewModel
80
+ {
81
+ Comments = _comments . Take ( COMMENTS_PER_PAGE ) ,
82
+ CommentsPerPage = COMMENTS_PER_PAGE ,
83
+ Page = 1
84
+ } ) ;
85
+ }
83
86
84
- public ActionResult Comments ( int page )
85
- {
86
- var comments = _comments . Skip ( ( page - 1 ) * COMMENTS_PER_PAGE ) . Take ( COMMENTS_PER_PAGE ) ;
87
+ [ OutputCache ( Duration = 0 , Location = OutputCacheLocation . Any , VaryByHeader = "Content-Type" ) ]
88
+ public ActionResult Comments ( int page )
89
+ {
90
+ Response . Cache . SetOmitVaryStar ( true ) ;
91
+ var comments = _comments . Skip ( ( page - 1 ) * COMMENTS_PER_PAGE ) . Take ( COMMENTS_PER_PAGE ) ;
87
92
var hasMore = page * COMMENTS_PER_PAGE < _comments . Count ;
88
93
89
- return Json ( new {
90
- comments = comments ,
91
- hasMore = hasMore
92
- } , JsonRequestBehavior . AllowGet ) ;
93
- }
94
- }
94
+ if ( ControllerContext . HttpContext . Request . ContentType == "application/json" )
95
+ {
96
+ return Json ( new
97
+ {
98
+ comments = comments ,
99
+ hasMore = hasMore
100
+ } , JsonRequestBehavior . AllowGet ) ;
101
+ }
102
+ else
103
+ {
104
+ return View ( "Index" , new IndexViewModel
105
+ {
106
+ Comments = _comments . Take ( COMMENTS_PER_PAGE * page ) ,
107
+ CommentsPerPage = COMMENTS_PER_PAGE ,
108
+ Page = page
109
+ } ) ;
110
+ }
111
+ }
112
+ }
95
113
}
0 commit comments