2011-01-16 22:51:39 +01:00
|
|
|
<?php
|
|
|
|
|
2012-03-14 00:21:04 +01:00
|
|
|
final class AphrontTableView extends AphrontView {
|
2011-01-16 22:51:39 +01:00
|
|
|
|
|
|
|
protected $data;
|
|
|
|
protected $headers;
|
|
|
|
protected $rowClasses = array();
|
|
|
|
protected $columnClasses = array();
|
2012-08-20 23:05:46 +02:00
|
|
|
protected $cellClasses = array();
|
2011-01-16 22:51:39 +01:00
|
|
|
protected $zebraStripes = true;
|
|
|
|
protected $noDataString;
|
|
|
|
protected $className;
|
2011-05-17 19:59:26 +02:00
|
|
|
protected $columnVisibility = array();
|
2011-01-16 22:51:39 +01:00
|
|
|
|
2012-03-20 03:48:22 +01:00
|
|
|
protected $sortURI;
|
|
|
|
protected $sortParam;
|
|
|
|
protected $sortSelected;
|
|
|
|
protected $sortReverse;
|
|
|
|
protected $sortValues;
|
|
|
|
|
2011-01-16 22:51:39 +01:00
|
|
|
public function __construct(array $data) {
|
|
|
|
$this->data = $data;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setHeaders(array $headers) {
|
|
|
|
$this->headers = $headers;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setColumnClasses(array $column_classes) {
|
|
|
|
$this->columnClasses = $column_classes;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setRowClasses(array $row_classes) {
|
|
|
|
$this->rowClasses = $row_classes;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2012-08-20 23:05:46 +02:00
|
|
|
public function setCellClasses(array $cell_classes) {
|
|
|
|
$this->cellClasses = $cell_classes;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2011-01-16 22:51:39 +01:00
|
|
|
public function setNoDataString($no_data_string) {
|
|
|
|
$this->noDataString = $no_data_string;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setClassName($class_name) {
|
|
|
|
$this->className = $class_name;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setZebraStripes($zebra_stripes) {
|
|
|
|
$this->zebraStripes = $zebra_stripes;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2011-05-17 19:59:26 +02:00
|
|
|
public function setColumnVisibility(array $visibility) {
|
|
|
|
$this->columnVisibility = $visibility;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2012-03-20 03:48:22 +01:00
|
|
|
/**
|
|
|
|
* Parse a sorting parameter:
|
|
|
|
*
|
|
|
|
* list($sort, $reverse) = AphrontTableView::parseSortParam($sort_param);
|
|
|
|
*
|
|
|
|
* @param string Sort request parameter.
|
|
|
|
* @return pair Sort value, sort direction.
|
|
|
|
*/
|
|
|
|
public static function parseSort($sort) {
|
|
|
|
return array(ltrim($sort, '-'), preg_match('/^-/', $sort));
|
|
|
|
}
|
|
|
|
|
|
|
|
public function makeSortable(
|
|
|
|
PhutilURI $base_uri,
|
|
|
|
$param,
|
|
|
|
$selected,
|
|
|
|
$reverse,
|
|
|
|
array $sort_values) {
|
|
|
|
|
|
|
|
$this->sortURI = $base_uri;
|
|
|
|
$this->sortParam = $param;
|
|
|
|
$this->sortSelected = $selected;
|
|
|
|
$this->sortReverse = $reverse;
|
|
|
|
$this->sortValues = array_values($sort_values);
|
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2011-01-16 22:51:39 +01:00
|
|
|
public function render() {
|
2011-01-25 20:31:40 +01:00
|
|
|
require_celerity_resource('aphront-table-view-css');
|
|
|
|
|
2012-03-29 22:24:06 +02:00
|
|
|
$table_class = $this->className;
|
|
|
|
if ($table_class !== null) {
|
|
|
|
$table_class = ' class="aphront-table-view '.$table_class.'"';
|
2011-01-16 22:51:39 +01:00
|
|
|
} else {
|
2012-03-29 22:24:06 +02:00
|
|
|
$table_class = ' class="aphront-table-view"';
|
2011-01-16 22:51:39 +01:00
|
|
|
}
|
2012-03-29 22:24:06 +02:00
|
|
|
$table = array('<table'.$table_class.'>');
|
2011-01-16 22:51:39 +01:00
|
|
|
|
|
|
|
$col_classes = array();
|
|
|
|
foreach ($this->columnClasses as $key => $class) {
|
|
|
|
if (strlen($class)) {
|
2012-03-20 03:48:22 +01:00
|
|
|
$col_classes[] = $class;
|
2011-01-16 22:51:39 +01:00
|
|
|
} else {
|
|
|
|
$col_classes[] = null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-05-17 19:59:26 +02:00
|
|
|
$visibility = array_values($this->columnVisibility);
|
2011-01-16 22:51:39 +01:00
|
|
|
$headers = $this->headers;
|
2012-03-20 03:48:22 +01:00
|
|
|
$sort_values = $this->sortValues;
|
2011-01-16 22:51:39 +01:00
|
|
|
if ($headers) {
|
2011-05-17 19:59:26 +02:00
|
|
|
while (count($headers) > count($visibility)) {
|
|
|
|
$visibility[] = true;
|
|
|
|
}
|
2012-03-20 03:48:22 +01:00
|
|
|
while (count($headers) > count($sort_values)) {
|
|
|
|
$sort_values[] = null;
|
|
|
|
}
|
2011-01-16 22:51:39 +01:00
|
|
|
$table[] = '<tr>';
|
|
|
|
foreach ($headers as $col_num => $header) {
|
2011-05-17 19:59:26 +02:00
|
|
|
if (!$visibility[$col_num]) {
|
|
|
|
continue;
|
|
|
|
}
|
2012-03-20 03:48:22 +01:00
|
|
|
|
|
|
|
$classes = array();
|
|
|
|
|
|
|
|
if (!empty($col_classes[$col_num])) {
|
|
|
|
$classes[] = $col_classes[$col_num];
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($sort_values[$col_num] !== null) {
|
|
|
|
$classes[] = 'aphront-table-view-sortable';
|
|
|
|
|
|
|
|
$sort_value = $sort_values[$col_num];
|
|
|
|
$sort_glyph = "\xE2\x86\x93";
|
|
|
|
if ($sort_value == $this->sortSelected) {
|
|
|
|
if ($this->sortReverse) {
|
|
|
|
$sort_glyph = "\xE2\x86\x91";
|
|
|
|
} else if (!$this->sortReverse) {
|
|
|
|
$sort_value = '-'.$sort_value;
|
|
|
|
}
|
|
|
|
$classes[] = 'aphront-table-view-sortable-selected';
|
|
|
|
}
|
|
|
|
|
|
|
|
$sort_glyph = phutil_render_tag(
|
|
|
|
'span',
|
|
|
|
array(
|
|
|
|
'class' => 'aphront-table-view-sort-glyph',
|
|
|
|
),
|
|
|
|
$sort_glyph);
|
|
|
|
|
|
|
|
$header = phutil_render_tag(
|
|
|
|
'a',
|
|
|
|
array(
|
|
|
|
'href' => $this->sortURI->alter($this->sortParam, $sort_value),
|
|
|
|
'class' => 'aphront-table-view-sort-link',
|
|
|
|
),
|
|
|
|
$sort_glyph.' '.$header);
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($classes) {
|
|
|
|
$class = ' class="'.implode(' ', $classes).'"';
|
|
|
|
} else {
|
|
|
|
$class = null;
|
|
|
|
}
|
|
|
|
|
2011-01-16 22:51:39 +01:00
|
|
|
$table[] = '<th'.$class.'>'.$header.'</th>';
|
|
|
|
}
|
|
|
|
$table[] = '</tr>';
|
|
|
|
}
|
|
|
|
|
2012-03-20 03:48:22 +01:00
|
|
|
foreach ($col_classes as $key => $value) {
|
|
|
|
|
|
|
|
if (($sort_values[$key] !== null) &&
|
|
|
|
($sort_values[$key] == $this->sortSelected)) {
|
|
|
|
$value = trim($value.' sorted-column');
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($value !== null) {
|
2012-08-20 23:05:46 +02:00
|
|
|
$col_classes[$key] = $value;
|
2012-03-20 03:48:22 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-01-16 22:51:39 +01:00
|
|
|
$data = $this->data;
|
|
|
|
if ($data) {
|
|
|
|
$row_num = 0;
|
|
|
|
foreach ($data as $row) {
|
|
|
|
while (count($row) > count($col_classes)) {
|
|
|
|
$col_classes[] = null;
|
|
|
|
}
|
2011-05-17 19:59:26 +02:00
|
|
|
while (count($row) > count($visibility)) {
|
|
|
|
$visibility[] = true;
|
|
|
|
}
|
2011-01-16 22:51:39 +01:00
|
|
|
$class = idx($this->rowClasses, $row_num);
|
|
|
|
if ($this->zebraStripes && ($row_num % 2)) {
|
|
|
|
if ($class !== null) {
|
|
|
|
$class = 'alt alt-'.$class;
|
|
|
|
} else {
|
|
|
|
$class = 'alt';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ($class !== null) {
|
|
|
|
$class = ' class="'.$class.'"';
|
|
|
|
}
|
|
|
|
$table[] = '<tr'.$class.'>';
|
2011-05-17 19:59:26 +02:00
|
|
|
// NOTE: Use of a separate column counter is to allow this to work
|
|
|
|
// correctly if the row data has string or non-sequential keys.
|
2011-01-16 22:51:39 +01:00
|
|
|
$col_num = 0;
|
|
|
|
foreach ($row as $value) {
|
2011-05-17 19:59:26 +02:00
|
|
|
if (!$visibility[$col_num]) {
|
|
|
|
++$col_num;
|
|
|
|
continue;
|
|
|
|
}
|
2011-01-16 22:51:39 +01:00
|
|
|
$class = $col_classes[$col_num];
|
2012-08-20 23:05:46 +02:00
|
|
|
if (!empty($this->cellClasses[$row_num][$col_num])) {
|
|
|
|
$class = trim($class.' '.$this->cellClasses[$row_num][$col_num]);
|
|
|
|
}
|
2011-01-16 22:51:39 +01:00
|
|
|
if ($class !== null) {
|
2012-08-20 23:05:46 +02:00
|
|
|
$table[] = '<td class="'.$class.'">';
|
2011-01-16 22:51:39 +01:00
|
|
|
} else {
|
|
|
|
$table[] = '<td>';
|
|
|
|
}
|
|
|
|
$table[] = $value.'</td>';
|
|
|
|
++$col_num;
|
|
|
|
}
|
|
|
|
++$row_num;
|
|
|
|
}
|
|
|
|
} else {
|
General Herald refactoring pass
Summary:
**Who can delete global rules?**: I discussed this with @jungejason. The current behavior is that the rule author or any administrator can delete a global rule, but this
isn't consistent with who can edit a rule (anyone) and doesn't really make much sense (it's an artifact of the global/personal split). I proposed that anyone can delete a
rule but we don't actually delete them, and log the deletion. However, when it came time to actually write the code for this I backed off a bit and continued actually
deleting the rules -- I think this does a reasonable job of balancing accountability with complexity. So the new impelmentation is:
- Personal rules can be deleted only by their owners.
- Global rules can be deleted by any user.
- All deletes are logged.
- Logs are more detailed.
- All logged actions can be viewed in aggregate.
**Minor Cleanup**
- Merged `HomeController` and `AllController`.
- Moved most queries to Query classes.
- Use AphrontFormSelectControl::renderSelectTag() where appropriate (this is a fairly recent addition).
- Use an AphrontErrorView to render the dry run notice (this didn't exist when I ported).
- Reenable some transaction code (this works again now).
- Removed the ability for admins to change rule authors (this was a little buggy, messy, and doesn't make tons of sense after the personal/global rule split).
- Rules which depend on other rules now display the right options (all global rules, all your personal rules for personal rules).
- Fix a bug in AphrontTableView where the "no data" cell would be rendered too wide if some columns are not visible.
- Allow selectFilter() in AphrontNavFilterView to be called without a 'default' argument.
Test Plan:
- Browsed, created, edited, deleted personal and gules.
- Verified generated logs.
- Did some dry runs.
- Verified transcript list and transcript details.
- Created/edited all/any rules; created/edited once/every time rules.
- Filtered admin views by users.
Reviewers: jungejason, btrahan
Reviewed By: btrahan
CC: aran, epriestley
Differential Revision: https://secure.phabricator.com/D2040
2012-03-30 19:49:55 +02:00
|
|
|
$colspan = max(count(array_filter($visibility)), 1);
|
2011-01-16 22:51:39 +01:00
|
|
|
$table[] =
|
|
|
|
'<tr class="no-data"><td colspan="'.$colspan.'">'.
|
|
|
|
coalesce($this->noDataString, 'No data available.').
|
|
|
|
'</td></tr>';
|
|
|
|
}
|
|
|
|
$table[] = '</table>';
|
|
|
|
return implode('', $table);
|
|
|
|
}
|
2011-07-31 17:38:06 +02:00
|
|
|
|
|
|
|
public static function renderSingleDisplayLine($line) {
|
|
|
|
|
|
|
|
// TODO: Is there a cleaner way to do this? We use a relative div with
|
|
|
|
// overflow hidden to provide the bounds, and an absolute span with
|
|
|
|
// white-space: pre to prevent wrapping. We need to append a character
|
|
|
|
// ( -- nonbreaking space) afterward to give the bounds div height
|
|
|
|
// (alternatively, we could hard-code the line height). This is gross but
|
|
|
|
// it's not clear that there's a better appraoch.
|
|
|
|
|
|
|
|
return phutil_render_tag(
|
|
|
|
'div',
|
|
|
|
array(
|
|
|
|
'class' => 'single-display-line-bounds',
|
|
|
|
),
|
|
|
|
phutil_render_tag(
|
|
|
|
'span',
|
|
|
|
array(
|
|
|
|
'class' => 'single-display-line-content',
|
|
|
|
),
|
|
|
|
$line).' ');
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-01-16 22:51:39 +01:00
|
|
|
}
|
|
|
|
|