mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-15 11:22:40 +01:00
3da38c74da
Summary: Clean up the error view styling. Test Plan: Tested as many as I could find, built additional tests in UIExamples {F280452} {F280453} Reviewers: btrahan, epriestley Reviewed By: epriestley Subscribers: hach-que, Korvin, epriestley Differential Revision: https://secure.phabricator.com/D11605
136 lines
2.7 KiB
PHP
136 lines
2.7 KiB
PHP
<?php
|
|
|
|
final class PHUIObjectItemListView extends AphrontTagView {
|
|
|
|
private $header;
|
|
private $items;
|
|
private $pager;
|
|
private $stackable;
|
|
private $noDataString;
|
|
private $flush;
|
|
private $plain;
|
|
private $allowEmptyList;
|
|
private $states;
|
|
|
|
|
|
public function setAllowEmptyList($allow_empty_list) {
|
|
$this->allowEmptyList = $allow_empty_list;
|
|
return $this;
|
|
}
|
|
|
|
public function getAllowEmptyList() {
|
|
return $this->allowEmptyList;
|
|
}
|
|
|
|
public function setFlush($flush) {
|
|
$this->flush = $flush;
|
|
return $this;
|
|
}
|
|
|
|
public function setPlain($plain) {
|
|
$this->plain = $plain;
|
|
return $this;
|
|
}
|
|
|
|
public function setHeader($header) {
|
|
$this->header = $header;
|
|
return $this;
|
|
}
|
|
|
|
public function setPager($pager) {
|
|
$this->pager = $pager;
|
|
return $this;
|
|
}
|
|
|
|
public function setNoDataString($no_data_string) {
|
|
$this->noDataString = $no_data_string;
|
|
return $this;
|
|
}
|
|
|
|
public function addItem(PHUIObjectItemView $item) {
|
|
$this->items[] = $item;
|
|
return $this;
|
|
}
|
|
|
|
public function setStackable($stackable) {
|
|
$this->stackable = $stackable;
|
|
return $this;
|
|
}
|
|
|
|
public function setStates($states) {
|
|
$this->states = $states;
|
|
return $this;
|
|
}
|
|
|
|
protected function getTagName() {
|
|
return 'ul';
|
|
}
|
|
|
|
protected function getTagAttributes() {
|
|
$classes = array();
|
|
|
|
$classes[] = 'phui-object-item-list-view';
|
|
if ($this->stackable) {
|
|
$classes[] = 'phui-object-list-stackable';
|
|
}
|
|
if ($this->states) {
|
|
$classes[] = 'phui-object-list-states';
|
|
$classes[] = 'phui-object-list-stackable';
|
|
}
|
|
if ($this->flush) {
|
|
$classes[] = 'phui-object-list-flush';
|
|
}
|
|
if ($this->plain) {
|
|
$classes[] = 'phui-object-list-plain';
|
|
}
|
|
|
|
return array(
|
|
'class' => $classes,
|
|
);
|
|
}
|
|
|
|
protected function getTagContent() {
|
|
require_celerity_resource('phui-object-item-list-view-css');
|
|
|
|
$header = null;
|
|
if (strlen($this->header)) {
|
|
$header = phutil_tag(
|
|
'h1',
|
|
array(
|
|
'class' => 'phui-object-item-list-header',
|
|
),
|
|
$this->header);
|
|
}
|
|
|
|
if ($this->items) {
|
|
$items = $this->items;
|
|
} else if ($this->allowEmptyList) {
|
|
$items = null;
|
|
} else {
|
|
$string = nonempty($this->noDataString, pht('No data.'));
|
|
$string = id(new PHUIErrorView())
|
|
->setSeverity(PHUIErrorView::SEVERITY_NODATA)
|
|
->appendChild($string);
|
|
$items = phutil_tag(
|
|
'li',
|
|
array(
|
|
'class' => 'phui-object-item-empty',
|
|
),
|
|
$string);
|
|
|
|
}
|
|
|
|
$pager = null;
|
|
if ($this->pager) {
|
|
$pager = $this->pager;
|
|
}
|
|
|
|
return array(
|
|
$header,
|
|
$items,
|
|
$pager,
|
|
$this->renderChildren(),
|
|
);
|
|
}
|
|
|
|
}
|