1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2025-04-03 16:08:19 +02:00

Update all existing ProfileMenuItems for the more-structured API

Summary:
Depends on D20357. Ref T13275. Now that there's a stronger layer between "stuff in the database" and "stuff on the screen", these subclasses all need to emit intermediate objects instead of raw, HTML-producing view objects.

This update is mostly mechanical.

Test Plan:
  - Viewed Home, Favorites, Portals, User Profiles, Project Profiles.
  - Clicked each item on each menu/profile type.
  - Added every (I think?) type of item to a menu and clicked them all.
  - Grepped for obsolete symbols (`newNavigationMenuItems`, `willBuildNavigationItems`).

Reviewers: amckinley

Reviewed By: amckinley

Maniphest Tasks: T13275

Differential Revision: https://secure.phabricator.com/D20358
This commit is contained in:
epriestley 2019-03-31 12:07:05 -07:00
parent 950e9d085b
commit 5192ae4750
29 changed files with 233 additions and 212 deletions

View file

@ -49,7 +49,7 @@ final class PhabricatorDashboardPortalMenuItem
); );
} }
protected function newNavigationMenuItems( protected function newMenuItemViewList(
PhabricatorProfileMenuItemConfiguration $config) { PhabricatorProfileMenuItemConfiguration $config) {
$viewer = $this->getViewer(); $viewer = $this->getViewer();
@ -57,12 +57,12 @@ final class PhabricatorDashboardPortalMenuItem
return array(); return array();
} }
$href = $this->getItemViewURI($config); $uri = $this->getItemViewURI($config);
$name = $this->getDisplayName($config); $name = $this->getDisplayName($config);
$icon = 'fa-pencil'; $icon = 'fa-pencil';
$item = $this->newItem() $item = $this->newItemView()
->setHref($href) ->setURI($uri)
->setName($name) ->setName($name)
->setIcon($icon); ->setIcon($icon);

View file

@ -49,16 +49,16 @@ final class PhabricatorHomeLauncherProfileMenuItem
); );
} }
protected function newNavigationMenuItems( protected function newMenuItemViewList(
PhabricatorProfileMenuItemConfiguration $config) { PhabricatorProfileMenuItemConfiguration $config) {
$viewer = $this->getViewer(); $viewer = $this->getViewer();
$name = $this->getDisplayName($config); $name = $this->getDisplayName($config);
$icon = 'fa-ellipsis-h'; $icon = 'fa-ellipsis-h';
$href = '/applications/'; $uri = '/applications/';
$item = $this->newItem() $item = $this->newItemView()
->setHref($href) ->setURI($uri)
->setName($name) ->setName($name)
->setIcon($icon); ->setIcon($icon);

View file

@ -52,16 +52,16 @@ final class PhabricatorHomeProfileMenuItem
); );
} }
protected function newNavigationMenuItems( protected function newMenuItemViewList(
PhabricatorProfileMenuItemConfiguration $config) { PhabricatorProfileMenuItemConfiguration $config) {
$viewer = $this->getViewer(); $viewer = $this->getViewer();
$name = $this->getDisplayName($config); $name = $this->getDisplayName($config);
$icon = 'fa-home'; $icon = 'fa-home';
$href = $this->getItemViewURI($config); $uri = $this->getItemViewURI($config);
$item = $this->newItem() $item = $this->newItemView()
->setHref($href) ->setURI($uri)
->setName($name) ->setName($name)
->setIcon($icon); ->setIcon($icon);

View file

@ -40,14 +40,14 @@ final class PhabricatorPeopleBadgesProfileMenuItem
); );
} }
protected function newNavigationMenuItems( protected function newMenuItemViewList(
PhabricatorProfileMenuItemConfiguration $config) { PhabricatorProfileMenuItemConfiguration $config) {
$user = $config->getProfileObject(); $user = $config->getProfileObject();
$id = $user->getID(); $id = $user->getID();
$item = $this->newItem() $item = $this->newItemView()
->setHref("/people/badges/{$id}/") ->setURI("/people/badges/{$id}/")
->setName($this->getDisplayName($config)) ->setName($this->getDisplayName($config))
->setIcon('fa-trophy'); ->setIcon('fa-trophy');

View file

@ -40,14 +40,14 @@ final class PhabricatorPeopleCommitsProfileMenuItem
); );
} }
protected function newNavigationMenuItems( protected function newMenuItemViewList(
PhabricatorProfileMenuItemConfiguration $config) { PhabricatorProfileMenuItemConfiguration $config) {
$user = $config->getProfileObject(); $user = $config->getProfileObject();
$id = $user->getID(); $id = $user->getID();
$item = $this->newItem() $item = $this->newItemView()
->setHref("/people/commits/{$id}/") ->setURI("/people/commits/{$id}/")
->setName($this->getDisplayName($config)) ->setName($this->getDisplayName($config))
->setIcon('fa-code'); ->setIcon('fa-code');

View file

@ -35,16 +35,16 @@ final class PhabricatorPeopleDetailsProfileMenuItem
); );
} }
protected function newNavigationMenuItems( protected function newMenuItemViewList(
PhabricatorProfileMenuItemConfiguration $config) { PhabricatorProfileMenuItemConfiguration $config) {
$user = $config->getProfileObject(); $user = $config->getProfileObject();
$href = urisprintf( $uri = urisprintf(
'/p/%s/', '/p/%s/',
$user->getUsername()); $user->getUsername());
$item = $this->newItem() $item = $this->newItemView()
->setHref($href) ->setURI($uri)
->setName(pht('Profile')) ->setName(pht('Profile'))
->setIcon('fa-user'); ->setIcon('fa-user');

View file

@ -40,14 +40,14 @@ final class PhabricatorPeopleManageProfileMenuItem
); );
} }
protected function newNavigationMenuItems( protected function newMenuItemViewList(
PhabricatorProfileMenuItemConfiguration $config) { PhabricatorProfileMenuItemConfiguration $config) {
$user = $config->getProfileObject(); $user = $config->getProfileObject();
$id = $user->getID(); $id = $user->getID();
$item = $this->newItem() $item = $this->newItemView()
->setHref("/people/manage/{$id}/") ->setURI("/people/manage/{$id}/")
->setName($this->getDisplayName($config)) ->setName($this->getDisplayName($config))
->setIcon('fa-gears'); ->setIcon('fa-gears');

View file

@ -28,52 +28,18 @@ final class PhabricatorPeoplePictureProfileMenuItem
return array(); return array();
} }
protected function newNavigationMenuItems( protected function newMenuItemViewList(
PhabricatorProfileMenuItemConfiguration $config) { PhabricatorProfileMenuItemConfiguration $config) {
$user = $config->getProfileObject(); $user = $config->getProfileObject();
require_celerity_resource('people-picture-menu-item-css');
$picture = $user->getProfileImageURI(); $picture = $user->getProfileImageURI();
$name = $user->getUsername(); $name = $user->getUsername();
$classes = array(); $item = $this->newItemView()
$classes[] = 'people-menu-image'; ->setDisabled($user->getIsDisabled());
if ($user->getIsDisabled()) {
$classes[] = 'phui-image-disabled';
}
$href = urisprintf( $item->newProfileImage($picture);
'/p/%s/',
$user->getUsername());
$photo = phutil_tag(
'img',
array(
'src' => $picture,
'class' => implode(' ', $classes),
));
$can_edit = PhabricatorPolicyFilter::hasCapability(
$this->getViewer(),
$user,
PhabricatorPolicyCapability::CAN_EDIT);
if ($can_edit) {
$id = $user->getID();
$href = "/people/picture/{$id}/";
}
$view = phutil_tag_div('people-menu-image-container', $photo);
$view = phutil_tag(
'a',
array(
'href' => $href,
),
$view);
$item = $this->newItem()
->appendChild($view);
return array( return array(
$item, $item,

View file

@ -40,14 +40,14 @@ final class PhabricatorPeopleRevisionsProfileMenuItem
); );
} }
protected function newNavigationMenuItems( protected function newMenuItemViewList(
PhabricatorProfileMenuItemConfiguration $config) { PhabricatorProfileMenuItemConfiguration $config) {
$user = $config->getProfileObject(); $user = $config->getProfileObject();
$id = $user->getID(); $id = $user->getID();
$item = $this->newItem() $item = $this->newItemView()
->setHref("/people/revisions/{$id}/") ->setURI("/people/revisions/{$id}/")
->setName($this->getDisplayName($config)) ->setName($this->getDisplayName($config))
->setIcon('fa-gear'); ->setIcon('fa-gear');

View file

@ -40,14 +40,14 @@ final class PhabricatorPeopleTasksProfileMenuItem
); );
} }
protected function newNavigationMenuItems( protected function newMenuItemViewList(
PhabricatorProfileMenuItemConfiguration $config) { PhabricatorProfileMenuItemConfiguration $config) {
$user = $config->getProfileObject(); $user = $config->getProfileObject();
$id = $user->getID(); $id = $user->getID();
$item = $this->newItem() $item = $this->newItemView()
->setHref("/people/tasks/{$id}/") ->setURI("/people/tasks/{$id}/")
->setName($this->getDisplayName($config)) ->setName($this->getDisplayName($config))
->setIcon('fa-anchor'); ->setIcon('fa-anchor');

View file

@ -49,7 +49,7 @@ final class PhabricatorProjectDetailsProfileMenuItem
); );
} }
protected function newNavigationMenuItems( protected function newMenuItemViewList(
PhabricatorProfileMenuItemConfiguration $config) { PhabricatorProfileMenuItemConfiguration $config) {
$project = $config->getProfileObject(); $project = $config->getProfileObject();
@ -58,10 +58,10 @@ final class PhabricatorProjectDetailsProfileMenuItem
$name = $project->getName(); $name = $project->getName();
$icon = $project->getDisplayIconIcon(); $icon = $project->getDisplayIconIcon();
$href = "/project/profile/{$id}/"; $uri = "/project/profile/{$id}/";
$item = $this->newItem() $item = $this->newItemView()
->setHref($href) ->setURI($uri)
->setName($name) ->setName($name)
->setIcon($icon); ->setIcon($icon);

View file

@ -49,7 +49,7 @@ final class PhabricatorProjectManageProfileMenuItem
); );
} }
protected function newNavigationMenuItems( protected function newMenuItemViewList(
PhabricatorProfileMenuItemConfiguration $config) { PhabricatorProfileMenuItemConfiguration $config) {
$project = $config->getProfileObject(); $project = $config->getProfileObject();
@ -58,10 +58,10 @@ final class PhabricatorProjectManageProfileMenuItem
$name = $this->getDisplayName($config); $name = $this->getDisplayName($config);
$icon = 'fa-gears'; $icon = 'fa-gears';
$href = "/project/manage/{$id}/"; $uri = "/project/manage/{$id}/";
$item = $this->newItem() $item = $this->newItemView()
->setHref($href) ->setURI($uri)
->setName($name) ->setName($name)
->setIcon($icon); ->setIcon($icon);

View file

@ -39,7 +39,7 @@ final class PhabricatorProjectMembersProfileMenuItem
); );
} }
protected function newNavigationMenuItems( protected function newMenuItemViewList(
PhabricatorProfileMenuItemConfiguration $config) { PhabricatorProfileMenuItemConfiguration $config) {
$project = $config->getProfileObject(); $project = $config->getProfileObject();
@ -48,10 +48,10 @@ final class PhabricatorProjectMembersProfileMenuItem
$name = $this->getDisplayName($config); $name = $this->getDisplayName($config);
$icon = 'fa-group'; $icon = 'fa-group';
$href = "/project/members/{$id}/"; $uri = "/project/members/{$id}/";
$item = $this->newItem() $item = $this->newItemView()
->setHref($href) ->setURI($uri)
->setName($name) ->setName($name)
->setIcon($icon); ->setIcon($icon);

View file

@ -32,38 +32,16 @@ final class PhabricatorProjectPictureProfileMenuItem
return array(); return array();
} }
protected function newNavigationMenuItems( protected function newMenuItemViewList(
PhabricatorProfileMenuItemConfiguration $config) { PhabricatorProfileMenuItemConfiguration $config) {
$project = $config->getProfileObject(); $project = $config->getProfileObject();
require_celerity_resource('people-picture-menu-item-css');
$picture = $project->getProfileImageURI(); $picture = $project->getProfileImageURI();
$href = $project->getProfileURI();
$classes = array(); $item = $this->newItemView()
$classes[] = 'people-menu-image'; ->setDisabled($project->isArchived());
if ($project->isArchived()) {
$classes[] = 'phui-image-disabled';
}
$photo = phutil_tag( $item->newProfileImage($picture);
'img',
array(
'src' => $picture,
'class' => implode(' ', $classes),
));
$view = phutil_tag_div('people-menu-image-container', $photo);
$view = phutil_tag(
'a',
array(
'href' => $href,
),
$view);
$item = $this->newItem()
->appendChild($view);
return array( return array(
$item, $item,

View file

@ -52,7 +52,7 @@ final class PhabricatorProjectPointsProfileMenuItem
); );
} }
protected function newNavigationMenuItems( protected function newMenuItemViewList(
PhabricatorProfileMenuItemConfiguration $config) { PhabricatorProfileMenuItemConfiguration $config) {
$viewer = $this->getViewer(); $viewer = $this->getViewer();
$project = $config->getProfileObject(); $project = $config->getProfileObject();
@ -165,8 +165,8 @@ final class PhabricatorProjectPointsProfileMenuItem
), ),
$bar); $bar);
$item = $this->newItem() $item = $this->newItemView()
->appendChild($bar); ->newProgressBar($bar);
return array( return array(
$item, $item,

View file

@ -47,7 +47,7 @@ final class PhabricatorProjectSubprojectsProfileMenuItem
); );
} }
protected function newNavigationMenuItems( protected function newMenuItemViewList(
PhabricatorProfileMenuItemConfiguration $config) { PhabricatorProfileMenuItemConfiguration $config) {
$project = $config->getProfileObject(); $project = $config->getProfileObject();
@ -55,10 +55,10 @@ final class PhabricatorProjectSubprojectsProfileMenuItem
$name = $this->getDisplayName($config); $name = $this->getDisplayName($config);
$icon = 'fa-sitemap'; $icon = 'fa-sitemap';
$href = "/project/subprojects/{$id}/"; $uri = "/project/subprojects/{$id}/";
$item = $this->newItem() $item = $this->newItemView()
->setHref($href) ->setURI($uri)
->setName($name) ->setName($name)
->setIcon($icon); ->setIcon($icon);

View file

@ -56,16 +56,16 @@ final class PhabricatorProjectWorkboardProfileMenuItem
); );
} }
protected function newNavigationMenuItems( protected function newMenuItemViewList(
PhabricatorProfileMenuItemConfiguration $config) { PhabricatorProfileMenuItemConfiguration $config) {
$project = $config->getProfileObject(); $project = $config->getProfileObject();
$id = $project->getID(); $id = $project->getID();
$href = $project->getWorkboardURI(); $uri = $project->getWorkboardURI();
$name = $this->getDisplayName($config); $name = $this->getDisplayName($config);
$item = $this->newItem() $item = $this->newItemView()
->setHref($href) ->setURI($uri)
->setName($name) ->setName($name)
->setIcon('fa-columns'); ->setIcon('fa-columns');

View file

@ -7,6 +7,7 @@ final class PhabricatorProfileMenuItemView
private $uri; private $uri;
private $name; private $name;
private $icon; private $icon;
private $iconImage;
private $disabled; private $disabled;
private $tooltip; private $tooltip;
private $actions = array(); private $actions = array();
@ -53,6 +54,15 @@ final class PhabricatorProfileMenuItemView
return $this->icon; return $this->icon;
} }
public function setIconImage($icon_image) {
$this->iconImage = $icon_image;
return $this;
}
public function getIconImage() {
return $this->iconImage;
}
public function setDisabled($disabled) { public function setDisabled($disabled) {
$this->disabled = $disabled; $this->disabled = $disabled;
return $this; return $this;
@ -146,6 +156,11 @@ final class PhabricatorProfileMenuItemView
$view->setIcon($icon); $view->setIcon($icon);
} }
$icon_image = $this->getIconImage();
if ($icon_image) {
$view->setProfileImage($icon_image);
}
if ($this->getDisabled()) { if ($this->getDisabled()) {
$view->setDisabled(true); $view->setDisabled(true);
} }
@ -160,6 +175,11 @@ final class PhabricatorProfileMenuItemView
->addClass('phui-divider'); ->addClass('phui-divider');
} }
$tooltip = $this->getTooltip();
if (strlen($tooltip)) {
$view->setTooltip($tooltip);
}
if ($this->images) { if ($this->images) {
require_celerity_resource('people-picture-menu-item-css'); require_celerity_resource('people-picture-menu-item-css');
foreach ($this->images as $image_src) { foreach ($this->images as $image_src) {

View file

@ -68,7 +68,7 @@ final class PhabricatorApplicationProfileMenuItem
return head($apps); return head($apps);
} }
protected function newNavigationMenuItems( protected function newMenuItemViewList(
PhabricatorProfileMenuItemConfiguration $config) { PhabricatorProfileMenuItemConfiguration $config) {
$viewer = $this->getViewer(); $viewer = $this->getViewer();
$app = $this->getApplication($config); $app = $this->getApplication($config);
@ -83,8 +83,8 @@ final class PhabricatorApplicationProfileMenuItem
return array(); return array();
} }
$item = $this->newItem() $item = $this->newItemView()
->setHref($app->getApplicationURI()) ->setURI($app->getApplicationURI())
->setName($this->getDisplayName($config)) ->setName($this->getDisplayName($config))
->setIcon($app->getIcon()); ->setIcon($app->getIcon());

View file

@ -41,7 +41,7 @@ final class PhabricatorConpherenceProfileMenuItem
return $conpherence; return $conpherence;
} }
public function willBuildNavigationItems(array $items) { public function willGetMenuItemViewList(array $items) {
$viewer = $this->getViewer(); $viewer = $this->getViewer();
$room_phids = array(); $room_phids = array();
foreach ($items as $item) { foreach ($items as $item) {
@ -98,7 +98,7 @@ final class PhabricatorConpherenceProfileMenuItem
return $config->getMenuItemProperty('name'); return $config->getMenuItemProperty('name');
} }
protected function newNavigationMenuItems( protected function newMenuItemViewList(
PhabricatorProfileMenuItemConfiguration $config) { PhabricatorProfileMenuItemConfiguration $config) {
$viewer = $this->getViewer(); $viewer = $this->getViewer();
$room = $this->getConpherence($config); $room = $this->getConpherence($config);
@ -114,21 +114,14 @@ final class PhabricatorConpherenceProfileMenuItem
$unread_count = $data['unread_count']; $unread_count = $data['unread_count'];
} }
$count = null; $item = $this->newItemView()
if ($unread_count) { ->setURI('/'.$room->getMonogram())
$count = phutil_tag(
'span',
array(
'class' => 'phui-list-item-count',
),
$unread_count);
}
$item = $this->newItem()
->setHref('/'.$room->getMonogram())
->setName($this->getDisplayName($config)) ->setName($this->getDisplayName($config))
->setIcon('fa-comments') ->setIcon('fa-comments');
->appendChild($count);
if ($unread_count) {
$item->newCount($unread_count);
}
return array( return array(
$item, $item,

View file

@ -8,6 +8,7 @@ final class PhabricatorDashboardProfileMenuItem
const FIELD_DASHBOARD = 'dashboardPHID'; const FIELD_DASHBOARD = 'dashboardPHID';
private $dashboard; private $dashboard;
private $dashboardHandle;
public function getMenuItemTypeIcon() { public function getMenuItemTypeIcon() {
return 'fa-dashboard'; return 'fa-dashboard';
@ -26,21 +27,13 @@ final class PhabricatorDashboardProfileMenuItem
return true; return true;
} }
public function attachDashboard($dashboard) { private function attachDashboard(PhabricatorDashboard $dashboard = null) {
$this->dashboard = $dashboard; $this->dashboard = $dashboard;
return $this; return $this;
} }
public function getDashboard() { private function getDashboard() {
$dashboard = $this->dashboard; return $this->dashboard;
if (!$dashboard) {
return null;
} else if ($dashboard->isArchived()) {
return null;
}
return $dashboard;
} }
public function newPageContent( public function newPageContent(
@ -56,7 +49,15 @@ final class PhabricatorDashboardProfileMenuItem
->needPanels(true) ->needPanels(true)
->executeOne(); ->executeOne();
if (!$dashboard) { if (!$dashboard) {
return null; return $this->newEmptyView(
pht('Invalid Dashboard'),
pht('This dashboard is invalid and could not be loaded.'));
}
if ($dashboard->isArchived()) {
return $this->newEmptyView(
pht('Archived Dashboard'),
pht('This dashboard has been archived.'));
} }
$engine = id(new PhabricatorDashboardRenderingEngine()) $engine = id(new PhabricatorDashboardRenderingEngine())
@ -66,7 +67,7 @@ final class PhabricatorDashboardProfileMenuItem
return $engine->renderDashboard(); return $engine->renderDashboard();
} }
public function willBuildNavigationItems(array $items) { public function willGetMenuItemViewList(array $items) {
$viewer = $this->getViewer(); $viewer = $this->getViewer();
$dashboard_phids = array(); $dashboard_phids = array();
foreach ($items as $item) { foreach ($items as $item) {
@ -78,11 +79,18 @@ final class PhabricatorDashboardProfileMenuItem
->withPHIDs($dashboard_phids) ->withPHIDs($dashboard_phids)
->execute(); ->execute();
$handles = $viewer->loadHandles($dashboard_phids);
$dashboards = mpull($dashboards, null, 'getPHID'); $dashboards = mpull($dashboards, null, 'getPHID');
foreach ($items as $item) { foreach ($items as $item) {
$dashboard_phid = $item->getMenuItemProperty('dashboardPHID'); $dashboard_phid = $item->getMenuItemProperty('dashboardPHID');
$dashboard = idx($dashboards, $dashboard_phid, null); $dashboard = idx($dashboards, $dashboard_phid, null);
$item->getMenuItem()->attachDashboard($dashboard);
$menu_item = $item->getMenuItem();
$menu_item
->attachDashboard($dashboard)
->setDashboardHandle($handles[$dashboard_phid]);
} }
} }
@ -91,7 +99,15 @@ final class PhabricatorDashboardProfileMenuItem
$dashboard = $this->getDashboard(); $dashboard = $this->getDashboard();
if (!$dashboard) { if (!$dashboard) {
return pht('(Restricted/Invalid Dashboard)'); if ($this->getDashboardHandle()->getPolicyFiltered()) {
return pht('Restricted Dashboard');
} else {
return pht('Invalid Dashboard');
}
}
if ($dashboard->isArchived()) {
return pht('Archived Dashboard');
} }
if (strlen($this->getName($config))) { if (strlen($this->getName($config))) {
@ -122,24 +138,43 @@ final class PhabricatorDashboardProfileMenuItem
return $config->getMenuItemProperty('name'); return $config->getMenuItemProperty('name');
} }
protected function newNavigationMenuItems( protected function newMenuItemViewList(
PhabricatorProfileMenuItemConfiguration $config) { PhabricatorProfileMenuItemConfiguration $config) {
$is_disabled = true;
$action_uri = null;
$dashboard = $this->getDashboard(); $dashboard = $this->getDashboard();
if (!$dashboard) { if ($dashboard) {
return array(); if ($dashboard->isArchived()) {
$icon = 'fa-ban';
$name = $this->getDisplayName($config);
} else {
$icon = $dashboard->getIcon();
$name = $this->getDisplayName($config);
$is_disabled = false;
$action_uri = '/dashboard/arrange/'.$dashboard->getID().'/';
}
} else {
$icon = 'fa-ban';
if ($this->getDashboardHandle()->getPolicyFiltered()) {
$name = pht('Restricted Dashboard');
} else {
$name = pht('Invalid Dashboard');
}
} }
$icon = $dashboard->getIcon(); $uri = $this->getItemViewURI($config);
$name = $this->getDisplayName($config);
$href = $this->getItemViewURI($config);
$action_href = '/dashboard/arrange/'.$dashboard->getID().'/';
$item = $this->newItem() $item = $this->newItemView()
->setHref($href) ->setURI($uri)
->setName($name) ->setName($name)
->setIcon($icon) ->setIcon($icon)
->setActionIcon('fa-pencil', $action_href); ->setDisabled($is_disabled);
if ($action_uri) {
$item->newAction($action_uri);
}
return array( return array(
$item, $item,
@ -191,4 +226,13 @@ final class PhabricatorDashboardProfileMenuItem
return $errors; return $errors;
} }
private function getDashboardHandle() {
return $this->dashboardHandle;
}
private function setDashboardHandle(PhabricatorObjectHandle $handle) {
$this->dashboardHandle = $handle;
return $this;
}
} }

View file

@ -34,12 +34,11 @@ final class PhabricatorDividerProfileMenuItem
); );
} }
protected function newNavigationMenuItems( protected function newMenuItemViewList(
PhabricatorProfileMenuItemConfiguration $config) { PhabricatorProfileMenuItemConfiguration $config) {
$item = $this->newItem() $item = $this->newItemView()
->setType(PHUIListItemView::TYPE_DIVIDER) ->setIsDivider(true);
->addClass('phui-divider');
return array( return array(
$item, $item,

View file

@ -34,7 +34,7 @@ final class PhabricatorEditEngineProfileMenuItem
return $form; return $form;
} }
public function willBuildNavigationItems(array $items) { public function willGetMenuItemViewList(array $items) {
$viewer = $this->getViewer(); $viewer = $this->getViewer();
$engines = PhabricatorEditEngine::getAllEditEngines(); $engines = PhabricatorEditEngine::getAllEditEngines();
$engine_keys = array_keys($engines); $engine_keys = array_keys($engines);
@ -99,7 +99,7 @@ final class PhabricatorEditEngineProfileMenuItem
return $config->getMenuItemProperty('name'); return $config->getMenuItemProperty('name');
} }
protected function newNavigationMenuItems( protected function newMenuItemViewList(
PhabricatorProfileMenuItemConfiguration $config) { PhabricatorProfileMenuItemConfiguration $config) {
$form = $this->getForm(); $form = $this->getForm();
@ -110,13 +110,13 @@ final class PhabricatorEditEngineProfileMenuItem
$icon = $form->getIcon(); $icon = $form->getIcon();
$name = $this->getDisplayName($config); $name = $this->getDisplayName($config);
$href = $form->getCreateURI(); $uri = $form->getCreateURI();
if ($href === null) { if ($uri === null) {
return array(); return array();
} }
$item = $this->newItem() $item = $this->newItemView()
->setHref($href) ->setURI($uri)
->setName($name) ->setName($name)
->setIcon($icon); ->setIcon($icon);

View file

@ -39,14 +39,14 @@ final class PhabricatorLabelProfileMenuItem
return $config->getMenuItemProperty('name'); return $config->getMenuItemProperty('name');
} }
protected function newNavigationMenuItems( protected function newMenuItemViewList(
PhabricatorProfileMenuItemConfiguration $config) { PhabricatorProfileMenuItemConfiguration $config) {
$name = $this->getLabelName($config); $name = $this->getLabelName($config);
$item = $this->newItem() $item = $this->newItemView()
->setName($name) ->setName($name)
->setType(PHUIListItemView::TYPE_LABEL); ->setIsLabel(true);
return array( return array(
$item, $item,

View file

@ -71,22 +71,14 @@ final class PhabricatorLinkProfileMenuItem
return $config->getMenuItemProperty('tooltip'); return $config->getMenuItemProperty('tooltip');
} }
private function isValidLinkURI($uri) { protected function newMenuItemViewList(
return PhabricatorEnv::isValidURIForLink($uri);
}
protected function newNavigationMenuItems(
PhabricatorProfileMenuItemConfiguration $config) { PhabricatorProfileMenuItemConfiguration $config) {
$icon = $this->getLinkIcon($config); $icon = $this->getLinkIcon($config);
$name = $this->getLinkName($config); $name = $this->getLinkName($config);
$href = $this->getLinkURI($config); $uri = $this->getLinkURI($config);
$tooltip = $this->getLinkTooltip($config); $tooltip = $this->getLinkTooltip($config);
if (!$this->isValidLinkURI($href)) {
$href = '#';
}
$icon_object = id(new PhabricatorProfileMenuItemIconSet()) $icon_object = id(new PhabricatorProfileMenuItemIconSet())
->getIcon($icon); ->getIcon($icon);
if ($icon_object) { if ($icon_object) {
@ -95,12 +87,12 @@ final class PhabricatorLinkProfileMenuItem
$icon_class = 'fa-link'; $icon_class = 'fa-link';
} }
$item = $this->newItem() $item = $this->newItemView()
->setHref($href) ->setURI($uri)
->setName($name) ->setName($name)
->setIcon($icon_class) ->setIcon($icon_class)
->setTooltip($tooltip) ->setTooltip($tooltip)
->setRel('noreferrer'); ->setIsExternalLink(true);
return array( return array(
$item, $item,
@ -142,7 +134,7 @@ final class PhabricatorLinkProfileMenuItem
continue; continue;
} }
if (!$this->isValidLinkURI($new)) { if (!PhabricatorEnv::isValidURIForLink($new)) {
$errors[] = $this->newInvalidError( $errors[] = $this->newInvalidError(
pht( pht(
'URI "%s" is not a valid link URI. It should be a full, valid '. 'URI "%s" is not a valid link URI. It should be a full, valid '.

View file

@ -49,7 +49,7 @@ final class PhabricatorManageProfileMenuItem
); );
} }
protected function newNavigationMenuItems( protected function newMenuItemViewList(
PhabricatorProfileMenuItemConfiguration $config) { PhabricatorProfileMenuItemConfiguration $config) {
$viewer = $this->getViewer(); $viewer = $this->getViewer();
@ -58,13 +58,13 @@ final class PhabricatorManageProfileMenuItem
} }
$engine = $this->getEngine(); $engine = $this->getEngine();
$href = $engine->getItemURI('configure/'); $uri = $engine->getItemURI('configure/');
$name = $this->getDisplayName($config); $name = $this->getDisplayName($config);
$icon = 'fa-pencil'; $icon = 'fa-pencil';
$item = $this->newItem() $item = $this->newItemView()
->setHref($href) ->setURI($uri)
->setName($name) ->setName($name)
->setIcon($icon); ->setIcon($icon);

View file

@ -50,7 +50,7 @@ final class PhabricatorMotivatorProfileMenuItem
); );
} }
protected function newNavigationMenuItems( protected function newMenuItemViewList(
PhabricatorProfileMenuItemConfiguration $config) { PhabricatorProfileMenuItemConfiguration $config) {
$source = $config->getMenuItemProperty('source'); $source = $config->getMenuItemProperty('source');
@ -66,7 +66,7 @@ final class PhabricatorMotivatorProfileMenuItem
$fact_text = $this->selectFact($facts); $fact_text = $this->selectFact($facts);
$item = $this->newItem() $item = $this->newItemView()
->setName($fact_name) ->setName($fact_name)
->setIcon($fact_icon) ->setIcon($fact_icon)
->setTooltip($fact_text) ->setTooltip($fact_text)

View file

@ -5,15 +5,6 @@ abstract class PhabricatorProfileMenuItem extends Phobject {
private $viewer; private $viewer;
private $engine; private $engine;
final public function buildNavigationMenuItems(
PhabricatorProfileMenuItemConfiguration $config) {
return $this->newNavigationMenuItems($config);
}
abstract protected function newNavigationMenuItems(
PhabricatorProfileMenuItemConfiguration $config);
public function willBuildNavigationItems(array $items) {}
public function getMenuItemTypeIcon() { public function getMenuItemTypeIcon() {
return null; return null;
@ -76,10 +67,38 @@ abstract class PhabricatorProfileMenuItem extends Phobject {
->execute(); ->execute();
} }
protected function newItem() { final protected function newItemView() {
return new PHUIListItemView(); return new PhabricatorProfileMenuItemView();
} }
public function willGetMenuItemViewList(array $items) {}
final public function getMenuItemViewList(
PhabricatorProfileMenuItemConfiguration $config) {
$list = $this->newMenuItemViewList($config);
if (!is_array($list)) {
throw new Exception(
pht(
'Expected "newMenuItemViewList()" to return a list (in class "%s"), '.
'but it returned something else ("%s").',
get_class($this),
phutil_describe_type($list)));
}
assert_instances_of($list, 'PhabricatorProfileMenuItemView');
foreach ($list as $view) {
$view->setMenuItemConfiguration($config);
}
return $list;
}
abstract protected function newMenuItemViewList(
PhabricatorProfileMenuItemConfiguration $config);
public function newPageContent( public function newPageContent(
PhabricatorProfileMenuItemConfiguration $config) { PhabricatorProfileMenuItemConfiguration $config) {
return null; return null;
@ -131,4 +150,14 @@ abstract class PhabricatorProfileMenuItem extends Phobject {
return $this->newError(pht('Invalid'), $message, $xaction); return $this->newError(pht('Invalid'), $message, $xaction);
} }
final protected function newEmptyView($title, $message) {
return id(new PHUIInfoView())
->setTitle($title)
->setSeverity(PHUIInfoView::SEVERITY_NODATA)
->setErrors(
array(
$message,
));
}
} }

View file

@ -35,7 +35,7 @@ final class PhabricatorProjectProfileMenuItem
return $project; return $project;
} }
public function willBuildNavigationItems(array $items) { public function willGetMenuItemViewList(array $items) {
$viewer = $this->getViewer(); $viewer = $this->getViewer();
$project_phids = array(); $project_phids = array();
foreach ($items as $item) { foreach ($items as $item) {
@ -90,7 +90,7 @@ final class PhabricatorProjectProfileMenuItem
return $config->getMenuItemProperty('name'); return $config->getMenuItemProperty('name');
} }
protected function newNavigationMenuItems( protected function newMenuItemViewList(
PhabricatorProfileMenuItemConfiguration $config) { PhabricatorProfileMenuItemConfiguration $config) {
$project = $this->getProject(); $project = $this->getProject();
@ -100,12 +100,12 @@ final class PhabricatorProjectProfileMenuItem
$picture = $project->getProfileImageURI(); $picture = $project->getProfileImageURI();
$name = $this->getDisplayName($config); $name = $this->getDisplayName($config);
$href = $project->getURI(); $uri = $project->getURI();
$item = $this->newItem() $item = $this->newItemView()
->setHref($href) ->setURI($uri)
->setName($name) ->setName($name)
->setProfileImage($picture); ->setIconImage($picture);
return array( return array(
$item, $item,