mirror of
https://we.phorge.it/source/phorge.git
synced 2025-02-18 17:58:37 +01:00
Clean up Diffusion repository list
Summary: Simplify rendering of the repository list. For inactive repositories, mark them disabled. Test Plan: {F57615} Reviewers: btrahan, rockybean Reviewed By: btrahan CC: aran Differential Revision: https://secure.phabricator.com/D6921
This commit is contained in:
parent
c74ebf9ce0
commit
51eb8a301a
2 changed files with 40 additions and 62 deletions
|
@ -31,79 +31,53 @@ final class DiffusionRepositoryListController extends DiffusionController
|
||||||
|
|
||||||
$viewer = $this->getRequest()->getUser();
|
$viewer = $this->getRequest()->getUser();
|
||||||
|
|
||||||
$rows = array();
|
$list = new PhabricatorObjectItemListView();
|
||||||
foreach ($repositories as $repository) {
|
foreach ($repositories as $repository) {
|
||||||
$id = $repository->getID();
|
$id = $repository->getID();
|
||||||
|
|
||||||
|
$item = id(new PhabricatorObjectItemView())
|
||||||
|
->setUser($viewer)
|
||||||
|
->setHeader($repository->getName())
|
||||||
|
->setHref($this->getApplicationURI($repository->getCallsign().'/'));
|
||||||
|
|
||||||
|
$commit = $repository->getMostRecentCommit();
|
||||||
|
if ($commit) {
|
||||||
|
$commit_link = DiffusionView::linkCommit(
|
||||||
|
$repository,
|
||||||
|
$commit->getCommitIdentifier(),
|
||||||
|
$commit->getSummary());
|
||||||
|
$item->setSubhead($commit_link);
|
||||||
|
$item->setEpoch($commit->getEpoch());
|
||||||
|
}
|
||||||
|
|
||||||
|
$item->addAttribute(
|
||||||
|
PhabricatorRepositoryType::getNameForRepositoryType(
|
||||||
|
$repository->getVersionControlSystem()));
|
||||||
|
|
||||||
$size = $repository->getCommitCount();
|
$size = $repository->getCommitCount();
|
||||||
if ($size) {
|
if ($size) {
|
||||||
$size = hsprintf(
|
$history_uri = DiffusionRequest::generateDiffusionURI(
|
||||||
'<a href="%s">%s</a>',
|
array(
|
||||||
DiffusionRequest::generateDiffusionURI(array(
|
|
||||||
'callsign' => $repository->getCallsign(),
|
'callsign' => $repository->getCallsign(),
|
||||||
'action' => 'history',
|
'action' => 'history',
|
||||||
)),
|
));
|
||||||
pht('%s Commits', new PhutilNumber($size)));
|
|
||||||
|
$item->addAttribute(
|
||||||
|
phutil_tag(
|
||||||
|
'a',
|
||||||
|
array(
|
||||||
|
'href' => $history_uri,
|
||||||
|
),
|
||||||
|
pht('%s Commit(s)', new PhutilNumber($size))));
|
||||||
|
} else {
|
||||||
|
$item->addAttribute(pht('No Commits'));
|
||||||
}
|
}
|
||||||
|
|
||||||
$datetime = '';
|
if (!$repository->isTracked()) {
|
||||||
$most_recent_commit = $repository->getMostRecentCommit();
|
$item->setDisabled(true);
|
||||||
if ($most_recent_commit) {
|
$item->addIcon('disable-grey', pht('Inactive'));
|
||||||
$date = phabricator_date($most_recent_commit->getEpoch(), $viewer);
|
|
||||||
$time = phabricator_time($most_recent_commit->getEpoch(), $viewer);
|
|
||||||
$datetime = $date.' '.$time;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
$rows[] = array(
|
|
||||||
$repository->getName(),
|
|
||||||
('/diffusion/'.$repository->getCallsign().'/'),
|
|
||||||
PhabricatorRepositoryType::getNameForRepositoryType(
|
|
||||||
$repository->getVersionControlSystem()),
|
|
||||||
$size ? $size : null,
|
|
||||||
$most_recent_commit
|
|
||||||
? DiffusionView::linkCommit(
|
|
||||||
$repository,
|
|
||||||
$most_recent_commit->getCommitIdentifier(),
|
|
||||||
$most_recent_commit->getSummary())
|
|
||||||
: pht('No Commits'),
|
|
||||||
$datetime
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
$repository_tool_uri = PhabricatorEnv::getProductionURI('/repository/');
|
|
||||||
$repository_tool = phutil_tag('a',
|
|
||||||
array(
|
|
||||||
'href' => $repository_tool_uri,
|
|
||||||
),
|
|
||||||
'repository tool');
|
|
||||||
$preface = pht('This instance of Phabricator does not have any '.
|
|
||||||
'configured repositories.');
|
|
||||||
if ($viewer->getIsAdmin()) {
|
|
||||||
$no_repositories_txt = hsprintf(
|
|
||||||
'%s %s',
|
|
||||||
$preface,
|
|
||||||
pht(
|
|
||||||
'To setup one or more repositories, visit the %s.',
|
|
||||||
$repository_tool));
|
|
||||||
} else {
|
|
||||||
$no_repositories_txt = hsprintf(
|
|
||||||
'%s %s',
|
|
||||||
$preface,
|
|
||||||
pht(
|
|
||||||
'Ask an administrator to setup one or more repositories '.
|
|
||||||
'via the %s.',
|
|
||||||
$repository_tool));
|
|
||||||
}
|
|
||||||
|
|
||||||
$list = new PHUIObjectItemListView();
|
|
||||||
foreach ($rows as $row) {
|
|
||||||
$item = id(new PHUIObjectItemView())
|
|
||||||
->setHeader($row[0])
|
|
||||||
->setSubHead($row[4])
|
|
||||||
->setHref($row[1])
|
|
||||||
->addAttribute(($row[2] ? $row[2] : pht('No Information')))
|
|
||||||
->addAttribute(($row[3] ? $row[3] : pht('0 Commits')))
|
|
||||||
->addIcon('none', $row[5]);
|
|
||||||
$list->addItem($item);
|
$list->addItem($item);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -677,6 +677,10 @@ abstract class PhabricatorBaseEnglishTranslation
|
||||||
'Old (%s days)',
|
'Old (%s days)',
|
||||||
),
|
),
|
||||||
|
|
||||||
|
'%s Commit(s)' => array(
|
||||||
|
'%s Commit',
|
||||||
|
'%s Commits',
|
||||||
|
),
|
||||||
|
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue