Further improvements to the automatic update process

This commit is contained in:
Michael 2023-09-17 08:17:31 +00:00
parent e81c911b49
commit f1fa1f0b62
5 changed files with 9 additions and 6 deletions

View File

@ -348,9 +348,9 @@ class Network extends Timeline
$this->order = 'commented';
}
// Upon force (updates in the background) and order by last comment we order by receive date,
// Upon updates in the background and order by last comment we order by receive date,
// since otherwise the feed will optically jump, when some already visible thread has been updated.
if ($this->force && ($this->selectedTab == TimelineEntity::COMMENTED) && !empty($request['first_commented'])) {
if ($this->update && ($this->selectedTab == TimelineEntity::COMMENTED)) {
$this->order = 'received';
}

View File

@ -64,6 +64,8 @@ class Timeline extends BaseModule
protected $noSharer;
/** @var bool */
protected $force;
/** @var bool */
protected $update;
/** @var App\Mode $mode */
protected $mode;
@ -131,7 +133,8 @@ class Timeline extends BaseModule
$this->maxId = $request['max_id'] ?? null;
$this->noSharer = !empty($request['no_sharer']);
$this->force = !empty($request['force']);
$this->force = !empty($request['force']) && !empty($request['item']);
$this->update = !empty($request['force']) && !empty($request['first_received']) && !empty($request['first_created']) && !empty($request['first_uriid']) && !empty($request['first_commented']);
}
protected function getNoSharerWidget(string $base): string

View File

@ -37,7 +37,7 @@ class Channel extends ChannelModule
$this->parseRequest($request);
$o = '';
if ($this->force) {
if ($this->update || $this->force) {
if ($this->timeline->isChannel($this->selectedTab)) {
$items = $this->getChannelItems();
} else {

View File

@ -39,7 +39,7 @@ class Community extends CommunityModule
$this->parseRequest($request);
$o = '';
if ($this->force) {
if ($this->update || $this->force) {
$o = DI::conversation()->render($this->getCommunityItems(), Conversation::MODE_COMMUNITY, true, false, 'commented', DI::userSession()->getLocalUserId());
}

View File

@ -37,7 +37,7 @@ class Network extends NetworkModule
$o = '';
if (!$this->force) {
if (!$this->update && !$this->force) {
System::htmlUpdateExit($o);
}