mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-11 17:32:41 +01:00
e777f7ad91
Summary: Ref T3572. Pure JS/CSS changes, just cleaning up some of the mess I made and slightly improving the behavior on mobile (you won't be able to edit images on mobile, but you could fix descriptions and titles, at least). Test Plan: {F50887} Reviewers: btrahan, chad Reviewed By: btrahan CC: aran Maniphest Tasks: T3572 Differential Revision: https://secure.phabricator.com/D6500
111 lines
2.4 KiB
PHP
111 lines
2.4 KiB
PHP
<?php
|
|
|
|
/**
|
|
* @group pholio
|
|
*/
|
|
final class PholioUploadedImageView extends AphrontView {
|
|
|
|
private $image;
|
|
private $replacesPHID;
|
|
|
|
public function setReplacesPHID($replaces_phid) {
|
|
$this->replacesPHID = $replaces_phid;
|
|
return $this;
|
|
}
|
|
|
|
public function setImage(PholioImage $image) {
|
|
$this->image = $image;
|
|
return $this;
|
|
}
|
|
|
|
public function render() {
|
|
require_celerity_resource('pholio-edit-css');
|
|
|
|
$image = $this->image;
|
|
$file = $image->getFile();
|
|
$phid = $file->getPHID();
|
|
$replaces_phid = $this->replacesPHID;
|
|
|
|
$remove = $this->renderRemoveElement();
|
|
|
|
$title = id(new AphrontFormTextControl())
|
|
->setName('title_'.$phid)
|
|
->setValue($image->getName())
|
|
->setSigil('image-title')
|
|
->setLabel(pht('Title'));
|
|
|
|
$description = id(new AphrontFormTextAreaControl())
|
|
->setName('description_'.$phid)
|
|
->setValue($image->getDescription())
|
|
->setSigil('image-description')
|
|
->setLabel(pht('Description'));
|
|
|
|
$thumb_frame = phutil_tag(
|
|
'div',
|
|
array(
|
|
'class' => 'pholio-thumb-frame',
|
|
'style' => 'background-image: url('.$file->getThumb280x210URI().');',
|
|
));
|
|
|
|
$content = hsprintf(
|
|
'<div class="pholio-thumb-box">
|
|
<div class="pholio-thumb-title">
|
|
%s
|
|
<div class="pholio-thumb-name">%s</div>
|
|
</div>
|
|
%s
|
|
</div>
|
|
<div class="pholio-image-details">
|
|
%s
|
|
%s
|
|
</div>',
|
|
$remove,
|
|
$file->getName(),
|
|
$thumb_frame,
|
|
$title,
|
|
$description);
|
|
|
|
$input = phutil_tag(
|
|
'input',
|
|
array(
|
|
'type' => 'hidden',
|
|
'name' => 'file_phids[]',
|
|
'value' => $phid,
|
|
));
|
|
|
|
$replaces_input = phutil_tag(
|
|
'input',
|
|
array(
|
|
'type' => 'hidden',
|
|
'name' => 'replaces['.$replaces_phid.']',
|
|
'value' => $phid,
|
|
));
|
|
|
|
return javelin_tag(
|
|
'div',
|
|
array(
|
|
'class' => 'pholio-uploaded-image',
|
|
'sigil' => 'pholio-drop-image',
|
|
'meta' => array(
|
|
'filePHID' => $file->getPHID(),
|
|
'replacesPHID' => $replaces_phid,
|
|
),
|
|
),
|
|
array(
|
|
$content,
|
|
$input,
|
|
$replaces_input,
|
|
));
|
|
}
|
|
|
|
private function renderRemoveElement() {
|
|
return javelin_tag(
|
|
'a',
|
|
array(
|
|
'class' => 'button grey',
|
|
'sigil' => 'pholio-drop-remove',
|
|
),
|
|
'X');
|
|
}
|
|
|
|
}
|