mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
Add comment snippets to feed stories
Summary: Fixes T3622 Test Plan: viewed feed, saw some commentary for both pholio inlines and pholio regular comments Reviewers: epriestley Reviewed By: epriestley CC: chad, aran, Korvin Maniphest Tasks: T3622 Differential Revision: https://secure.phabricator.com/D6570
This commit is contained in:
parent
f75f3a0c3b
commit
f666538702
3 changed files with 28 additions and 0 deletions
|
@ -233,6 +233,17 @@ final class PholioTransaction extends PhabricatorApplicationTransaction {
|
|||
return parent::getTitleForFeed();
|
||||
}
|
||||
|
||||
public function getBodyForFeed() {
|
||||
switch ($this->getTransactionType()) {
|
||||
case PholioTransactionType::TYPE_INLINE:
|
||||
$text = $this->getComment()->getContent();
|
||||
return phutil_escape_html_newlines(
|
||||
phutil_utf8_shorten($text, 128));
|
||||
break;
|
||||
}
|
||||
return parent::getBodyForFeed();
|
||||
}
|
||||
|
||||
public function hasChangeDetails() {
|
||||
switch ($this->getTransactionType()) {
|
||||
case PholioTransactionType::TYPE_DESCRIPTION:
|
||||
|
|
|
@ -44,6 +44,7 @@ class PhabricatorApplicationTransactionFeedStory
|
|||
|
||||
$xaction->setHandles($this->getHandles());
|
||||
$view->setTitle($xaction->getTitleForFeed());
|
||||
$view->appendChild($xaction->getBodyForFeed());
|
||||
|
||||
$view->setImage(
|
||||
$this->getHandle(
|
||||
|
|
|
@ -379,6 +379,22 @@ abstract class PhabricatorApplicationTransaction
|
|||
return $this->getTitle();
|
||||
}
|
||||
|
||||
public function getBodyForFeed() {
|
||||
$old = $this->getOldValue();
|
||||
$new = $this->getNewValue();
|
||||
|
||||
$body = null;
|
||||
|
||||
switch ($this->getTransactionType()) {
|
||||
case PhabricatorTransactions::TYPE_COMMENT:
|
||||
$text = $this->getComment()->getContent();
|
||||
$body = phutil_escape_html_newlines(
|
||||
phutil_utf8_shorten($text, 128));
|
||||
break;
|
||||
}
|
||||
return $body;
|
||||
}
|
||||
|
||||
public function getActionStrength() {
|
||||
switch ($this->getTransactionType()) {
|
||||
case PhabricatorTransactions::TYPE_COMMENT:
|
||||
|
|
Loading…
Reference in a new issue