2012-10-01 14:06:00 -07:00
|
|
|
<?php
|
|
|
|
|
2013-08-07 10:58:09 -07:00
|
|
|
final class PHUIPinboardItemView extends AphrontView {
|
2012-10-01 14:06:00 -07:00
|
|
|
|
|
|
|
private $imageURI;
|
|
|
|
private $uri;
|
|
|
|
private $header;
|
2013-03-05 10:43:03 -08:00
|
|
|
private $iconBlock = array();
|
2014-06-13 09:14:12 -07:00
|
|
|
private $disabled;
|
2015-06-10 15:52:49 -07:00
|
|
|
private $object;
|
2012-10-04 14:33:50 -07:00
|
|
|
private $imageWidth;
|
|
|
|
private $imageHeight;
|
2012-10-01 14:06:00 -07:00
|
|
|
|
|
|
|
public function setHeader($header) {
|
|
|
|
$this->header = $header;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setURI($uri) {
|
|
|
|
$this->uri = $uri;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setImageURI($image_uri) {
|
|
|
|
$this->imageURI = $image_uri;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setImageSize($x, $y) {
|
|
|
|
$this->imageWidth = $x;
|
|
|
|
$this->imageHeight = $y;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2013-03-05 10:43:03 -08:00
|
|
|
public function addIconCount($icon, $count) {
|
|
|
|
$this->iconBlock[] = array($icon, $count);
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2014-06-13 09:14:12 -07:00
|
|
|
public function setDisabled($disabled) {
|
|
|
|
$this->disabled = $disabled;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2015-06-10 15:52:49 -07:00
|
|
|
public function setObject($object) {
|
|
|
|
$this->object = $object;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2012-10-01 14:06:00 -07:00
|
|
|
public function render() {
|
2014-06-14 12:11:19 -07:00
|
|
|
require_celerity_resource('phui-pinboard-view-css');
|
2012-10-01 14:06:00 -07:00
|
|
|
$header = null;
|
|
|
|
if ($this->header) {
|
2014-06-13 09:14:12 -07:00
|
|
|
if ($this->disabled) {
|
|
|
|
$header_color = 'gradient-lightgrey-header';
|
|
|
|
} else {
|
|
|
|
$header_color = 'gradient-lightblue-header';
|
|
|
|
}
|
2013-01-18 00:32:58 -08:00
|
|
|
$header = phutil_tag(
|
2012-10-09 11:58:37 -07:00
|
|
|
'div',
|
2012-10-01 14:06:00 -07:00
|
|
|
array(
|
2013-08-28 08:55:43 -07:00
|
|
|
'class' => 'phui-pinboard-item-header '.
|
2014-06-13 09:14:12 -07:00
|
|
|
'sprite-gradient '.$header_color,
|
2012-10-01 14:06:00 -07:00
|
|
|
),
|
2015-06-10 15:52:49 -07:00
|
|
|
array(
|
|
|
|
id(new PHUISpacesNamespaceContextView())
|
|
|
|
->setUser($this->getUser())
|
|
|
|
->setObject($this->object),
|
|
|
|
phutil_tag(
|
|
|
|
'a',
|
|
|
|
array(
|
|
|
|
'href' => $this->uri,
|
|
|
|
),
|
|
|
|
$this->header),
|
|
|
|
));
|
2012-10-01 14:06:00 -07:00
|
|
|
}
|
|
|
|
|
2014-06-14 12:11:19 -07:00
|
|
|
$image = null;
|
|
|
|
if ($this->imageWidth) {
|
|
|
|
$image = phutil_tag(
|
|
|
|
'a',
|
2012-10-01 14:06:00 -07:00
|
|
|
array(
|
2014-06-14 12:11:19 -07:00
|
|
|
'href' => $this->uri,
|
|
|
|
'class' => 'phui-pinboard-item-image-link',
|
|
|
|
),
|
|
|
|
phutil_tag(
|
|
|
|
'img',
|
|
|
|
array(
|
|
|
|
'src' => $this->imageURI,
|
|
|
|
'width' => $this->imageWidth,
|
|
|
|
'height' => $this->imageHeight,
|
|
|
|
)));
|
|
|
|
}
|
2012-10-01 14:06:00 -07:00
|
|
|
|
2013-03-05 10:43:03 -08:00
|
|
|
$icons = array();
|
|
|
|
if ($this->iconBlock) {
|
|
|
|
$icon_list = array();
|
|
|
|
foreach ($this->iconBlock as $block) {
|
2014-05-12 10:08:32 -07:00
|
|
|
$icon = id(new PHUIIconView())
|
|
|
|
->setIconFont($block[0].' lightgreytext')
|
|
|
|
->addClass('phui-pinboard-icon');
|
|
|
|
|
2013-03-05 10:43:03 -08:00
|
|
|
$count = phutil_tag('span', array(), $block[1]);
|
|
|
|
$icon_list[] = phutil_tag(
|
|
|
|
'span',
|
|
|
|
array(
|
2013-08-07 10:58:09 -07:00
|
|
|
'class' => 'phui-pinboard-item-count',
|
2013-03-05 10:43:03 -08:00
|
|
|
),
|
|
|
|
array($icon, $count));
|
|
|
|
}
|
|
|
|
$icons = phutil_tag(
|
|
|
|
'div',
|
|
|
|
array(
|
2013-08-07 10:58:09 -07:00
|
|
|
'class' => 'phui-pinboard-icons',
|
2013-03-05 10:43:03 -08:00
|
|
|
),
|
|
|
|
$icon_list);
|
|
|
|
}
|
|
|
|
|
2013-02-13 14:50:15 -08:00
|
|
|
$content = $this->renderChildren();
|
2012-10-01 14:06:00 -07:00
|
|
|
if ($content) {
|
2013-01-28 18:44:54 -08:00
|
|
|
$content = phutil_tag(
|
2012-10-01 14:06:00 -07:00
|
|
|
'div',
|
|
|
|
array(
|
2013-08-07 10:58:09 -07:00
|
|
|
'class' => 'phui-pinboard-item-content',
|
2012-10-01 14:06:00 -07:00
|
|
|
),
|
|
|
|
$content);
|
|
|
|
}
|
|
|
|
|
2014-06-13 09:14:12 -07:00
|
|
|
$classes = array();
|
|
|
|
$classes[] = 'phui-pinboard-item-view';
|
|
|
|
if ($this->disabled) {
|
|
|
|
$classes[] = 'phui-pinboard-item-disabled';
|
|
|
|
}
|
|
|
|
|
2013-01-18 00:32:58 -08:00
|
|
|
return phutil_tag(
|
2012-10-01 14:06:00 -07:00
|
|
|
'div',
|
|
|
|
array(
|
2014-06-13 09:14:12 -07:00
|
|
|
'class' => implode(' ', $classes),
|
2012-10-01 14:06:00 -07:00
|
|
|
),
|
2013-03-09 13:52:41 -08:00
|
|
|
array(
|
|
|
|
$header,
|
|
|
|
$image,
|
|
|
|
$content,
|
2014-06-14 12:11:19 -07:00
|
|
|
$icons,
|
2013-03-09 13:52:41 -08:00
|
|
|
));
|
2012-10-01 14:06:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|