mirror of
https://framagit.org/tom79/fediplan.git
synced 2025-04-04 21:21:51 +02:00
Fix issue #13 - Previous scheduled messages are not displayed when scrolling down the list
This commit is contained in:
parent
f0881c2d51
commit
60b919fd4a
3 changed files with 6 additions and 6 deletions
2
.env
2
.env
|
@ -15,7 +15,7 @@
|
|||
# https://symfony.com/doc/current/best_practices.html#use-environment-variables-for-infrastructure-configuration
|
||||
|
||||
###> symfony/framework-bundle ###
|
||||
APP_ENV=prod
|
||||
APP_ENV=dev
|
||||
APP_SECRET=7189792ca5da6b84aff72ec1c63d95ae
|
||||
###< symfony/framework-bundle ###
|
||||
|
||||
|
|
|
@ -283,7 +283,7 @@ class FediPlanController extends AbstractController
|
|||
name: 'load_more',
|
||||
options: ['expose' => true]
|
||||
)]
|
||||
public function loadMoreAction(Mastodon_api $mastodon_api, ?string $max_id = null): JsonResponse
|
||||
public function loadMoreAction(Mastodon_api $mastodon_api, ?string $max_id = null , int $limit = 10): JsonResponse
|
||||
{
|
||||
/** @var $user MastodonAccount */
|
||||
$user = $this->getUser();
|
||||
|
@ -292,12 +292,13 @@ class FediPlanController extends AbstractController
|
|||
$type = explode(" ", $user->getToken())[0];
|
||||
$mastodon_api->set_token($token, $type);
|
||||
$params = [];
|
||||
$params['limit'] = $limit;
|
||||
if ($max_id != null) {
|
||||
$params['max_id'] = $max_id;
|
||||
}
|
||||
$scheduled_reply = $mastodon_api->get_scheduled($params);
|
||||
$statuses = $mastodon_api->getScheduledStatuses($scheduled_reply['response'], $user);
|
||||
$data['max_id'] = $scheduled_reply['max_id'];
|
||||
$data['max_id'] = $statuses[count($statuses)-1]->getId();
|
||||
$data['html'] = $this->renderView('fediplan/Ajax/layout.html.twig', ['statuses' => $statuses]);
|
||||
return new JsonResponse($data);
|
||||
}
|
||||
|
|
|
@ -48,8 +48,7 @@
|
|||
$(document).ready(function() {
|
||||
window.max_id = "";
|
||||
$(window).scroll(function() {
|
||||
|
||||
if(($(window).scrollTop() == $(document).height() - $(window).height() )&& max_id != null) {
|
||||
if(($(window).scrollTop() === $(document).height() - $(window).height() )&& max_id != null) {
|
||||
loadMore();
|
||||
}
|
||||
});
|
||||
|
@ -64,7 +63,7 @@
|
|||
.done(function(data) {
|
||||
$("#content").append(data.html);
|
||||
$('#loader').addClass("d-none");
|
||||
if( typeof data.html != "undefined" && data.html != "") {
|
||||
if( typeof data.html != "undefined" && data.html !== "") {
|
||||
// $("#no_content").addClass("d-none");
|
||||
}else{
|
||||
$("#no_content").removeClass("d-none");
|
||||
|
|
Loading…
Add table
Reference in a new issue