getViewer(); // Only render this element for milestones. if (!$object->isMilestone()) { return false; } // Don't show if points aren't configured. if (!ManiphestTaskPoints::getIsEnabled()) { return false; } // Points are only available if Maniphest is enabled. $class = PhabricatorManiphestApplication::class; if (!PhabricatorApplication::isClassInstalledForViewer($class, $viewer)) { return false; } return true; } public function getDisplayName( PhabricatorProfileMenuItemConfiguration $config) { return $this->getDefaultName(); } public function buildEditEngineFields( PhabricatorProfileMenuItemConfiguration $config) { return array( id(new PhabricatorInstructionsEditField()) ->setValue( pht( 'This is a progress bar which shows how many points of work '. 'are complete within the milestone. It has no configurable '. 'settings.')), ); } protected function newMenuItemViewList( PhabricatorProfileMenuItemConfiguration $config) { $viewer = $this->getViewer(); $project = $config->getProfileObject(); $limit = 250; $tasks = id(new ManiphestTaskQuery()) ->setViewer($viewer) ->withEdgeLogicPHIDs( PhabricatorProjectObjectHasProjectEdgeType::EDGECONST, PhabricatorQueryConstraint::OPERATOR_AND, array($project->getPHID())) ->setLimit($limit + 1) ->execute(); $error = array(); if (count($tasks) > $limit) { $error[] = pht( 'Too many tasks (%s).', new PhutilNumber($limit)); } if (!$tasks) { $error[] = pht('This milestone has no tasks.'); } $statuses = array(); $points_done = 0; $points_total = 0; $no_points = 0; foreach ($tasks as $task) { $points = $task->getPoints(); if ($points === null) { $no_points++; continue; } if (!$points) { continue; } $status = $task->getStatus(); if (empty($statuses[$status])) { $statuses[$status] = 0; } $statuses[$status] += $points; if (ManiphestTaskStatus::isClosedStatus($status)) { $points_done += $points; } $points_total += $points; } if ($no_points == count($tasks)) { $error[] = pht('No tasks have points assigned.'); } if (!$points_total) { $error[] = pht('No tasks have positive points.'); } $label = pht( '%s of %s %s', new PhutilNumber($points_done), new PhutilNumber($points_total), ManiphestTaskPoints::getPointsLabel()); $bar = id(new PHUISegmentBarView()) ->setLabel($label); $map = ManiphestTaskStatus::getTaskStatusMap(); $statuses = array_select_keys($statuses, array_keys($map)); foreach ($statuses as $status => $points) { if (!$points) { continue; } if (!ManiphestTaskStatus::isClosedStatus($status)) { continue; } $color = ManiphestTaskStatus::getStatusColor($status); if (!$color) { $color = 'sky'; } $tooltip = pht( '%s %s', new PhutilNumber($points), ManiphestTaskStatus::getTaskStatusName($status)); $bar->newSegment() ->setWidth($points / $points_total) ->setColor($color) ->setTooltip($tooltip); } if ($error) { $bar->setLabel(head($error)); } $bar = phutil_tag( 'div', array( 'class' => 'phui-profile-segment-bar', ), $bar); $item = $this->newItemView(); $item->newProgressBar($bar); return array( $item, ); } }