2012-08-15 19:45:06 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
final class PhabricatorObjectItemListView extends AphrontView {
|
|
|
|
|
|
|
|
private $header;
|
|
|
|
private $items;
|
|
|
|
private $pager;
|
2012-09-11 18:55:27 +02:00
|
|
|
private $noDataString;
|
2012-08-15 19:45:06 +02:00
|
|
|
|
|
|
|
public function setHeader($header) {
|
|
|
|
$this->header = $header;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setPager($pager) {
|
|
|
|
$this->pager = $pager;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2012-09-11 18:55:27 +02:00
|
|
|
public function setNoDataString($no_data_string) {
|
|
|
|
$this->noDataString = $no_data_string;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2012-08-15 19:45:06 +02:00
|
|
|
public function addItem(PhabricatorObjectItemView $item) {
|
|
|
|
$this->items[] = $item;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function render() {
|
|
|
|
require_celerity_resource('phabricator-object-item-list-view-css');
|
|
|
|
|
2012-12-13 19:59:29 +01:00
|
|
|
$header = null;
|
|
|
|
if (strlen($this->header)) {
|
|
|
|
$header = phutil_render_tag(
|
|
|
|
'h1',
|
|
|
|
array(
|
|
|
|
'class' => 'phabricator-object-item-list-header',
|
|
|
|
),
|
|
|
|
phutil_escape_html($this->header));
|
|
|
|
}
|
2012-09-11 18:55:27 +02:00
|
|
|
|
|
|
|
if ($this->items) {
|
|
|
|
$items = $this->renderSingleView($this->items);
|
|
|
|
} else {
|
|
|
|
$string = nonempty($this->noDataString, pht('No data.'));
|
|
|
|
$items = id(new AphrontErrorView())
|
|
|
|
->setSeverity(AphrontErrorView::SEVERITY_NODATA)
|
|
|
|
->appendChild(phutil_escape_html($string))
|
|
|
|
->render();
|
|
|
|
}
|
2012-08-15 19:45:06 +02:00
|
|
|
|
|
|
|
$pager = null;
|
|
|
|
if ($this->pager) {
|
|
|
|
$pager = $this->renderSingleView($this->pager);
|
|
|
|
}
|
|
|
|
|
|
|
|
return phutil_render_tag(
|
|
|
|
'div',
|
|
|
|
array(
|
|
|
|
'class' => 'phabricator-object-item-list-view',
|
|
|
|
),
|
|
|
|
$header.$items.$pager);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|