fix(analyticsApi): fixed last_30_days_data (5)
Build and Push Docker image / build-and-push (push) Successful in 2m10s Details

This commit is contained in:
Valentin Kolb 2024-11-13 02:12:20 +01:00
parent 21908ecfb4
commit b0b92f0e64
1 changed files with 18 additions and 10 deletions

View File

@ -145,15 +145,20 @@ func initPageViewCount(app *pocketbase.PocketBase, e *core.ServeEvent) {
(
SELECT json_group_array(
json_object(
'date', strftime('%Y-%m-%d', created),
'count', COUNT(id)
'date', date,
'count', daily_count
)
)
FROM analyticsPageViews
WHERE
path = view.path AND
created >= datetime('now', '-30 days')
GROUP BY strftime('%Y-%m-%d', created)
FROM (
SELECT
strftime('%Y-%m-%d', created) AS date,
COUNT(id) AS daily_count
FROM analyticsPageViews
WHERE
path = view.path AND
created >= datetime('now', '-30 days')
GROUP BY date
) AS daily_data
) AS last_30_days_data
FROM
analyticsPageViews view
@ -192,14 +197,17 @@ func initPageViewCount(app *pocketbase.PocketBase, e *core.ServeEvent) {
})
}
// Return the final JSON response
return c.JSON(200, map[string]interface{}{
// Final response structure
response := map[string]interface{}{
"page": page,
"perPage": perPage,
"totalItems": totalItems,
"totalPages": totalPages,
"items": items,
})
}
// Return the final JSON response
return c.JSON(200, response)
}, apis.ActivityLogger(app))
}