mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-20 13:52:40 +01:00
Migrated People's listing to PhabricatorObjectListView
Summary: Depends on D5359 Exactly what it says on a tin made icons white; replaced panel with header Made People app God-Mode only; did @epriestley's comments reverted god-mode changes Test Plan: {F36157} tell my if you like Reviewers: epriestley, chad, btrahan Reviewed By: epriestley CC: aran, Korvin Differential Revision: https://secure.phabricator.com/D5360
This commit is contained in:
parent
3b5d9ff79a
commit
d21880530d
1 changed files with 35 additions and 84 deletions
|
@ -25,7 +25,8 @@ final class PhabricatorPeopleListController
|
|||
->needPrimaryEmail(true)
|
||||
->executeWithOffsetPager($pager);
|
||||
|
||||
$rows = array();
|
||||
$list = new PhabricatorObjectItemListView();
|
||||
|
||||
foreach ($users as $user) {
|
||||
$primary_email = $user->loadPrimaryEmail();
|
||||
if ($primary_email && $primary_email->getIsVerified()) {
|
||||
|
@ -34,91 +35,38 @@ final class PhabricatorPeopleListController
|
|||
$email = pht('Unverified');
|
||||
}
|
||||
|
||||
$status = array();
|
||||
if ($user->getIsDisabled()) {
|
||||
$status[] = pht('Disabled');
|
||||
}
|
||||
if ($user->getIsAdmin()) {
|
||||
$status[] = pht('Admin');
|
||||
}
|
||||
if ($user->getIsSystemAgent()) {
|
||||
$status[] = pht('System Agent');
|
||||
}
|
||||
$status = implode(', ', $status);
|
||||
$user_handle = new PhabricatorObjectHandle();
|
||||
$user_handle->setImageURI($user->loadProfileImageURI());
|
||||
|
||||
$rows[] = array(
|
||||
$item = new PhabricatorObjectItemView();
|
||||
$item->setHeader($user->getFullName())
|
||||
->setHref('/people/edit/'.$user->getID().'/')
|
||||
->addAttribute(hsprintf('%s %s',
|
||||
phabricator_date($user->getDateCreated(), $viewer),
|
||||
phabricator_time($user->getDateCreated(), $viewer),
|
||||
phutil_tag(
|
||||
'a',
|
||||
array(
|
||||
'href' => '/p/'.$user->getUsername().'/',
|
||||
),
|
||||
$user->getUserName()),
|
||||
$user->getRealName(),
|
||||
$status,
|
||||
$email,
|
||||
phutil_tag(
|
||||
'a',
|
||||
array(
|
||||
'class' => 'button grey small',
|
||||
'href' => '/people/edit/'.$user->getID().'/',
|
||||
),
|
||||
pht('Administrate User')),
|
||||
);
|
||||
}
|
||||
|
||||
$table = new AphrontTableView($rows);
|
||||
$table->setHeaders(
|
||||
array(
|
||||
pht('Join Date'),
|
||||
pht('Time'),
|
||||
pht('Username'),
|
||||
pht('Real Name'),
|
||||
pht('Roles'),
|
||||
pht('Email'),
|
||||
'',
|
||||
));
|
||||
$table->setColumnClasses(
|
||||
array(
|
||||
null,
|
||||
'right',
|
||||
'pri',
|
||||
'wide',
|
||||
null,
|
||||
null,
|
||||
'action',
|
||||
));
|
||||
$table->setColumnVisibility(
|
||||
array(
|
||||
true,
|
||||
true,
|
||||
true,
|
||||
true,
|
||||
$is_admin,
|
||||
$is_admin,
|
||||
$is_admin,
|
||||
));
|
||||
|
||||
$panel = new AphrontPanelView();
|
||||
$panel->setHeader(pht('People (%d)', number_format($count)));
|
||||
$panel->setNoBackground();
|
||||
$panel->appendChild($table);
|
||||
$panel->appendChild($pager);
|
||||
phabricator_time($user->getDateCreated(), $viewer)))
|
||||
->addAttribute($email);
|
||||
|
||||
if ($is_admin) {
|
||||
if (PhabricatorEnv::getEnvConfig('ldap.auth-enabled')) {
|
||||
$panel->addButton(
|
||||
phutil_tag(
|
||||
'a',
|
||||
array(
|
||||
'href' => '/people/ldap/',
|
||||
'class' => 'button green'
|
||||
),
|
||||
pht('Import from LDAP')));
|
||||
if ($user->getIsDisabled()) {
|
||||
$item->addIcon('disable', pht('Disabled'));
|
||||
}
|
||||
|
||||
if ($user->getIsAdmin()) {
|
||||
$item->addIcon('highlight', pht('Admin'));
|
||||
}
|
||||
|
||||
if ($user->getIsSystemAgent()) {
|
||||
$item->addIcon('computer', pht('System Agent'));
|
||||
}
|
||||
}
|
||||
$crumbs = $this->buildApplicationCrumbs($this->buildSideNavView());
|
||||
|
||||
$list->addItem($item);
|
||||
}
|
||||
|
||||
$header = new PhabricatorHeaderView();
|
||||
$header->setHeader(pht('People (%d)', number_format($count)));
|
||||
|
||||
$crumbs = $this->buildApplicationCrumbs();
|
||||
$crumbs->addCrumb(
|
||||
id(new PhabricatorCrumbView())
|
||||
->setName(pht('User Directory'))
|
||||
|
@ -126,7 +74,9 @@ final class PhabricatorPeopleListController
|
|||
|
||||
$nav = $this->buildSideNavView();
|
||||
$nav->selectFilter('people');
|
||||
$nav->appendChild($panel);
|
||||
$nav->appendChild($header);
|
||||
$nav->appendChild($list);
|
||||
$nav->appendChild($pager);
|
||||
$nav->setCrumbs($crumbs);
|
||||
|
||||
return $this->buildApplicationPage(
|
||||
|
@ -134,6 +84,7 @@ final class PhabricatorPeopleListController
|
|||
array(
|
||||
'title' => pht('People'),
|
||||
'device' => true,
|
||||
'dust' => true,
|
||||
));
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue