Add launch statistics to dashboard

This commit is contained in:
lashman
2026-02-27 23:41:22 +02:00
parent 78f004ff4f
commit 8934e66f6d
2 changed files with 85 additions and 1 deletions

View File

@@ -1744,6 +1744,53 @@ impl Database {
Ok(self.conn.last_insert_rowid())
}
// --- Launch statistics ---
pub fn get_top_launched(&self, limit: i32) -> SqlResult<Vec<(String, u64)>> {
let mut stmt = self.conn.prepare(
"SELECT a.app_name, COUNT(l.id) as cnt
FROM launch_events l
JOIN appimages a ON a.id = l.appimage_id
GROUP BY l.appimage_id
ORDER BY cnt DESC
LIMIT ?1"
)?;
let rows = stmt.query_map(params![limit], |row| {
Ok((
row.get::<_, Option<String>>(0)?.unwrap_or_else(|| "Unknown".to_string()),
row.get::<_, u64>(1)?,
))
})?;
rows.collect()
}
pub fn get_total_launch_count(&self) -> SqlResult<u64> {
self.conn.query_row(
"SELECT COUNT(*) FROM launch_events",
[],
|row| row.get(0),
)
}
pub fn get_last_launch(&self) -> SqlResult<Option<(String, String)>> {
match self.conn.query_row(
"SELECT a.app_name, l.launched_at
FROM launch_events l
JOIN appimages a ON a.id = l.appimage_id
ORDER BY l.launched_at DESC
LIMIT 1",
[],
|row| Ok((
row.get::<_, Option<String>>(0)?.unwrap_or_else(|| "Unknown".to_string()),
row.get::<_, String>(1)?,
)),
) {
Ok(pair) => Ok(Some(pair)),
Err(rusqlite::Error::QueryReturnedNoRows) => Ok(None),
Err(e) => Err(e),
}
}
// --- Source URL ---
pub fn set_source_url(&self, id: i64, url: Option<&str>) -> SqlResult<()> {

View File

@@ -39,7 +39,10 @@ pub fn build_dashboard_page(db: &Rc<Database>) -> adw::NavigationPage {
// Section 5: Disk Usage (actionable)
content.append(&build_disk_usage_group(db));
// Section 6: Quick Actions
// Section 6: Activity
content.append(&build_activity_group(db));
// Section 7: Quick Actions
content.append(&build_quick_actions_group());
clamp.set_child(Some(&content));
@@ -350,6 +353,40 @@ fn build_disk_usage_group(db: &Rc<Database>) -> adw::PreferencesGroup {
group
}
fn build_activity_group(db: &Rc<Database>) -> adw::PreferencesGroup {
let group = adw::PreferencesGroup::builder()
.title("Activity")
.description("Launch history and usage statistics")
.build();
let total_launches = db.get_total_launch_count().unwrap_or(0);
let total_row = adw::ActionRow::builder()
.title("Total launches")
.subtitle(&total_launches.to_string())
.build();
group.add(&total_row);
if let Ok(Some((name, time))) = db.get_last_launch() {
let last_row = adw::ActionRow::builder()
.title("Last launched")
.subtitle(&format!("{} - {}", name, time))
.build();
group.add(&last_row);
}
if let Ok(top) = db.get_top_launched(5) {
for (name, count) in &top {
let row = adw::ActionRow::builder()
.title(name)
.subtitle(&format!("{} launches", count))
.build();
group.add(&row);
}
}
group
}
fn build_quick_actions_group() -> adw::PreferencesGroup {
let group = adw::PreferencesGroup::builder()
.title("Quick Actions")