slint/demos/home-automation/rust/lib.rs
2025-05-08 13:19:03 +03:00

44 lines
1.4 KiB
Rust

// Copyright © SixtyFPS GmbH <info@slint.dev>
// SPDX-License-Identifier: MIT
use chrono::{Datelike, Local, Timelike};
use slint::{Timer, TimerMode};
#[cfg(target_arch = "wasm32")]
use wasm_bindgen::prelude::*;
slint::slint! {
export { Api, AppWindow } from "../ui/demo.slint";
}
#[cfg_attr(target_arch = "wasm32", wasm_bindgen(start))]
pub fn main() {
// This provides better error messages in debug mode.
// It's disabled in release mode so it doesn't bloat up the file size.
#[cfg(all(debug_assertions, target_arch = "wasm32"))]
console_error_panic_hook::set_once();
let app = AppWindow::new().expect("AppWindow::new() failed");
let app_weak = app.as_weak();
let timer = Timer::default();
timer.start(TimerMode::Repeated, std::time::Duration::from_millis(1000), move || {
if let Some(app) = app_weak.upgrade() {
let api = app.global::<Api>();
let now = Local::now();
let mut date = Date::default();
date.year = now.year() as i32;
date.month = now.month() as i32;
date.day = now.day() as i32;
api.set_current_date(date);
let mut time = Time::default();
time.hour = now.hour() as i32;
time.minute = now.minute() as i32;
time.second = now.second() as i32;
api.set_current_time(time);
}
});
app.run().expect("AppWindow::run() failed");
}