mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 00:42:41 +01:00
[Redesign] Use status icons in Maniphest task list
Summary: Ref T8099, Fixes T8339. This lets us pull in the status icon and display in lists and object headers. Test Plan: Look at a list of open and closed tasks, see icons match state (duplicate, spite, defaults). Reviewers: epriestley, btrahan Reviewed By: btrahan Subscribers: epriestley, Korvin Maniphest Tasks: T8099, T8339 Differential Revision: https://secure.phabricator.com/D13490
This commit is contained in:
parent
09d392fdbb
commit
f2f168cceb
2 changed files with 5 additions and 6 deletions
|
@ -174,7 +174,7 @@ final class ManiphestTaskStatus extends ManiphestConstants {
|
|||
}
|
||||
|
||||
if (self::isOpenStatus($status)) {
|
||||
return 'fa-square-o';
|
||||
return 'fa-exclamation-circle';
|
||||
} else {
|
||||
return 'fa-check-square-o';
|
||||
}
|
||||
|
|
|
@ -74,15 +74,14 @@ final class ManiphestTaskListView extends ManiphestView {
|
|||
$status_name = idx($status_map, $task->getStatus());
|
||||
$tooltip = pht('%s, %s', $status_name, $pri);
|
||||
|
||||
// TODO: redesign-2015 move icon map to maniphest.statuses
|
||||
$icon = 'fa-exclamation-circle ';
|
||||
$icon .= idx($color_map, $task->getPriority(), 'grey');
|
||||
$icon = ManiphestTaskStatus::getStatusIcon($task->getStatus());
|
||||
$color = idx($color_map, $task->getPriority(), 'grey');
|
||||
if ($task->isClosed()) {
|
||||
$item->setDisabled(true);
|
||||
$icon = 'fa-check-square-o grey';
|
||||
$color = 'grey';
|
||||
}
|
||||
|
||||
$item->setStatusIcon($icon, $tooltip);
|
||||
$item->setStatusIcon($icon.' '.$color, $tooltip);
|
||||
|
||||
$item->addIcon(
|
||||
'none',
|
||||
|
|
Loading…
Reference in a new issue