add server side computing for event listing + fix ordering for some entities

This commit is contained in:
osaajani 2021-07-21 16:42:25 +02:00
parent 8e43c53498
commit 85095ef995
8 changed files with 108 additions and 5 deletions

View file

@ -42,20 +42,43 @@ namespace controllers\publics;
{
$this->render('event/list');
}
/**
* Return events as json.
*/
public function list_json()
{
$entities = $this->internal_event->list_for_user($_SESSION['user']['id']);
$draw = (int) ($_GET['draw'] ?? false);
$columns = [
0 => 'type',
1 => 'at',
2 => 'text',
3 => 'updated_at',
];
$search = $_GET['search']['value'] ?? null;
$order_column = $columns[$_GET['order'][0]['column']] ?? null;
$order_desc = ($_GET['order'][0]['dir'] ?? 'asc') == 'desc' ? true : false;
$offset = (int) ($_GET['start'] ?? 0);
$limit = (int) ($_GET['length'] ?? 25);
$entities = $this->internal_event->datatable_list_for_user($_SESSION['user']['id'], $limit, $offset, $search, $columns, $order_column, $order_desc);
$count_entities = $this->internal_event->datatable_list_for_user($_SESSION['user']['id'], $limit, $offset, $search, $columns, $order_column, $order_desc, true);
foreach ($entities as &$entity)
{
$entity['icon'] = \controllers\internals\Tool::event_type_to_icon($entity['type']);
}
$records_total = $this->internal_event->count_for_user($_SESSION['user']['id']);
header('Content-Type: application/json');
echo json_encode(['data' => $entities]);
echo json_encode([
'draw' => $draw,
'recordsTotal' => $records_total,
'recordsFiltered' => $count_entities,
'data' => $entities,
]);
}
/**