Summary: - Grepped for phutil_render_tag(). - Fixed some easy ones. Test Plan: - Browsed around; site didn't seem more broken than it was before. Reviewers: vrana Reviewed By: vrana CC: aran Differential Revision: https://secure.phabricator.com/D4638
114 lines
2.6 KiB
PHP
114 lines
2.6 KiB
PHP
<?php
|
|
|
|
final class PhabricatorInlineSummaryView extends AphrontView {
|
|
|
|
private $groups = array();
|
|
|
|
public function addCommentGroup($name, array $items) {
|
|
if (!isset($this->groups[$name])) {
|
|
$this->groups[$name] = $items;
|
|
} else {
|
|
$this->groups[$name] = array_merge($this->groups[$name], $items);
|
|
}
|
|
return $this;
|
|
}
|
|
|
|
public function render() {
|
|
require_celerity_resource('inline-comment-summary-css');
|
|
return $this->renderHeader().$this->renderTable();
|
|
}
|
|
|
|
private function renderHeader() {
|
|
return phutil_tag(
|
|
'div',
|
|
array(
|
|
'class' => 'phabricator-inline-summary',
|
|
),
|
|
'Inline Comments');
|
|
}
|
|
|
|
private function renderTable() {
|
|
$rows = array();
|
|
foreach ($this->groups as $group => $items) {
|
|
|
|
$has_where = false;
|
|
foreach ($items as $item) {
|
|
if (!empty($item['where'])) {
|
|
$has_where = true;
|
|
break;
|
|
}
|
|
}
|
|
|
|
$rows[] =
|
|
'<tr>'.
|
|
'<th colspan="3">'.
|
|
phutil_escape_html($group).
|
|
'</th>'.
|
|
'</tr>';
|
|
|
|
foreach ($items as $item) {
|
|
|
|
$items = isort($items, 'line');
|
|
|
|
$line = $item['line'];
|
|
$length = $item['length'];
|
|
if ($length) {
|
|
$lines = $line."\xE2\x80\x93".($line + $length);
|
|
} else {
|
|
$lines = $line;
|
|
}
|
|
|
|
if (isset($item['href'])) {
|
|
$href = $item['href'];
|
|
$target = '_blank';
|
|
$tail = " \xE2\x86\x97";
|
|
} else {
|
|
$href = '#inline-'.$item['id'];
|
|
$target = null;
|
|
$tail = null;
|
|
}
|
|
|
|
if ($href) {
|
|
$lines = phutil_tag(
|
|
'a',
|
|
array(
|
|
'href' => $href,
|
|
'target' => $target,
|
|
'class' => 'num',
|
|
),
|
|
array(
|
|
$lines,
|
|
$tail,
|
|
));
|
|
}
|
|
|
|
$where = idx($item, 'where');
|
|
|
|
$colspan = ($has_where ? '' : ' colspan="2"');
|
|
$rows[] =
|
|
'<tr>'.
|
|
'<td class="inline-line-number">'.$lines.'</td>'.
|
|
($has_where ?
|
|
'<td class="inline-which-diff">'.
|
|
phutil_escape_html($where).
|
|
'</td>'
|
|
: null).
|
|
'<td class="inline-summary-content"'.$colspan.'>'.
|
|
'<div class="phabricator-remarkup">'.
|
|
$item['content'].
|
|
'</div>'.
|
|
'</td>'.
|
|
'</tr>';
|
|
}
|
|
}
|
|
|
|
return phutil_tag(
|
|
'table',
|
|
array(
|
|
'class' => 'phabricator-inline-summary-table',
|
|
),
|
|
new PhutilSafeHTML(implode("\n", $rows)));
|
|
}
|
|
|
|
}
|