1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-22 18:28:47 +02:00
phorge-phorge/src/applications/differential/view/DifferentialAddCommentView.php

190 lines
5.7 KiB
PHP
Raw Normal View History

2011-01-30 20:02:22 +01:00
<?php
final class DifferentialAddCommentView extends AphrontView {
private $revision;
private $actions;
private $actionURI;
2011-02-06 01:57:21 +01:00
private $draft;
private $auxFields;
private $reviewers = array();
private $ccs = array();
2011-01-30 20:02:22 +01:00
public function setRevision($revision) {
$this->revision = $revision;
return $this;
}
public function setAuxFields(array $aux_fields) {
assert_instances_of($aux_fields, 'DifferentialFieldSpecification');
$this->auxFields = $aux_fields;
return $this;
}
2011-01-30 20:02:22 +01:00
public function setActions(array $actions) {
$this->actions = $actions;
return $this;
}
public function setActionURI($uri) {
$this->actionURI = $uri;
return $this;
2011-01-30 20:02:22 +01:00
}
public function setDraft(PhabricatorDraft $draft = null) {
2011-02-06 01:57:21 +01:00
$this->draft = $draft;
return $this;
}
public function setReviewers(array $names) {
$this->reviewers = $names;
return $this;
}
public function setCCs(array $names) {
$this->ccs = $names;
return $this;
}
2011-01-31 03:52:29 +01:00
public function render() {
2011-02-01 03:05:20 +01:00
require_celerity_resource('differential-revision-add-comment-css');
$is_serious = PhabricatorEnv::getEnvConfig('phabricator.serious-business');
$revision = $this->revision;
$action = null;
if ($this->draft) {
$action = idx($this->draft->getMetadata(), 'action');
}
$enable_reviewers = DifferentialAction::allowReviewers($action);
$enable_ccs = ($action == DifferentialAction::ACTION_ADDCCS);
2011-01-30 20:02:22 +01:00
$form = new AphrontFormView();
$form
->setWorkflow(true)
->setFlexible(true)
2011-01-31 03:52:29 +01:00
->setUser($this->user)
2011-01-30 20:02:22 +01:00
->setAction($this->actionURI)
->addHiddenInput('revision_id', $revision->getID())
2011-01-30 20:02:22 +01:00
->appendChild(
id(new AphrontFormSelectControl())
->setLabel(pht('Action'))
->setName('action')
->setValue($action)
2011-02-01 03:05:20 +01:00
->setID('comment-action')
->setOptions($this->actions))
2011-02-05 07:45:42 +01:00
->appendChild(
id(new AphrontFormTokenizerControl())
->setLabel(pht('Add Reviewers'))
2011-02-05 07:45:42 +01:00
->setName('reviewers')
->setControlID('add-reviewers')
->setControlStyle($enable_reviewers ? null : 'display: none')
2011-02-05 07:45:42 +01:00
->setID('add-reviewers-tokenizer')
->setDisableBehavior(true))
->appendChild(
id(new AphrontFormTokenizerControl())
->setLabel(pht('Add CCs'))
->setName('ccs')
->setControlID('add-ccs')
->setControlStyle($enable_ccs ? null : 'display: none')
->setID('add-ccs-tokenizer')
->setDisableBehavior(true))
2011-01-30 20:02:22 +01:00
->appendChild(
id(new PhabricatorRemarkupControl())
->setName('comment')
2011-02-01 03:05:20 +01:00
->setID('comment-content')
->setLabel(pht('Comment'))
->setValue($this->draft ? $this->draft->getDraft() : null)
->setUser($this->user))
2011-01-30 20:02:22 +01:00
->appendChild(
id(new AphrontFormSubmitControl())
->setValue($is_serious ? pht('Submit') : pht('Clowncopterize')));
2011-01-30 20:02:22 +01:00
2011-02-05 07:45:42 +01:00
Javelin::initBehavior(
'differential-add-reviewers-and-ccs',
2011-02-05 07:45:42 +01:00
array(
'dynamic' => array(
'add-reviewers-tokenizer' => array(
'actions' => array('request_review' => 1, 'add_reviewers' => 1),
'src' => '/typeahead/common/users/',
'value' => $this->reviewers,
'row' => 'add-reviewers',
'ondemand' => PhabricatorEnv::getEnvConfig('tokenizer.ondemand'),
'placeholder' => pht('Type a user name...'),
),
'add-ccs-tokenizer' => array(
'actions' => array('add_ccs' => 1),
'src' => '/typeahead/common/mailable/',
'value' => $this->ccs,
'row' => 'add-ccs',
'ondemand' => PhabricatorEnv::getEnvConfig('tokenizer.ondemand'),
'placeholder' => pht('Type a user or mailing list...'),
),
),
2011-02-05 07:45:42 +01:00
'select' => 'comment-action',
));
$diff = $revision->loadActiveDiff();
$warnings = mpull($this->auxFields, 'renderWarningBoxForRevisionAccept');
Javelin::initBehavior(
'differential-accept-with-errors',
array(
'select' => 'comment-action',
'warnings' => 'warnings',
));
2011-02-03 04:38:43 +01:00
$rev_id = $revision->getID();
2011-02-01 03:05:20 +01:00
Javelin::initBehavior(
'differential-feedback-preview',
array(
2011-02-03 04:38:43 +01:00
'uri' => '/differential/comment/preview/'.$rev_id.'/',
'preview' => 'comment-preview',
'action' => 'comment-action',
'content' => 'comment-content',
'previewTokenizers' => array(
'reviewers' => 'add-reviewers-tokenizer',
'ccs' => 'add-ccs-tokenizer',
),
2011-02-03 04:38:43 +01:00
'inlineuri' => '/differential/comment/inline/preview/'.$rev_id.'/',
'inline' => 'inline-comment-preview',
2011-02-01 03:05:20 +01:00
));
2013-02-13 23:50:15 +01:00
$warning_container = array();
foreach ($warnings as $warning) {
if ($warning) {
2013-02-13 23:50:15 +01:00
$warning_container[] = $warning->render();
}
}
$header = id(new PhabricatorHeaderView())
->setHeader($is_serious ? pht('Add Comment') : pht('Leap Into Action'));
2013-02-13 23:50:15 +01:00
return hsprintf(
'%s'.
'<div class="differential-add-comment-panel">'.
2013-02-13 23:50:15 +01:00
'%s%s%s'.
'<div class="aphront-panel-preview aphront-panel-flush">'.
'<div id="comment-preview">'.
2013-02-13 23:50:15 +01:00
'<span class="aphront-panel-preview-loading-text">%s</span>'.
'</div>'.
'<div id="inline-comment-preview">'.
'</div>'.
2011-02-01 03:05:20 +01:00
'</div>'.
2013-02-13 23:50:15 +01:00
'</div>',
id(new PhabricatorAnchorView())
->setAnchorName('comment')
->setNavigationMarker(true)
->render(),
$header->render(),
$form->render(),
phutil_tag('div', array('id' => 'warnings'), $warning_container),
pht('Loading comment preview...'));
2011-01-30 20:02:22 +01:00
}
}