2013-07-16 22:31:20 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @group pholio
|
|
|
|
*/
|
2013-07-19 00:04:08 +02:00
|
|
|
final class PholioUploadedImageView extends AphrontView {
|
2013-07-16 22:31:20 +02:00
|
|
|
|
2013-07-19 00:04:08 +02:00
|
|
|
private $image;
|
2013-07-19 23:07:22 +02:00
|
|
|
private $replacesPHID;
|
|
|
|
|
|
|
|
public function setReplacesPHID($replaces_phid) {
|
|
|
|
$this->replacesPHID = $replaces_phid;
|
|
|
|
return $this;
|
|
|
|
}
|
2013-07-16 22:31:20 +02:00
|
|
|
|
2013-07-19 00:04:08 +02:00
|
|
|
public function setImage(PholioImage $image) {
|
|
|
|
$this->image = $image;
|
2013-07-16 22:31:20 +02:00
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function render() {
|
|
|
|
require_celerity_resource('pholio-edit-css');
|
|
|
|
|
2013-07-19 00:04:08 +02:00
|
|
|
$image = $this->image;
|
|
|
|
$file = $image->getFile();
|
2013-07-16 22:31:20 +02:00
|
|
|
$phid = $file->getPHID();
|
2013-07-19 23:07:22 +02:00
|
|
|
$replaces_phid = $this->replacesPHID;
|
2013-07-16 22:31:20 +02:00
|
|
|
|
|
|
|
$thumb = phutil_tag(
|
|
|
|
'img',
|
|
|
|
array(
|
|
|
|
'src' => $file->getThumb280x210URI(),
|
|
|
|
'width' => 280,
|
|
|
|
'height' => 210,
|
|
|
|
));
|
|
|
|
|
2013-07-19 00:04:08 +02:00
|
|
|
$remove = $this->renderRemoveElement();
|
2013-07-16 22:31:20 +02:00
|
|
|
|
|
|
|
$title = id(new AphrontFormTextControl())
|
|
|
|
->setName('title_'.$phid)
|
|
|
|
->setValue($image->getName())
|
2013-07-19 23:07:22 +02:00
|
|
|
->setSigil('image-title')
|
2013-07-16 22:31:20 +02:00
|
|
|
->setLabel(pht('Title'));
|
|
|
|
|
|
|
|
$description = id(new AphrontFormTextAreaControl())
|
|
|
|
->setName('description_'.$phid)
|
|
|
|
->setValue($image->getDescription())
|
2013-07-19 23:07:22 +02:00
|
|
|
->setSigil('image-description')
|
2013-07-16 22:31:20 +02:00
|
|
|
->setLabel(pht('Description'));
|
|
|
|
|
2013-07-19 23:07:22 +02:00
|
|
|
$thumb_frame = javelin_tag(
|
|
|
|
'div',
|
|
|
|
array(
|
|
|
|
'class' => 'pholio-thumb-frame',
|
|
|
|
'sigil' => 'pholio-thumb-frame',
|
|
|
|
),
|
|
|
|
$thumb);
|
|
|
|
|
2013-07-19 00:04:08 +02:00
|
|
|
$content = hsprintf(
|
|
|
|
'<div class="thumb-box">
|
|
|
|
<div class="title">
|
|
|
|
<div class="text">%s</div>
|
|
|
|
<div class="remove">%s</div>
|
2013-07-16 22:31:20 +02:00
|
|
|
</div>
|
2013-07-19 00:04:08 +02:00
|
|
|
<div class="thumb">%s</div>
|
|
|
|
</div>
|
|
|
|
<div class="image-data">
|
|
|
|
<div class="title">%s</div>
|
|
|
|
<div class="description">%s</div>
|
|
|
|
</div>',
|
|
|
|
$file->getName(),
|
2013-07-16 22:31:20 +02:00
|
|
|
$remove,
|
2013-07-19 23:07:22 +02:00
|
|
|
$thumb_frame,
|
2013-07-16 22:31:20 +02:00
|
|
|
$title,
|
|
|
|
$description);
|
|
|
|
|
2013-07-19 00:04:08 +02:00
|
|
|
$input = phutil_tag(
|
|
|
|
'input',
|
|
|
|
array(
|
|
|
|
'type' => 'hidden',
|
|
|
|
'name' => 'file_phids[]',
|
|
|
|
'value' => $phid,
|
|
|
|
));
|
|
|
|
|
2013-07-19 23:07:22 +02:00
|
|
|
$replaces_input = phutil_tag(
|
|
|
|
'input',
|
|
|
|
array(
|
|
|
|
'type' => 'hidden',
|
|
|
|
'name' => 'replaces['.$replaces_phid.']',
|
|
|
|
'value' => $phid,
|
|
|
|
));
|
|
|
|
|
2013-07-19 00:04:08 +02:00
|
|
|
return javelin_tag(
|
|
|
|
'div',
|
|
|
|
array(
|
|
|
|
'class' => 'pholio-uploaded-image',
|
|
|
|
'sigil' => 'pholio-drop-image',
|
2013-07-19 23:07:22 +02:00
|
|
|
'meta' => array(
|
|
|
|
'filePHID' => $file->getPHID(),
|
|
|
|
'replacesPHID' => $replaces_phid,
|
|
|
|
),
|
2013-07-19 00:04:08 +02:00
|
|
|
),
|
|
|
|
array(
|
|
|
|
$content,
|
|
|
|
$input,
|
2013-07-19 23:07:22 +02:00
|
|
|
$replaces_input,
|
2013-07-19 00:04:08 +02:00
|
|
|
));
|
|
|
|
}
|
|
|
|
|
|
|
|
private function renderRemoveElement() {
|
|
|
|
return javelin_tag(
|
|
|
|
'a',
|
|
|
|
array(
|
|
|
|
'class' => 'button grey',
|
|
|
|
'sigil' => 'pholio-drop-remove',
|
|
|
|
),
|
|
|
|
'X');
|
2013-07-16 22:31:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|