2012-08-15 10:45:06 -07:00
|
|
|
<?php
|
|
|
|
|
|
|
|
final class PhabricatorActionView extends AphrontView {
|
|
|
|
|
|
|
|
private $name;
|
|
|
|
private $icon;
|
|
|
|
private $href;
|
2012-08-24 13:19:30 -07:00
|
|
|
private $disabled;
|
2015-04-23 07:03:03 -07:00
|
|
|
private $label;
|
2012-08-24 13:19:30 -07:00
|
|
|
private $workflow;
|
2012-10-03 10:21:39 -07:00
|
|
|
private $renderAsForm;
|
2013-01-28 18:12:09 -08:00
|
|
|
private $download;
|
2014-04-18 06:44:45 -07:00
|
|
|
private $sigils = array();
|
2014-05-05 10:57:23 -07:00
|
|
|
private $metadata;
|
2014-05-20 11:42:05 -07:00
|
|
|
private $selected;
|
2015-09-03 10:03:50 -07:00
|
|
|
private $openInNewWindow;
|
2014-05-20 11:42:05 -07:00
|
|
|
|
|
|
|
public function setSelected($selected) {
|
|
|
|
$this->selected = $selected;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getSelected() {
|
|
|
|
return $this->selected;
|
|
|
|
}
|
2014-05-05 10:57:23 -07:00
|
|
|
|
|
|
|
public function setMetadata($metadata) {
|
|
|
|
$this->metadata = $metadata;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getMetadata() {
|
|
|
|
return $this->metadata;
|
|
|
|
}
|
2013-07-12 11:39:47 -07:00
|
|
|
|
2013-01-28 18:12:09 -08:00
|
|
|
public function setDownload($download) {
|
|
|
|
$this->download = $download;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getDownload() {
|
|
|
|
return $this->download;
|
|
|
|
}
|
2012-08-15 10:45:06 -07:00
|
|
|
|
|
|
|
public function setHref($href) {
|
|
|
|
$this->href = $href;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2014-04-18 06:44:45 -07:00
|
|
|
public function addSigil($sigil) {
|
|
|
|
$this->sigils[] = $sigil;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2013-07-12 11:39:47 -07:00
|
|
|
public function getHref() {
|
|
|
|
return $this->href;
|
|
|
|
}
|
|
|
|
|
2012-08-15 10:45:06 -07:00
|
|
|
public function setIcon($icon) {
|
|
|
|
$this->icon = $icon;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setName($name) {
|
|
|
|
$this->name = $name;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2015-04-23 07:03:03 -07:00
|
|
|
public function setLabel($label) {
|
|
|
|
$this->label = $label;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2012-08-24 13:19:30 -07:00
|
|
|
public function setDisabled($disabled) {
|
|
|
|
$this->disabled = $disabled;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setWorkflow($workflow) {
|
|
|
|
$this->workflow = $workflow;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2012-10-03 10:21:39 -07:00
|
|
|
public function setRenderAsForm($form) {
|
|
|
|
$this->renderAsForm = $form;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2015-09-03 10:03:50 -07:00
|
|
|
public function setOpenInNewWindow($open_in_new_window) {
|
|
|
|
$this->openInNewWindow = $open_in_new_window;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getOpenInNewWindow() {
|
|
|
|
return $this->openInNewWindow;
|
|
|
|
}
|
|
|
|
|
2012-08-15 10:45:06 -07:00
|
|
|
public function render() {
|
|
|
|
|
|
|
|
$icon = null;
|
|
|
|
if ($this->icon) {
|
2014-05-12 10:08:32 -07:00
|
|
|
$color = '';
|
2012-11-23 16:35:39 -08:00
|
|
|
if ($this->disabled) {
|
2014-05-12 10:08:32 -07:00
|
|
|
$color = ' grey';
|
2012-11-23 16:35:39 -08:00
|
|
|
}
|
2013-07-10 12:33:51 -07:00
|
|
|
$icon = id(new PHUIIconView())
|
|
|
|
->addClass('phabricator-action-view-icon')
|
2016-01-27 20:38:01 -08:00
|
|
|
->setIcon($this->icon.$color);
|
2012-08-15 10:45:06 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
if ($this->href) {
|
2014-04-18 06:44:45 -07:00
|
|
|
|
|
|
|
$sigils = array();
|
|
|
|
if ($this->workflow) {
|
|
|
|
$sigils[] = 'workflow';
|
|
|
|
}
|
|
|
|
if ($this->download) {
|
|
|
|
$sigils[] = 'download';
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($this->sigils) {
|
|
|
|
$sigils = array_merge($sigils, $this->sigils);
|
|
|
|
}
|
|
|
|
|
|
|
|
$sigils = $sigils ? implode(' ', $sigils) : null;
|
|
|
|
|
2012-10-03 10:21:39 -07:00
|
|
|
if ($this->renderAsForm) {
|
|
|
|
if (!$this->user) {
|
|
|
|
throw new Exception(
|
2015-05-22 17:27:56 +10:00
|
|
|
pht(
|
|
|
|
'Call %s when rendering an action as a form.',
|
|
|
|
'setUser()'));
|
2012-10-03 10:21:39 -07:00
|
|
|
}
|
|
|
|
|
2013-01-25 12:57:17 -08:00
|
|
|
$item = javelin_tag(
|
2012-10-03 10:21:39 -07:00
|
|
|
'button',
|
|
|
|
array(
|
|
|
|
'class' => 'phabricator-action-view-item',
|
|
|
|
),
|
2014-06-12 11:27:30 -07:00
|
|
|
array($icon, $this->name));
|
2012-10-03 10:21:39 -07:00
|
|
|
|
2013-01-30 11:30:38 -08:00
|
|
|
$item = phabricator_form(
|
2012-10-03 10:21:39 -07:00
|
|
|
$this->user,
|
|
|
|
array(
|
2013-07-12 11:39:47 -07:00
|
|
|
'action' => $this->getHref(),
|
2012-10-03 10:21:39 -07:00
|
|
|
'method' => 'POST',
|
2014-04-18 06:44:45 -07:00
|
|
|
'sigil' => $sigils,
|
2015-05-22 17:27:56 +10:00
|
|
|
'meta' => $this->metadata,
|
2012-10-03 10:21:39 -07:00
|
|
|
),
|
|
|
|
$item);
|
|
|
|
} else {
|
2015-09-03 10:03:50 -07:00
|
|
|
if ($this->getOpenInNewWindow()) {
|
|
|
|
$target = '_blank';
|
|
|
|
} else {
|
|
|
|
$target = null;
|
|
|
|
}
|
|
|
|
|
2013-01-25 12:57:17 -08:00
|
|
|
$item = javelin_tag(
|
2012-10-03 10:21:39 -07:00
|
|
|
'a',
|
|
|
|
array(
|
2013-07-12 11:39:47 -07:00
|
|
|
'href' => $this->getHref(),
|
2012-10-03 10:21:39 -07:00
|
|
|
'class' => 'phabricator-action-view-item',
|
2015-09-03 10:03:50 -07:00
|
|
|
'target' => $target,
|
2014-04-18 06:44:45 -07:00
|
|
|
'sigil' => $sigils,
|
2014-05-05 10:57:23 -07:00
|
|
|
'meta' => $this->metadata,
|
2012-10-03 10:21:39 -07:00
|
|
|
),
|
2014-06-12 11:27:30 -07:00
|
|
|
array($icon, $this->name));
|
2012-10-03 10:21:39 -07:00
|
|
|
}
|
2012-08-15 10:45:06 -07:00
|
|
|
} else {
|
2013-01-17 18:43:35 -08:00
|
|
|
$item = phutil_tag(
|
2012-08-15 10:45:06 -07:00
|
|
|
'span',
|
|
|
|
array(
|
|
|
|
'class' => 'phabricator-action-view-item',
|
|
|
|
),
|
2014-06-12 11:27:30 -07:00
|
|
|
array($icon, $this->name));
|
2012-08-15 10:45:06 -07:00
|
|
|
}
|
|
|
|
|
2012-08-24 13:19:30 -07:00
|
|
|
$classes = array();
|
|
|
|
$classes[] = 'phabricator-action-view';
|
2015-04-23 07:03:03 -07:00
|
|
|
|
2012-08-24 13:19:30 -07:00
|
|
|
if ($this->disabled) {
|
|
|
|
$classes[] = 'phabricator-action-view-disabled';
|
|
|
|
}
|
|
|
|
|
2015-04-23 07:03:03 -07:00
|
|
|
if ($this->label) {
|
|
|
|
$classes[] = 'phabricator-action-view-label';
|
|
|
|
}
|
|
|
|
|
2014-05-20 11:42:05 -07:00
|
|
|
if ($this->selected) {
|
|
|
|
$classes[] = 'phabricator-action-view-selected';
|
|
|
|
}
|
|
|
|
|
2013-01-18 00:32:58 -08:00
|
|
|
return phutil_tag(
|
2012-08-15 10:45:06 -07:00
|
|
|
'li',
|
|
|
|
array(
|
2012-08-24 13:19:30 -07:00
|
|
|
'class' => implode(' ', $classes),
|
2012-08-15 10:45:06 -07:00
|
|
|
),
|
2014-06-12 11:27:30 -07:00
|
|
|
$item);
|
2012-08-15 10:45:06 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|