mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
Deprecate generateProperties
Summary: deprecate generateProperties() from class DifferentialRevisionDetailRenderer. Custom fields now provides a much more powerful version of generateProperties(). Depends on D814. Test Plan: implemented facebook task field with custom field and verified it worked. Reviewers: epriestley, tuomaspelkonen Reviewed By: epriestley CC: aran, jungejason, epriestley Differential Revision: 826
This commit is contained in:
parent
2bb4cf149e
commit
4693ffa82b
3 changed files with 2 additions and 34 deletions
|
@ -29,15 +29,4 @@ abstract class DifferentialRevisionDetailRenderer {
|
|||
*/
|
||||
abstract public function generateActionLinks(DifferentialRevision $revision,
|
||||
DifferentialDiff $diff);
|
||||
|
||||
/**
|
||||
* This function must return an array of properties. These
|
||||
* properties will be shown below other properties on differential
|
||||
* revision page. Array keys are used for property names and array
|
||||
* values are used for the actual property values. These property
|
||||
* values will be displayed on the page as they are given, so they
|
||||
* should be properly escaped.
|
||||
*/
|
||||
abstract public function generateProperties(DifferentialRevision $revision,
|
||||
DifferentialDiff $diff);
|
||||
}
|
||||
|
|
|
@ -163,21 +163,14 @@ class DifferentialRevisionViewController extends DifferentialController {
|
|||
'differential.revision-custom-detail-renderer');
|
||||
if ($custom_renderer_class) {
|
||||
|
||||
// TODO: Either deprecate generateProperties() or build a better version
|
||||
// of the action links and deprecate the whole class. Custom fields
|
||||
// now provide a much more powerful version of generateProperties().
|
||||
|
||||
// TODO: build a better version of the action links and deprecate the
|
||||
// whole DifferentialRevisionDetailRenderer class.
|
||||
PhutilSymbolLoader::loadClass($custom_renderer_class);
|
||||
$custom_renderer =
|
||||
newv($custom_renderer_class, array());
|
||||
$properties = $custom_renderer->generateProperties($revision, $target);
|
||||
$revision_detail->setProperties($properties);
|
||||
|
||||
$actions = array_merge(
|
||||
$actions,
|
||||
$custom_renderer->generateActionLinks($revision, $target));
|
||||
} else {
|
||||
$revision_detail->setProperties(array());
|
||||
}
|
||||
|
||||
$whitespace = $request->getStr(
|
||||
|
|
|
@ -19,7 +19,6 @@
|
|||
final class DifferentialRevisionDetailView extends AphrontView {
|
||||
|
||||
private $revision;
|
||||
private $properties;
|
||||
private $actions;
|
||||
private $user;
|
||||
private $auxiliaryFields = array();
|
||||
|
@ -29,11 +28,6 @@ final class DifferentialRevisionDetailView extends AphrontView {
|
|||
return $this;
|
||||
}
|
||||
|
||||
public function setProperties(array $properties) {
|
||||
$this->properties = $properties;
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function setActions(array $actions) {
|
||||
$this->actions = $actions;
|
||||
return $this;
|
||||
|
@ -57,14 +51,6 @@ final class DifferentialRevisionDetailView extends AphrontView {
|
|||
$revision = $this->revision;
|
||||
|
||||
$rows = array();
|
||||
foreach ($this->properties as $key => $field) {
|
||||
$rows[] =
|
||||
'<tr>'.
|
||||
'<th>'.phutil_escape_html($key).':</th>'.
|
||||
'<td>'.$field.'</td>'.
|
||||
'</tr>';
|
||||
}
|
||||
|
||||
foreach ($this->auxiliaryFields as $field) {
|
||||
$value = $field->renderValueForRevisionView();
|
||||
if ($value !== null) {
|
||||
|
|
Loading…
Reference in a new issue