2012-08-15 19:45:06 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
final class PhabricatorActionView extends AphrontView {
|
|
|
|
|
|
|
|
private $name;
|
|
|
|
private $icon;
|
|
|
|
private $href;
|
2012-08-24 22:19:30 +02:00
|
|
|
private $disabled;
|
|
|
|
private $workflow;
|
2012-10-03 19:21:39 +02:00
|
|
|
private $renderAsForm;
|
2013-01-29 03:12:09 +01:00
|
|
|
private $download;
|
|
|
|
|
|
|
|
public function setDownload($download) {
|
|
|
|
$this->download = $download;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getDownload() {
|
|
|
|
return $this->download;
|
|
|
|
}
|
2012-08-15 19:45:06 +02:00
|
|
|
|
|
|
|
public function setHref($href) {
|
|
|
|
$this->href = $href;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setIcon($icon) {
|
|
|
|
$this->icon = $icon;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setName($name) {
|
|
|
|
$this->name = $name;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2012-08-24 22:19:30 +02:00
|
|
|
public function setDisabled($disabled) {
|
|
|
|
$this->disabled = $disabled;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setWorkflow($workflow) {
|
|
|
|
$this->workflow = $workflow;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2012-10-03 19:21:39 +02:00
|
|
|
public function setRenderAsForm($form) {
|
|
|
|
$this->renderAsForm = $form;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2012-08-15 19:45:06 +02:00
|
|
|
public function render() {
|
|
|
|
|
|
|
|
$icon = null;
|
|
|
|
if ($this->icon) {
|
2012-11-24 01:35:39 +01:00
|
|
|
|
|
|
|
$suffix = '';
|
|
|
|
if ($this->disabled) {
|
|
|
|
$suffix = '-grey';
|
|
|
|
}
|
|
|
|
|
Add action icons to object list views
Summary:
We have a few interfaces where add "Edit", "Delete" or some other action to a list. Currently, this happens via icons, but these are cumbersome and weird, are inconsistent, can't be workflow'd, are hard to hit on desktops and virtually impossible to hit on mobile, and generally just feel iffy to me. Prominent examples are Projects and Flags. I'd like to try adding an "edit" action to Maniphest (to provide quick edit from list views, basically). It looks like some of Releeph would benefit here, as well.
Instead, provide first-class actions:
{F42978}
They produce targets which my meaty ham-fists can plausibly hit on mobile, too:
{F42979}
(We could do some kind of swipe-to-expose thing eventually, but I think putting them by default is OK?)
Test Plan: Added UIExamples. Checked desktop/mobile.
Reviewers: chad, btrahan, edward
Reviewed By: btrahan
CC: aran
Differential Revision: https://secure.phabricator.com/D5890
2013-05-10 21:57:01 +02:00
|
|
|
require_celerity_resource('sprite-icons-css');
|
2013-01-18 03:57:09 +01:00
|
|
|
$icon = phutil_tag(
|
2012-08-15 19:45:06 +02:00
|
|
|
'span',
|
|
|
|
array(
|
Add action icons to object list views
Summary:
We have a few interfaces where add "Edit", "Delete" or some other action to a list. Currently, this happens via icons, but these are cumbersome and weird, are inconsistent, can't be workflow'd, are hard to hit on desktops and virtually impossible to hit on mobile, and generally just feel iffy to me. Prominent examples are Projects and Flags. I'd like to try adding an "edit" action to Maniphest (to provide quick edit from list views, basically). It looks like some of Releeph would benefit here, as well.
Instead, provide first-class actions:
{F42978}
They produce targets which my meaty ham-fists can plausibly hit on mobile, too:
{F42979}
(We could do some kind of swipe-to-expose thing eventually, but I think putting them by default is OK?)
Test Plan: Added UIExamples. Checked desktop/mobile.
Reviewers: chad, btrahan, edward
Reviewed By: btrahan
CC: aran
Differential Revision: https://secure.phabricator.com/D5890
2013-05-10 21:57:01 +02:00
|
|
|
'class' => 'phabricator-action-view-icon sprite-icons '.
|
|
|
|
'icons-'.$this->icon.$suffix,
|
2012-08-15 19:45:06 +02:00
|
|
|
),
|
|
|
|
'');
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($this->href) {
|
2012-10-03 19:21:39 +02:00
|
|
|
if ($this->renderAsForm) {
|
|
|
|
if (!$this->user) {
|
|
|
|
throw new Exception(
|
|
|
|
'Call setUser() when rendering an action as a form.');
|
|
|
|
}
|
|
|
|
|
2013-01-25 21:57:17 +01:00
|
|
|
$item = javelin_tag(
|
2012-10-03 19:21:39 +02:00
|
|
|
'button',
|
|
|
|
array(
|
|
|
|
'class' => 'phabricator-action-view-item',
|
|
|
|
),
|
2013-01-25 21:57:17 +01:00
|
|
|
$this->name);
|
2012-10-03 19:21:39 +02:00
|
|
|
|
2013-01-29 03:12:09 +01:00
|
|
|
$sigils = array();
|
|
|
|
if ($this->workflow) {
|
|
|
|
$sigils[] = 'workflow';
|
|
|
|
}
|
|
|
|
if ($this->download) {
|
|
|
|
$sigils[] = 'download';
|
|
|
|
}
|
|
|
|
|
2013-01-30 20:30:38 +01:00
|
|
|
$item = phabricator_form(
|
2012-10-03 19:21:39 +02:00
|
|
|
$this->user,
|
|
|
|
array(
|
|
|
|
'action' => $this->href,
|
|
|
|
'method' => 'POST',
|
2013-01-29 03:12:09 +01:00
|
|
|
'sigil' => implode(' ', $sigils),
|
2012-10-03 19:21:39 +02:00
|
|
|
),
|
|
|
|
$item);
|
|
|
|
} else {
|
2013-01-25 21:57:17 +01:00
|
|
|
$item = javelin_tag(
|
2012-10-03 19:21:39 +02:00
|
|
|
'a',
|
|
|
|
array(
|
|
|
|
'href' => $this->href,
|
|
|
|
'class' => 'phabricator-action-view-item',
|
|
|
|
'sigil' => $this->workflow ? 'workflow' : null,
|
|
|
|
),
|
2013-01-25 21:57:17 +01:00
|
|
|
$this->name);
|
2012-10-03 19:21:39 +02:00
|
|
|
}
|
2012-08-15 19:45:06 +02:00
|
|
|
} else {
|
2013-01-18 03:43:35 +01:00
|
|
|
$item = phutil_tag(
|
2012-08-15 19:45:06 +02:00
|
|
|
'span',
|
|
|
|
array(
|
|
|
|
'class' => 'phabricator-action-view-item',
|
|
|
|
),
|
2013-01-18 03:43:35 +01:00
|
|
|
$this->name);
|
2012-08-15 19:45:06 +02:00
|
|
|
}
|
|
|
|
|
2012-08-24 22:19:30 +02:00
|
|
|
$classes = array();
|
|
|
|
$classes[] = 'phabricator-action-view';
|
|
|
|
if ($this->disabled) {
|
|
|
|
$classes[] = 'phabricator-action-view-disabled';
|
|
|
|
}
|
|
|
|
|
2013-01-18 09:32:58 +01:00
|
|
|
return phutil_tag(
|
2012-08-15 19:45:06 +02:00
|
|
|
'li',
|
|
|
|
array(
|
2012-08-24 22:19:30 +02:00
|
|
|
'class' => implode(' ', $classes),
|
2012-08-15 19:45:06 +02:00
|
|
|
),
|
2013-01-18 09:32:58 +01:00
|
|
|
array($icon, $item));
|
2012-08-15 19:45:06 +02:00
|
|
|
}
|
|
|
|
|
2012-10-23 21:00:28 +02:00
|
|
|
public static function getAvailableIcons() {
|
2012-11-24 01:35:39 +01:00
|
|
|
$root = dirname(phutil_get_library_root('phabricator'));
|
2013-05-11 18:38:02 +02:00
|
|
|
$path = $root.'/resources/sprite/manifest/icons.json';
|
2012-11-24 01:35:39 +01:00
|
|
|
$data = Filesystem::readFile($path);
|
|
|
|
$manifest = json_decode($data, true);
|
|
|
|
|
|
|
|
$results = array();
|
2013-05-11 18:38:02 +02:00
|
|
|
$prefix = 'icons-';
|
2012-11-24 01:35:39 +01:00
|
|
|
foreach ($manifest['sprites'] as $sprite) {
|
2012-12-03 19:22:57 +01:00
|
|
|
$name = $sprite['name'];
|
|
|
|
if (preg_match('/-(white|grey)$/', $name)) {
|
2012-11-24 01:35:39 +01:00
|
|
|
continue;
|
|
|
|
}
|
2012-12-03 19:22:57 +01:00
|
|
|
if (!strncmp($name, $prefix, strlen($prefix))) {
|
|
|
|
$results[] = substr($name, strlen($prefix));
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $results;
|
2012-10-23 21:00:28 +02:00
|
|
|
}
|
2012-08-15 19:45:06 +02:00
|
|
|
|
|
|
|
}
|