&$byType) { if ($type !== 'users') { continue; } /** @var \DateTime[] $lastComments */ $lastComments = $this->commentsManager->getLastCommentDateByActor( $context['itemType'], $context['itemId'], ChatManager::VERB_MESSAGE, $type, array_map(function (array $suggestion) { return $suggestion['value']['shareWith']; }, $byType)); $search = $context['search']; $selfUserId = $context['selfUserId'] ?? null; usort($byType, static function (array $a, array $b) use ($lastComments, $search, $selfUserId) { if ($selfUserId === $a['value']['shareWith']) { return 1; } if ($selfUserId === $b['value']['shareWith']) { return -1; } if ($search) { // If the user searched for "Dani" we make sure "Daniel" comes before "Madani" if (stripos($a['label'], $search) === 0) { if (stripos($b['label'], $search) !== 0) { return -1; } } elseif (stripos($b['label'], $search) === 0) { return 1; } } if (!isset($lastComments[$b['value']['shareWith']])) { return -1; } if (!isset($lastComments[$a['value']['shareWith']])) { return 1; } return $lastComments[$b['value']['shareWith']]->getTimestamp() - $lastComments[$a['value']['shareWith']]->getTimestamp(); }); } } }