1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.hr.time.calendar;
17
18 import org.joda.time.DateTime;
19 import org.kuali.hr.time.service.base.TkServiceLocator;
20
21 import java.util.ArrayList;
22 import java.util.List;
23
24 public abstract class CalendarParent {
25 private List<CalendarWeek> weeks = new ArrayList<CalendarWeek>();
26 private CalendarEntries calendarEntry;
27 private DateTime beginDateTime;
28 private DateTime endDateTime;
29
30 public CalendarParent(CalendarEntries calendarEntry) {
31 this.calendarEntry = calendarEntry;
32 if (calendarEntry != null) {
33 this.beginDateTime = calendarEntry.getBeginLocalDateTime().toDateTime(TkServiceLocator.getTimezoneService().getUserTimezoneWithFallback());
34 this.endDateTime = calendarEntry.getEndLocalDateTime().toDateTime(TkServiceLocator.getTimezoneService().getUserTimezoneWithFallback());
35 }
36 }
37
38 protected CalendarParent() {
39 }
40
41
42 public DateTime getBeginDateTime() {
43 return beginDateTime;
44 }
45
46 public void setBeginDateTime(DateTime beginDateTime) {
47 this.beginDateTime = beginDateTime;
48 }
49
50 public DateTime getEndDateTime() {
51 return endDateTime;
52 }
53
54 public void setEndDateTime(DateTime endDateTime) {
55 this.endDateTime = endDateTime;
56 }
57
58 public CalendarEntries getCalendarEntry() {
59 return calendarEntry;
60 }
61
62 public void setCalendarEntry(CalendarEntries calendarEntry) {
63 this.calendarEntry = calendarEntry;
64 }
65
66 public List<CalendarWeek> getWeeks() {
67 return weeks;
68 }
69
70 public void setWeeks(List<CalendarWeek> weeks) {
71 this.weeks = weeks;
72 }
73
74
75
76
77
78
79
80
81 public String getCalendarTitle() {
82 StringBuilder sb = new StringBuilder();
83
84 if (getBeginDateTime().getMonthOfYear() == getEndDateTime().getMonthOfYear() ||
85 (getBeginDateTime().getMonthOfYear() != getEndDateTime().getMonthOfYear()
86 && getEndDateTime().getDayOfMonth() == 1 && getEndDateTime().getSecondOfDay() == 0)) {
87 sb.append(getBeginDateTime().toString("MMMM y"));
88 } else {
89 sb.append(getBeginDateTime().toString("MMM y"));
90 sb.append(" - ");
91 sb.append(getEndDateTime().toString("MMM y"));
92 }
93
94 return sb.toString();
95 }
96
97
98
99
100
101
102 public List<String> getCalendarDayHeadings() {
103 List<String> dayStrings = new ArrayList<String>(7);
104
105 int firstDay = 0 - getBeginDateTime().getDayOfWeek();
106 int lastDay = firstDay + 7;
107
108 if (getBeginDateTime().getMinuteOfDay() == 0) {
109
110 for (int i = firstDay; i < lastDay; i++) {
111 DateTime currDay = getBeginDateTime().plusDays(i);
112 dayStrings.add(currDay.toString("E"));
113 }
114 } else {
115
116 for (int i = firstDay; i < lastDay; i++) {
117 StringBuilder builder = new StringBuilder("");
118 DateTime currStart = getBeginDateTime().plusDays(i);
119 DateTime currEnd = getBeginDateTime().plusDays(i);
120
121 builder.append(currStart.toString("E HH:mm"));
122 builder.append(" - ");
123 builder.append(currEnd.toString("E HH:mm"));
124
125 dayStrings.add(builder.toString());
126 }
127 }
128
129 return dayStrings;
130 }
131
132 }