mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-15 03:12:41 +01:00
724be3930f
Summary: Adds a handy bar full of tiny buttons. Use only when directed. Ref: T4394 Test Plan: View UI Examples. Reviewers: epriestley, btrahan Reviewed By: epriestley CC: Korvin, epriestley, aran Differential Revision: https://secure.phabricator.com/D8169
91 lines
2.1 KiB
PHP
91 lines
2.1 KiB
PHP
<?php
|
|
|
|
final class PHUIIconView extends AphrontTagView {
|
|
|
|
const SPRITE_MINICONS = 'minicons';
|
|
const SPRITE_ACTIONS = 'actions';
|
|
const SPRITE_APPS = 'apps';
|
|
const SPRITE_TOKENS = 'tokens';
|
|
const SPRITE_PAYMENTS = 'payments';
|
|
const SPRITE_ICONS = 'icons';
|
|
const SPRITE_LOGIN = 'login';
|
|
const SPRITE_STATUS = 'status';
|
|
const SPRITE_PROJECTS = 'projects';
|
|
const SPRITE_BUTTONBAR = 'buttonbar';
|
|
|
|
const HEAD_SMALL = 'phuihead-small';
|
|
const HEAD_MEDIUM = 'phuihead-medium';
|
|
|
|
private $href = null;
|
|
private $image;
|
|
private $headSize = null;
|
|
private $spriteIcon;
|
|
private $spriteSheet;
|
|
|
|
public function setHref($href) {
|
|
$this->href = $href;
|
|
return $this;
|
|
}
|
|
|
|
public function setImage($image) {
|
|
$this->image = $image;
|
|
return $this;
|
|
}
|
|
|
|
public function setHeadSize($size) {
|
|
$this->headSize = $size;
|
|
return $this;
|
|
}
|
|
|
|
public function setSpriteIcon($sprite) {
|
|
$this->spriteIcon = $sprite;
|
|
return $this;
|
|
}
|
|
|
|
public function setSpriteSheet($sheet) {
|
|
$this->spriteSheet = $sheet;
|
|
return $this;
|
|
}
|
|
|
|
public function getTagName() {
|
|
$tag = 'span';
|
|
if ($this->href) {
|
|
$tag = 'a';
|
|
}
|
|
return $tag;
|
|
}
|
|
|
|
public function getTagAttributes() {
|
|
require_celerity_resource('phui-icon-view-css');
|
|
|
|
$style = null;
|
|
$classes = array();
|
|
$classes[] = 'phui-icon-view';
|
|
|
|
if ($this->spriteIcon) {
|
|
require_celerity_resource('sprite-'.$this->spriteSheet.'-css');
|
|
$classes[] = 'sprite-'.$this->spriteSheet;
|
|
$classes[] = $this->spriteSheet.'-'.$this->spriteIcon;
|
|
} else {
|
|
if ($this->headSize) {
|
|
$classes[] = $this->headSize;
|
|
}
|
|
$style = 'background-image: url('.$this->image.');';
|
|
}
|
|
|
|
return array(
|
|
'href' => $this->href,
|
|
'style' => $style,
|
|
'class' => $classes,
|
|
);
|
|
}
|
|
|
|
public static function getSheetManifest($sheet) {
|
|
$root = dirname(phutil_get_library_root('phabricator'));
|
|
$path = $root.'/resources/sprite/manifest/'.$sheet.'.json';
|
|
$data = Filesystem::readFile($path);
|
|
return idx(json_decode($data, true), 'sprites');
|
|
}
|
|
|
|
|
|
}
|