123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- <?php
- if (!defined('GNUSOCIAL')) { exit(1); }
- class ThreadedNoticeListItem extends NoticeListItem
- {
- protected $userProfile = null;
- function __construct(Notice $notice, Action $out=null, $profile=null)
- {
- parent::__construct($notice, $out);
- $this->userProfile = $profile;
- }
- function initialItems()
- {
- return 3;
- }
-
- function showEnd()
- {
- $max = $this->initialItems();
- if (!$this->repeat instanceof Notice) {
- $stream = new ConversationNoticeStream($this->notice->conversation, $this->userProfile);
- $notice = $stream->getNotices(0, $max + 2);
- $notices = array();
- $cnt = 0;
- $moreCutoff = null;
- while ($notice->fetch()) {
- if (Event::handle('StartAddNoticeReply', array($this, $this->notice, $notice))) {
-
- if (!empty($notice->repeat_of)) {
- continue;
- }
- if ($notice->id == $this->notice->id) {
-
- continue;
- }
- if (!$notice->isVerb([ActivityVerb::POST])) {
- continue;
- }
- $cnt++;
- if ($cnt > $max) {
-
- $moreCutoff = clone($notice);
- break;
- }
- $notices[] = clone($notice);
- Event::handle('EndAddNoticeReply', array($this, $this->notice, $notice));
- }
- }
- if (Event::handle('StartShowThreadedNoticeTail', array($this, $this->notice, &$notices))) {
- $threadActive = count($notices) > 0;
- $this->out->elementStart('ul', 'notices threaded-replies xoxo');
- if (Event::handle('StartShowThreadedNoticeTailItems', array($this, $this->notice, &$threadActive))) {
-
- Event::handle('EndShowThreadedNoticeTailItems', array($this, $this->notice, &$threadActive));
- }
- if (count($notices)>0) {
- if ($moreCutoff) {
- $item = new ThreadedNoticeListMoreItem($moreCutoff, $this->out, count($notices));
- $item->show();
- }
- foreach (array_reverse($notices) as $notice) {
- if (Event::handle('StartShowThreadedNoticeSub', array($this, $this->notice, $notice))) {
- $item = new ThreadedNoticeListSubItem($notice, $this->notice, $this->out);
- $item->show();
- Event::handle('EndShowThreadedNoticeSub', array($this, $this->notice, $notice));
- }
- }
- }
- Event::handle('EndShowThreadedNoticeTail', array($this, $this->notice, $notices));
- $this->out->elementEnd('ul');
- }
- }
- parent::showEnd();
- }
- }
|