Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F462872
PhabricatorProjectPointsProfileMenuItem.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
3 KB
Referenced Files
None
Subscribers
None
PhabricatorProjectPointsProfileMenuItem.php
View Options
<?php
final
class
PhabricatorProjectPointsProfileMenuItem
extends
PhabricatorProfileMenuItem
{
const
MENUITEMKEY
=
'project.points'
;
public
function
getMenuItemTypeName
()
{
return
pht
(
'Project Points'
);
}
private
function
getDefaultName
()
{
return
pht
(
'Points Bar'
);
}
public
function
shouldEnableForObject
(
$object
)
{
$viewer
=
$this
->
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 installed.
$class
=
'PhabricatorManiphestApplication'
;
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
newNavigationMenuItems
(
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
->
newItem
()
->
appendChild
(
$bar
);
return
array
(
$item
,
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Mon, May 5, 6:35 PM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
72871
Default Alt Text
PhabricatorProjectPointsProfileMenuItem.php (3 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment