Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F2894783
PHUICalendarMonthView.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Advanced/Developer...
View Handle
View Hovercard
Size
15 KB
Referenced Files
None
Subscribers
None
PHUICalendarMonthView.php
View Options
<?php
final
class
PHUICalendarMonthView
extends
AphrontView
{
private
$rangeStart
;
private
$rangeEnd
;
private
$day
;
private
$month
;
private
$year
;
private
$events
=
array
(
)
;
private
$browseURI
;
private
$image
;
private
$error
;
public
function
setBrowseURI
(
$browse_uri
)
{
$this
->
browseURI
=
$browse_uri
;
return
$this
;
}
private
function
getBrowseURI
(
)
{
return
$this
->
browseURI
;
}
public
function
addEvent
(
AphrontCalendarEventView
$event
)
{
$this
->
events
[
]
=
$event
;
return
$this
;
}
public
function
setImage
(
$uri
)
{
$this
->
image
=
$uri
;
return
$this
;
}
public
function
setInfoView
(
PHUIInfoView
$error
)
{
$this
->
error
=
$error
;
return
$this
;
}
public
function
__construct
(
$range_start
,
$range_end
,
$month
,
$year
,
$day
=
null
)
{
$this
->
rangeStart
=
$range_start
;
$this
->
rangeEnd
=
$range_end
;
$this
->
day
=
$day
;
$this
->
month
=
$month
;
$this
->
year
=
$year
;
}
public
function
render
(
)
{
$viewer
=
$this
->
getViewer
(
)
;
Javelin
::
initBehavior
(
'calendar-month-view'
)
;
$events
=
msort
(
$this
->
events
,
'getEpochStart'
)
;
$days
=
$this
->
getDatesInMonth
(
)
;
$cell_lists
=
array
(
)
;
require_celerity_resource
(
'phui-calendar-month-css'
)
;
foreach
(
$days
as
$day
)
{
$day_number
=
$day
->
format
(
'j'
)
;
$weekday
=
$day
->
format
(
'w'
)
;
$day
->
setTime
(
0
,
0
,
0
)
;
$day_start_epoch
=
$day
->
format
(
'U'
)
;
$day_end_epoch
=
id
(
clone
$day
)
->
modify
(
'+1 day'
)
->
format
(
'U'
)
;
$list_events
=
array
(
)
;
$all_day_events
=
array
(
)
;
foreach
(
$events
as
$event
)
{
if
(
$event
->
getEpochStart
(
)
>=
$day_end_epoch
)
{
break
;
}
if
(
$event
->
getEpochStart
(
)
<
$day_end_epoch
&&
$event
->
getEpochEnd
(
)
>
$day_start_epoch
)
{
if
(
$event
->
getIsAllDay
(
)
)
{
$all_day_events
[
]
=
$event
;
}
else
{
$list_events
[
]
=
$event
;
}
}
}
$max_daily
=
15
;
$counter
=
0
;
$list
=
id
(
new
PHUICalendarListView
(
)
)
->
setViewer
(
$viewer
)
->
setView
(
'month'
)
;
foreach
(
$all_day_events
as
$item
)
{
if
(
$counter
<
$max_daily
)
{
$list
->
addEvent
(
$item
)
;
}
$counter
++
;
}
foreach
(
$list_events
as
$item
)
{
if
(
$counter
<
$max_daily
)
{
$list
->
addEvent
(
$item
)
;
}
$counter
++
;
}
$uri
=
$this
->
getBrowseURI
(
)
;
$uri
=
$uri
.
$day
->
format
(
'Y'
)
.
'/'
.
$day
->
format
(
'm'
)
.
'/'
.
$day
->
format
(
'd'
)
.
'/'
;
if
(
$counter
>
$max_daily
)
{
$list
->
setMoreLink
(
$uri
)
;
}
$day_id
=
$day
->
format
(
'Ymd'
)
;
$classes
=
array
(
)
;
if
(
$day
->
format
(
'm'
)
!=
$this
->
month
)
{
$classes
[
]
=
'phui-calendar-month-adjacent'
;
}
$classes
=
implode
(
' '
,
$classes
)
;
$cell_lists
[
$day_id
]
=
array
(
'dayID'
=>
$day_id
,
'list'
=>
$list
,
'date'
=>
$day
,
'dayURI'
=>
$uri
,
'count'
=>
count
(
$all_day_events
)
+
count
(
$list_events
)
,
'class'
=>
$classes
,
)
;
}
$rows
=
array
(
)
;
$cell_lists_by_week
=
array_chunk
(
$cell_lists
,
7
,
true
)
;
foreach
(
$cell_lists_by_week
as
$week_of_cell_lists
)
{
$cells
=
array
(
)
;
$action_map
=
array
(
)
;
foreach
(
$week_of_cell_lists
as
$day_id
=>
$cell_list
)
{
$cells
[
]
=
$this
->
getEventListCell
(
$cell_list
)
;
$action_map
[
$day_id
]
=
array
(
'dayURI'
=>
$cell_list
[
'dayURI'
]
,
)
;
}
$rows
[
]
=
javelin_tag
(
'tr'
,
array
(
'sigil'
=>
'calendar-week calendar-week-body'
,
'meta'
=>
array
(
'actionMap'
=>
$action_map
,
)
,
)
,
$cells
)
;
$cells
=
array
(
)
;
foreach
(
$week_of_cell_lists
as
$day_id
=>
$cell_list
)
{
$cells
[
]
=
$this
->
getDayNumberCell
(
$cell_list
)
;
}
$rows
[
]
=
javelin_tag
(
'tr'
,
array
(
'sigil'
=>
'calendar-week calendar-week-foot'
,
)
,
$cells
)
;
}
$header
=
$this
->
getDayNamesHeader
(
)
;
$table
=
phutil_tag
(
'table'
,
array
(
'class'
=>
'phui-calendar-view'
)
,
array
(
$header
,
$rows
,
)
)
;
$warnings
=
$this
->
getQueryRangeWarning
(
)
;
$box
=
id
(
new
PHUIObjectBoxView
(
)
)
->
setHeader
(
$this
->
renderCalendarHeader
(
$this
->
getDateTime
(
)
)
)
->
appendChild
(
$table
)
->
setFormErrors
(
$warnings
)
->
addClass
(
'phui-calendar-box'
)
;
if
(
$this
->
error
)
{
$box
->
setInfoView
(
$this
->
error
)
;
}
return
$box
;
}
private
function
getEventListCell
(
$event_list
)
{
$list
=
$event_list
[
'list'
]
;
$class
=
$event_list
[
'class'
]
;
$count
=
$event_list
[
'count'
]
;
$viewer_is_invited
=
$list
->
getIsViewerInvitedOnList
(
)
;
$event_count_badge
=
$this
->
getEventCountBadge
(
$count
,
$viewer_is_invited
)
;
$cell_content
=
phutil_tag
(
'div'
,
array
(
'class'
=>
'phui-calendar-month-cell-div'
,
)
,
array
(
$event_count_badge
,
$list
,
)
)
;
$cell_meta
=
array
(
'dayID'
=>
$event_list
[
'dayID'
]
,
)
;
$classes
=
array
(
)
;
$classes
[
]
=
'phui-calendar-month-event-list'
;
$classes
[
]
=
'phui-calendar-month-day'
;
$classes
[
]
=
$event_list
[
'class'
]
;
$classes
=
implode
(
' '
,
$classes
)
;
return
javelin_tag
(
'td'
,
array
(
'class'
=>
$classes
,
'meta'
=>
$cell_meta
,
)
,
$cell_content
)
;
}
private
function
getDayNumberCell
(
$event_list
)
{
$class
=
$event_list
[
'class'
]
;
$date
=
$event_list
[
'date'
]
;
$week_number
=
null
;
if
(
$date
)
{
$cell_day
=
phutil_tag
(
'a'
,
array
(
'class'
=>
'phui-calendar-date-number'
,
'href'
=>
$event_list
[
'dayURI'
]
,
)
,
$date
->
format
(
'j'
)
)
;
if
(
$date
->
format
(
'w'
)
==
1
)
{
$week_number
=
phutil_tag
(
'a'
,
array
(
'class'
=>
'phui-calendar-week-number'
,
'href'
=>
$event_list
[
'dayURI'
]
,
)
,
$date
->
format
(
'W'
)
)
;
}
}
else
{
$cell_day
=
null
;
}
$today_class
=
'phui-calendar-today-slot'
;
$last_week_day
=
6
;
if
(
$date
->
format
(
'w'
)
==
$last_week_day
)
{
$today_class
.=
' last-weekday'
;
}
$today_slot
=
phutil_tag
(
'div'
,
array
(
'class'
=>
$today_class
,
)
,
null
)
;
$cell_div
=
phutil_tag
(
'div'
,
array
(
'class'
=>
'phui-calendar-month-cell-div'
,
)
,
array
(
$week_number
,
$cell_day
,
$today_slot
,
)
)
;
$classes
=
array
(
)
;
$classes
[
]
=
'phui-calendar-month-number'
;
$classes
[
]
=
$event_list
[
'class'
]
;
if
(
$date
)
{
if
(
$this
->
isDateInCurrentWeek
(
$date
)
)
{
$classes
[
]
=
'phui-calendar-this-week'
;
}
if
(
$date
->
format
(
'j'
)
==
$this
->
day
)
{
if
(
$date
->
format
(
'm'
)
==
$this
->
month
)
{
$classes
[
]
=
'phui-calendar-today'
;
}
}
}
$cell_meta
=
array
(
'dayID'
=>
$event_list
[
'dayID'
]
,
)
;
return
javelin_tag
(
'td'
,
array
(
'class'
=>
implode
(
' '
,
$classes
)
,
'meta'
=>
$cell_meta
,
)
,
$cell_div
)
;
}
private
function
isDateInCurrentWeek
(
$date
)
{
list
(
$week_start_date
,
$week_end_date
)
=
$this
->
getThisWeekRange
(
)
;
if
(
$date
->
format
(
'U'
)
<
$week_end_date
->
format
(
'U'
)
&&
$date
->
format
(
'U'
)
>=
$week_start_date
->
format
(
'U'
)
)
{
return
true
;
}
return
false
;
}
private
function
getEventCountBadge
(
$count
,
$viewer_is_invited
)
{
$class
=
'phui-calendar-month-count-badge'
;
if
(
$viewer_is_invited
)
{
$class
=
$class
.
' viewer-invited-day-badge'
;
}
$event_count
=
null
;
if
(
$count
>
0
)
{
$event_count
=
phutil_tag
(
'div'
,
array
(
'class'
=>
$class
,
)
,
$count
)
;
}
return
phutil_tag
(
'div'
,
array
(
'class'
=>
'phui-calendar-month-event-count'
,
)
,
$event_count
)
;
}
private
function
getDayNamesHeader
(
)
{
list
(
$week_start
,
$week_end
)
=
$this
->
getWeekStartAndEnd
(
)
;
$weekday_names
=
array
(
$this
->
getDayHeader
(
pht
(
'Sun'
)
,
pht
(
'Sunday'
)
,
true
)
,
$this
->
getDayHeader
(
pht
(
'Mon'
)
,
pht
(
'Monday'
)
)
,
$this
->
getDayHeader
(
pht
(
'Tue'
)
,
pht
(
'Tuesday'
)
)
,
$this
->
getDayHeader
(
pht
(
'Wed'
)
,
pht
(
'Wednesday'
)
)
,
$this
->
getDayHeader
(
pht
(
'Thu'
)
,
pht
(
'Thursday'
)
)
,
$this
->
getDayHeader
(
pht
(
'Fri'
)
,
pht
(
'Friday'
)
)
,
$this
->
getDayHeader
(
pht
(
'Sat'
)
,
pht
(
'Saturday'
)
,
true
)
,
)
;
$sorted_weekday_names
=
array
(
)
;
for
(
$i
=
$week_start
;
$i
<
(
$week_start
+
7
)
;
$i
++
)
{
$sorted_weekday_names
[
]
=
$weekday_names
[
$i
%
7
]
;
}
return
phutil_tag
(
'tr'
,
array
(
'class'
=>
'phui-calendar-day-of-week-header'
)
,
$sorted_weekday_names
)
;
}
private
function
getDayHeader
(
$short
,
$long
,
$is_weekend
=
false
)
{
$class
=
null
;
if
(
$is_weekend
)
{
$class
=
'weekend-day-header'
;
}
$day
=
array
(
)
;
$day
[
]
=
phutil_tag
(
'span'
,
array
(
'class'
=>
'long-weekday-name'
,
)
,
$long
)
;
$day
[
]
=
phutil_tag
(
'span'
,
array
(
'class'
=>
'short-weekday-name'
,
)
,
$short
)
;
return
phutil_tag
(
'th'
,
array
(
'class'
=>
$class
,
)
,
$day
)
;
}
private
function
renderCalendarHeader
(
DateTime
$date
)
{
$button_bar
=
null
;
// check for a browseURI, which means we need "fancy" prev / next UI
$uri
=
$this
->
getBrowseURI
(
)
;
if
(
$uri
)
{
list
(
$prev_year
,
$prev_month
)
=
$this
->
getPrevYearAndMonth
(
)
;
$prev_uri
=
$uri
.
$prev_year
.
'/'
.
$prev_month
.
'/'
;
list
(
$next_year
,
$next_month
)
=
$this
->
getNextYearAndMonth
(
)
;
$next_uri
=
$uri
.
$next_year
.
'/'
.
$next_month
.
'/'
;
$button_bar
=
new
PHUIButtonBarView
(
)
;
$left_icon
=
id
(
new
PHUIIconView
(
)
)
->
setIcon
(
'fa-chevron-left bluegrey'
)
;
$left
=
id
(
new
PHUIButtonView
(
)
)
->
setTag
(
'a'
)
->
setColor
(
PHUIButtonView
::
GREY
)
->
setHref
(
$prev_uri
)
->
setTitle
(
pht
(
'Previous Month'
)
)
->
setIcon
(
$left_icon
)
;
$right_icon
=
id
(
new
PHUIIconView
(
)
)
->
setIcon
(
'fa-chevron-right bluegrey'
)
;
$right
=
id
(
new
PHUIButtonView
(
)
)
->
setTag
(
'a'
)
->
setColor
(
PHUIButtonView
::
GREY
)
->
setHref
(
$next_uri
)
->
setTitle
(
pht
(
'Next Month'
)
)
->
setIcon
(
$right_icon
)
;
$button_bar
->
addButton
(
$left
)
;
$button_bar
->
addButton
(
$right
)
;
}
$header
=
id
(
new
PHUIHeaderView
(
)
)
;
if
(
$button_bar
)
{
$header
->
setButtonBar
(
$button_bar
)
;
}
if
(
$this
->
image
)
{
$header
->
setImage
(
$this
->
image
)
;
}
return
$header
;
}
private
function
getQueryRangeWarning
(
)
{
$errors
=
array
(
)
;
$range_start_epoch
=
null
;
$range_end_epoch
=
null
;
if
(
$this
->
rangeStart
)
{
$range_start_epoch
=
$this
->
rangeStart
->
getEpoch
(
)
;
}
if
(
$this
->
rangeEnd
)
{
$range_end_epoch
=
$this
->
rangeEnd
->
getEpoch
(
)
;
}
$month_start
=
$this
->
getDateTime
(
)
;
$month_end
=
id
(
clone
$month_start
)
->
modify
(
'+1 month'
)
;
$month_start
=
$month_start
->
format
(
'U'
)
;
$month_end
=
$month_end
->
format
(
'U'
)
-
1
;
if
(
(
$range_start_epoch
!=
null
&&
$range_start_epoch
<
$month_end
&&
$range_start_epoch
>
$month_start
)
||
(
$range_end_epoch
!=
null
&&
$range_end_epoch
<
$month_end
&&
$range_end_epoch
>
$month_start
)
)
{
$errors
[
]
=
pht
(
'Part of the month is out of range'
)
;
}
if
(
(
$range_end_epoch
!=
null
&&
$range_end_epoch
<
$month_start
)
||
(
$range_start_epoch
!=
null
&&
$range_start_epoch
>
$month_end
)
)
{
$errors
[
]
=
pht
(
'Month is out of query range'
)
;
}
return
$errors
;
}
private
function
getNextYearAndMonth
(
)
{
$next
=
$this
->
getDateTime
(
)
;
$next
->
modify
(
'+1 month'
)
;
return
array
(
$next
->
format
(
'Y'
)
,
$next
->
format
(
'm'
)
,
)
;
}
private
function
getPrevYearAndMonth
(
)
{
$prev
=
$this
->
getDateTime
(
)
;
$prev
->
modify
(
'-1 month'
)
;
return
array
(
$prev
->
format
(
'Y'
)
,
$prev
->
format
(
'm'
)
,
)
;
}
/**
* Return a DateTime object representing the first moment in each day in the
* month, according to the user's locale.
*
* @return list List of DateTimes, one for each day.
*/
private
function
getDatesInMonth
(
)
{
$viewer
=
$this
->
getViewer
(
)
;
$timezone
=
new
DateTimeZone
(
$viewer
->
getTimezoneIdentifier
(
)
)
;
$month
=
$this
->
month
;
$year
=
$this
->
year
;
list
(
$next_year
,
$next_month
)
=
$this
->
getNextYearAndMonth
(
)
;
$end_date
=
new
DateTime
(
"{$next_year}-{$next_month}-01"
,
$timezone
)
;
list
(
$start_of_week
,
$end_of_week
)
=
$this
->
getWeekStartAndEnd
(
)
;
$days_in_month
=
id
(
clone
$end_date
)
->
modify
(
'-1 day'
)
->
format
(
'd'
)
;
$first_month_day_date
=
new
DateTime
(
"{$year}-{$month}-01"
,
$timezone
)
;
$last_month_day_date
=
id
(
clone
$end_date
)
->
modify
(
'-1 day'
)
;
$first_weekday_of_month
=
$first_month_day_date
->
format
(
'w'
)
;
$last_weekday_of_month
=
$last_month_day_date
->
format
(
'w'
)
;
$day_date
=
id
(
clone
$first_month_day_date
)
;
$num_days_display
=
$days_in_month
;
if
(
$start_of_week
!==
$first_weekday_of_month
)
{
$interim_start_num
=
(
$first_weekday_of_month
+
7
-
$start_of_week
)
%
7
;
$num_days_display
+=
$interim_start_num
;
$day_date
->
modify
(
'-'
.
$interim_start_num
.
' days'
)
;
}
if
(
$end_of_week
!==
$last_weekday_of_month
)
{
$interim_end_day_num
=
(
$end_of_week
-
$last_weekday_of_month
+
7
)
%
7
;
$num_days_display
+=
$interim_end_day_num
;
$end_date
->
modify
(
'+'
.
$interim_end_day_num
.
' days'
)
;
}
$days
=
array
(
)
;
for
(
$day
=
1
;
$day
<=
$num_days_display
;
$day
++
)
{
$day_epoch
=
$day_date
->
format
(
'U'
)
;
$end_epoch
=
$end_date
->
format
(
'U'
)
;
if
(
$day_epoch
>=
$end_epoch
)
{
break
;
}
else
{
$days
[
]
=
clone
$day_date
;
}
$day_date
->
modify
(
'+1 day'
)
;
}
return
$days
;
}
private
function
getTodayMidnight
(
)
{
$viewer
=
$this
->
getUser
(
)
;
$today
=
new
DateTime
(
'@'
.
time
(
)
)
;
$today
->
setTimezone
(
$viewer
->
getTimeZone
(
)
)
;
$today
->
setTime
(
0
,
0
,
0
)
;
return
$today
;
}
private
function
getThisWeekRange
(
)
{
list
(
$week_start
,
$week_end
)
=
$this
->
getWeekStartAndEnd
(
)
;
$today
=
$this
->
getTodayMidnight
(
)
;
$date_weekday
=
$today
->
format
(
'w'
)
;
$days_from_week_start
=
(
$date_weekday
+
7
-
$week_start
)
%
7
;
$days_to_week_end
=
7
-
$days_from_week_start
;
$modify
=
'-'
.
$days_from_week_start
.
' days'
;
$week_start_date
=
id
(
clone
$today
)
->
modify
(
$modify
)
;
$modify
=
'+'
.
$days_to_week_end
.
' days'
;
$week_end_date
=
id
(
clone
$today
)
->
modify
(
$modify
)
;
return
array
(
$week_start_date
,
$week_end_date
)
;
}
private
function
getWeekStartAndEnd
(
)
{
$viewer
=
$this
->
getViewer
(
)
;
$week_key
=
PhabricatorWeekStartDaySetting
::
SETTINGKEY
;
$week_start
=
$viewer
->
getUserSetting
(
$week_key
)
;
$week_end
=
(
$week_start
+
6
)
%
7
;
return
array
(
$week_start
,
$week_end
)
;
}
private
function
getDateTime
(
)
{
$user
=
$this
->
getViewer
(
)
;
$timezone
=
new
DateTimeZone
(
$user
->
getTimezoneIdentifier
(
)
)
;
$month
=
$this
->
month
;
$year
=
$this
->
year
;
$date
=
new
DateTime
(
"{$year}-{$month}-01 "
,
$timezone
)
;
return
$date
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sun, Jan 19, 20:28 (1 w, 5 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1119680
Default Alt Text
PHUICalendarMonthView.php (15 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment