2012-10-01 23:06:00 +02:00
|
|
|
<?php
|
|
|
|
|
2013-08-07 19:58:09 +02:00
|
|
|
final class PHUIPinboardItemView extends AphrontView {
|
2012-10-01 23:06:00 +02:00
|
|
|
|
|
|
|
private $imageURI;
|
|
|
|
private $uri;
|
|
|
|
private $header;
|
2013-03-05 19:43:03 +01:00
|
|
|
private $iconBlock = array();
|
2014-06-13 18:14:12 +02:00
|
|
|
private $disabled;
|
2012-10-01 23:06:00 +02:00
|
|
|
|
2012-10-04 23:33:50 +02:00
|
|
|
private $imageWidth;
|
|
|
|
private $imageHeight;
|
2012-10-01 23:06:00 +02: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 19:43:03 +01:00
|
|
|
public function addIconCount($icon, $count) {
|
|
|
|
$this->iconBlock[] = array($icon, $count);
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2014-06-13 18:14:12 +02:00
|
|
|
public function setDisabled($disabled) {
|
|
|
|
$this->disabled = $disabled;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2012-10-01 23:06:00 +02:00
|
|
|
public function render() {
|
2014-06-14 21:11:19 +02:00
|
|
|
require_celerity_resource('phui-pinboard-view-css');
|
2012-10-01 23:06:00 +02:00
|
|
|
$header = null;
|
|
|
|
if ($this->header) {
|
2014-06-13 18:14:12 +02:00
|
|
|
if ($this->disabled) {
|
|
|
|
$header_color = 'gradient-lightgrey-header';
|
|
|
|
} else {
|
|
|
|
$header_color = 'gradient-lightblue-header';
|
|
|
|
}
|
2013-01-18 09:32:58 +01:00
|
|
|
$header = phutil_tag(
|
2012-10-09 20:58:37 +02:00
|
|
|
'div',
|
2012-10-01 23:06:00 +02:00
|
|
|
array(
|
2013-08-28 17:55:43 +02:00
|
|
|
'class' => 'phui-pinboard-item-header '.
|
2014-06-13 18:14:12 +02:00
|
|
|
'sprite-gradient '.$header_color,
|
2012-10-01 23:06:00 +02:00
|
|
|
),
|
2013-01-29 03:44:54 +01:00
|
|
|
phutil_tag('a', array('href' => $this->uri), $this->header));
|
2012-10-01 23:06:00 +02:00
|
|
|
}
|
|
|
|
|
2014-06-14 21:11:19 +02:00
|
|
|
$image = null;
|
|
|
|
if ($this->imageWidth) {
|
|
|
|
$image = phutil_tag(
|
|
|
|
'a',
|
2012-10-01 23:06:00 +02:00
|
|
|
array(
|
2014-06-14 21:11:19 +02: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 23:06:00 +02:00
|
|
|
|
2013-03-05 19:43:03 +01:00
|
|
|
$icons = array();
|
|
|
|
if ($this->iconBlock) {
|
|
|
|
$icon_list = array();
|
|
|
|
foreach ($this->iconBlock as $block) {
|
2014-05-12 19:08:32 +02:00
|
|
|
$icon = id(new PHUIIconView())
|
|
|
|
->setIconFont($block[0].' lightgreytext')
|
|
|
|
->addClass('phui-pinboard-icon');
|
|
|
|
|
2013-03-05 19:43:03 +01:00
|
|
|
$count = phutil_tag('span', array(), $block[1]);
|
|
|
|
$icon_list[] = phutil_tag(
|
|
|
|
'span',
|
|
|
|
array(
|
2013-08-07 19:58:09 +02:00
|
|
|
'class' => 'phui-pinboard-item-count',
|
2013-03-05 19:43:03 +01:00
|
|
|
),
|
|
|
|
array($icon, $count));
|
|
|
|
}
|
|
|
|
$icons = phutil_tag(
|
|
|
|
'div',
|
|
|
|
array(
|
2013-08-07 19:58:09 +02:00
|
|
|
'class' => 'phui-pinboard-icons',
|
2013-03-05 19:43:03 +01:00
|
|
|
),
|
|
|
|
$icon_list);
|
|
|
|
}
|
|
|
|
|
2013-02-13 23:50:15 +01:00
|
|
|
$content = $this->renderChildren();
|
2012-10-01 23:06:00 +02:00
|
|
|
if ($content) {
|
2013-01-29 03:44:54 +01:00
|
|
|
$content = phutil_tag(
|
2012-10-01 23:06:00 +02:00
|
|
|
'div',
|
|
|
|
array(
|
2013-08-07 19:58:09 +02:00
|
|
|
'class' => 'phui-pinboard-item-content',
|
2012-10-01 23:06:00 +02:00
|
|
|
),
|
|
|
|
$content);
|
|
|
|
}
|
|
|
|
|
2014-06-13 18:14:12 +02:00
|
|
|
$classes = array();
|
|
|
|
$classes[] = 'phui-pinboard-item-view';
|
|
|
|
if ($this->disabled) {
|
|
|
|
$classes[] = 'phui-pinboard-item-disabled';
|
|
|
|
}
|
|
|
|
|
2013-01-18 09:32:58 +01:00
|
|
|
return phutil_tag(
|
2012-10-01 23:06:00 +02:00
|
|
|
'div',
|
|
|
|
array(
|
2014-06-13 18:14:12 +02:00
|
|
|
'class' => implode(' ', $classes),
|
2012-10-01 23:06:00 +02:00
|
|
|
),
|
2013-03-09 22:52:41 +01:00
|
|
|
array(
|
|
|
|
$header,
|
|
|
|
$image,
|
|
|
|
$content,
|
2014-06-14 21:11:19 +02:00
|
|
|
$icons,
|
2013-03-09 22:52:41 +01:00
|
|
|
));
|
2012-10-01 23:06:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|