|
1 | 1 | var Observable = require("FuseJS/Observable")
|
2 | 2 | var DateTime = require("Lib/DateTime")
|
3 | 3 |
|
| 4 | +var viewNode = this |
4 | 5 | var date = Observable(DateTime.first(new Date()))
|
5 | 6 |
|
| 7 | +/** The parameter to this page contains the date we should be displaying. */ |
6 | 8 | this.Parameter.onValueChanged( function(value) {
|
7 | 9 | date.value = new Date(value.year, value.month,1)
|
8 | 10 | })
|
9 | 11 |
|
| 12 | +/** When a month is activated we set the bookmarks to the previous and next month. */ |
10 | 13 | exports.activated = function() {
|
11 | 14 | var p = new Date(date.value.valueOf())
|
12 | 15 | p.setMonth( p.getMonth() - 1)
|
13 | 16 | router.bookmark({
|
14 | 17 | name: "prevMonth",
|
| 18 | + relative: viewNode, |
15 | 19 | path: [ "month", { month: p.getMonth(), year: p.getFullYear() } ]
|
16 | 20 | })
|
17 | 21 |
|
18 | 22 | p = new Date(date.value.valueOf())
|
19 | 23 | p.setMonth( p.getMonth() + 1)
|
20 | 24 | router.bookmark({
|
21 | 25 | name: "nextMonth",
|
| 26 | + relative: viewNode, |
22 | 27 | path: [ "month", { month: p.getMonth(), year: p.getFullYear() } ]
|
23 | 28 | })
|
24 | 29 | }
|
25 | 30 |
|
| 31 | +/** A day from the previous/next month on the grid */ |
26 | 32 | function FillDay(day) {
|
27 | 33 | this.type = "fill"
|
28 | 34 | this.day = day
|
29 | 35 | }
|
30 | 36 |
|
| 37 | +/** A day from the current month */ |
31 | 38 | function Day(day) {
|
32 | 39 | this.type = "day"
|
33 | 40 | this.day = day
|
34 | 41 | this.dayOfMonth = day.getDate()
|
35 | 42 | }
|
36 | 43 |
|
37 |
| -//TODO: someway to do this with `.map` |
| 44 | +/** The `days` are filled with complete weeks worth of days to cover the current month. */ |
38 | 45 | exports.days = Observable()
|
39 | 46 | date.onValueChanged( function(v) {
|
40 | 47 | var first = DateTime.first(v)
|
@@ -74,5 +81,5 @@ exports.daysOfWeek = DateTime.dayLabels
|
74 | 81 |
|
75 | 82 | exports.openDay = function(args) {
|
76 | 83 | var day = args.data.day
|
77 |
| - router.push( "day", { month: day.getMonth(), year: day.getFullYear(), day: day.getDate() }) |
| 84 | + router.pushRelative( viewNode, "day", { month: day.getMonth(), year: day.getFullYear(), day: day.getDate() }) |
78 | 85 | }
|
0 commit comments