mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-13 10:22:42 +01:00
da52a27b42
Summary: Ref T8021, Calendar event detail view should show no time for all day events, and should show only one time field for one day events Test Plan: Open all-day event, event should show "Time" field with not start/end dates. Two day events should show start and end days, not times. Normal events should show old way of displaying start and end times. Reviewers: #blessed_reviewers, epriestley Reviewed By: #blessed_reviewers, epriestley Subscribers: Korvin, epriestley Maniphest Tasks: T8021 Differential Revision: https://secure.phabricator.com/D12768
275 lines
8.2 KiB
PHP
275 lines
8.2 KiB
PHP
<?php
|
|
|
|
final class PhabricatorCalendarEventViewController
|
|
extends PhabricatorCalendarController {
|
|
|
|
private $id;
|
|
|
|
public function shouldAllowPublic() {
|
|
return true;
|
|
}
|
|
|
|
public function willProcessRequest(array $data) {
|
|
$this->id = $data['id'];
|
|
}
|
|
|
|
public function processRequest() {
|
|
$request = $this->getRequest();
|
|
$viewer = $request->getUser();
|
|
|
|
$event = id(new PhabricatorCalendarEventQuery())
|
|
->setViewer($viewer)
|
|
->withIDs(array($this->id))
|
|
->executeOne();
|
|
if (!$event) {
|
|
return new Aphront404Response();
|
|
}
|
|
|
|
$title = 'E'.$event->getID();
|
|
$page_title = $title.' '.$event->getName();
|
|
$crumbs = $this->buildApplicationCrumbs();
|
|
$crumbs->addTextCrumb($title, '/E'.$event->getID());
|
|
|
|
$timeline = $this->buildTransactionTimeline(
|
|
$event,
|
|
new PhabricatorCalendarEventTransactionQuery());
|
|
|
|
$header = $this->buildHeaderView($event);
|
|
$actions = $this->buildActionView($event);
|
|
$properties = $this->buildPropertyView($event);
|
|
|
|
$properties->setActionList($actions);
|
|
$box = id(new PHUIObjectBoxView())
|
|
->setHeader($header)
|
|
->addPropertyList($properties);
|
|
|
|
$is_serious = PhabricatorEnv::getEnvConfig('phabricator.serious-business');
|
|
$add_comment_header = $is_serious
|
|
? pht('Add Comment')
|
|
: pht('Add To Plate');
|
|
$draft = PhabricatorDraft::newFromUserAndKey($viewer, $event->getPHID());
|
|
$add_comment_form = id(new PhabricatorApplicationTransactionCommentView())
|
|
->setUser($viewer)
|
|
->setObjectPHID($event->getPHID())
|
|
->setDraft($draft)
|
|
->setHeaderText($add_comment_header)
|
|
->setAction(
|
|
$this->getApplicationURI('/event/comment/'.$event->getID().'/'))
|
|
->setSubmitButtonName(pht('Add Comment'));
|
|
|
|
return $this->buildApplicationPage(
|
|
array(
|
|
$crumbs,
|
|
$box,
|
|
$timeline,
|
|
$add_comment_form,
|
|
),
|
|
array(
|
|
'title' => $page_title,
|
|
));
|
|
}
|
|
|
|
private function buildHeaderView(PhabricatorCalendarEvent $event) {
|
|
$viewer = $this->getRequest()->getUser();
|
|
$id = $event->getID();
|
|
|
|
$is_cancelled = $event->getIsCancelled();
|
|
$icon = $is_cancelled ? ('fa-times') : ('fa-calendar');
|
|
$color = $is_cancelled ? ('grey') : ('green');
|
|
$status = $is_cancelled ? pht('Cancelled') : pht('Active');
|
|
|
|
$invite_status = $event->getUserInviteStatus($viewer->getPHID());
|
|
$status_invited = PhabricatorCalendarEventInvitee::STATUS_INVITED;
|
|
$is_invite_pending = ($invite_status == $status_invited);
|
|
|
|
$header = id(new PHUIHeaderView())
|
|
->setUser($viewer)
|
|
->setHeader($event->getName())
|
|
->setStatus($icon, $color, $status)
|
|
->setPolicyObject($event);
|
|
|
|
if ($is_invite_pending) {
|
|
$decline_button = id(new PHUIButtonView())
|
|
->setTag('a')
|
|
->setIcon(id(new PHUIIconView())
|
|
->setIconFont('fa-times grey'))
|
|
->setHref($this->getApplicationURI("/event/decline/{$id}/"))
|
|
->setWorkflow(true)
|
|
->setText(pht('Decline'));
|
|
|
|
$accept_button = id(new PHUIButtonView())
|
|
->setTag('a')
|
|
->setIcon(id(new PHUIIconView())
|
|
->setIconFont('fa-check green'))
|
|
->setHref($this->getApplicationURI("/event/accept/{$id}/"))
|
|
->setWorkflow(true)
|
|
->setText(pht('Accept'));
|
|
|
|
$header->addActionLink($decline_button)
|
|
->addActionLink($accept_button);
|
|
}
|
|
return $header;
|
|
}
|
|
|
|
private function buildActionView(PhabricatorCalendarEvent $event) {
|
|
$viewer = $this->getRequest()->getUser();
|
|
$id = $event->getID();
|
|
$is_cancelled = $event->getIsCancelled();
|
|
$is_attending = $event->getIsUserAttending($viewer->getPHID());
|
|
|
|
$actions = id(new PhabricatorActionListView())
|
|
->setObjectURI($this->getApplicationURI('event/'.$id.'/'))
|
|
->setUser($viewer)
|
|
->setObject($event);
|
|
|
|
$can_edit = PhabricatorPolicyFilter::hasCapability(
|
|
$viewer,
|
|
$event,
|
|
PhabricatorPolicyCapability::CAN_EDIT);
|
|
|
|
$actions->addAction(
|
|
id(new PhabricatorActionView())
|
|
->setName(pht('Edit Event'))
|
|
->setIcon('fa-pencil')
|
|
->setHref($this->getApplicationURI("event/edit/{$id}/"))
|
|
->setDisabled(!$can_edit)
|
|
->setWorkflow(!$can_edit));
|
|
|
|
if ($is_attending) {
|
|
$actions->addAction(
|
|
id(new PhabricatorActionView())
|
|
->setName(pht('Decline Event'))
|
|
->setIcon('fa-user-times')
|
|
->setHref($this->getApplicationURI("event/join/{$id}/"))
|
|
->setWorkflow(true));
|
|
} else {
|
|
$actions->addAction(
|
|
id(new PhabricatorActionView())
|
|
->setName(pht('Join Event'))
|
|
->setIcon('fa-user-plus')
|
|
->setHref($this->getApplicationURI("event/join/{$id}/"))
|
|
->setWorkflow(true));
|
|
}
|
|
|
|
if ($is_cancelled) {
|
|
$actions->addAction(
|
|
id(new PhabricatorActionView())
|
|
->setName(pht('Reinstate Event'))
|
|
->setIcon('fa-plus')
|
|
->setHref($this->getApplicationURI("event/cancel/{$id}/"))
|
|
->setDisabled(!$can_edit)
|
|
->setWorkflow(true));
|
|
} else {
|
|
$actions->addAction(
|
|
id(new PhabricatorActionView())
|
|
->setName(pht('Cancel Event'))
|
|
->setIcon('fa-times')
|
|
->setHref($this->getApplicationURI("event/cancel/{$id}/"))
|
|
->setDisabled(!$can_edit)
|
|
->setWorkflow(true));
|
|
}
|
|
|
|
return $actions;
|
|
}
|
|
|
|
private function buildPropertyView(PhabricatorCalendarEvent $event) {
|
|
$viewer = $this->getRequest()->getUser();
|
|
|
|
$properties = id(new PHUIPropertyListView())
|
|
->setUser($viewer)
|
|
->setObject($event);
|
|
|
|
if ($event->getIsAllDay()) {
|
|
$date_start = phabricator_date($event->getDateFrom(), $viewer);
|
|
$date_end = phabricator_date($event->getDateTo(), $viewer);
|
|
|
|
if ($date_start == $date_end) {
|
|
$properties->addProperty(
|
|
pht('Time'),
|
|
phabricator_date($event->getDateFrom(), $viewer));
|
|
} else {
|
|
$properties->addProperty(
|
|
pht('Starts'),
|
|
phabricator_date($event->getDateFrom(), $viewer));
|
|
$properties->addProperty(
|
|
pht('Ends'),
|
|
phabricator_date($event->getDateTo(), $viewer));
|
|
}
|
|
} else {
|
|
$properties->addProperty(
|
|
pht('Starts'),
|
|
phabricator_datetime($event->getDateFrom(), $viewer));
|
|
|
|
$properties->addProperty(
|
|
pht('Ends'),
|
|
phabricator_datetime($event->getDateTo(), $viewer));
|
|
}
|
|
|
|
$properties->addProperty(
|
|
pht('Host'),
|
|
$viewer->renderHandle($event->getUserPHID()));
|
|
|
|
$invitees = $event->getInvitees();
|
|
foreach ($invitees as $key => $invitee) {
|
|
if ($invitee->isUninvited()) {
|
|
unset($invitees[$key]);
|
|
}
|
|
}
|
|
|
|
if ($invitees) {
|
|
$invitee_list = new PHUIStatusListView();
|
|
|
|
$icon_invited = PHUIStatusItemView::ICON_OPEN;
|
|
$icon_attending = PHUIStatusItemView::ICON_ACCEPT;
|
|
$icon_declined = PHUIStatusItemView::ICON_REJECT;
|
|
|
|
$status_invited = PhabricatorCalendarEventInvitee::STATUS_INVITED;
|
|
$status_attending = PhabricatorCalendarEventInvitee::STATUS_ATTENDING;
|
|
$status_declined = PhabricatorCalendarEventInvitee::STATUS_DECLINED;
|
|
|
|
$icon_map = array(
|
|
$status_invited => $icon_invited,
|
|
$status_attending => $icon_attending,
|
|
$status_declined => $icon_declined,
|
|
);
|
|
|
|
$icon_color_map = array(
|
|
$status_invited => null,
|
|
$status_attending => 'green',
|
|
$status_declined => 'red',
|
|
);
|
|
|
|
foreach ($invitees as $invitee) {
|
|
$item = new PHUIStatusItemView();
|
|
$invitee_phid = $invitee->getInviteePHID();
|
|
$status = $invitee->getStatus();
|
|
$target = $viewer->renderHandle($invitee_phid);
|
|
$icon = $icon_map[$status];
|
|
$icon_color = $icon_color_map[$status];
|
|
|
|
$item->setIcon($icon, $icon_color)
|
|
->setTarget($target);
|
|
$invitee_list->addItem($item);
|
|
}
|
|
} else {
|
|
$invitee_list = phutil_tag(
|
|
'em',
|
|
array(),
|
|
pht('None'));
|
|
}
|
|
|
|
$properties->addProperty(
|
|
pht('Invitees'),
|
|
$invitee_list);
|
|
|
|
$properties->invokeWillRenderEvent();
|
|
|
|
$properties->addSectionHeader(
|
|
pht('Description'),
|
|
PHUIPropertyListView::ICON_SUMMARY);
|
|
$properties->addTextContent($event->getDescription());
|
|
|
|
return $properties;
|
|
}
|
|
|
|
}
|