mirui 0.42.0

A lightweight, no_std ECS-driven UI framework for embedded, desktop, and WebAssembly
Documentation
//! Bridge `InputEvent::AppSuspend` / `AppResume` from backends through
//! `SuspendRequest` so `App::tick` flips `App::suspend()` / `App::resume()`
//! the next time it drains the resource.
//!
//! Plug it in to make the app react to OS lifecycle signals (SDL focus
//! loss, browser tab hide, mobile background) without writing any
//! glue in user code. Omit it to let `App::suspend` / `App::resume`
//! stay strictly host-driven.

use crate::app::lifecycle::SuspendRequest;
use crate::app::plugin::Plugin;
use crate::app::{App, RendererFactory};
use crate::ecs::World;
use crate::input::event::input::InputEvent;
use crate::surface::Surface;

/// **Inserts**
/// - resource: `SuspendRequest` (only on lifecycle events; otherwise none)
/// - hooks:    `on_event` (swallows `AppSuspend` / `AppResume`)
#[derive(Default)]
pub struct AutoSuspendPlugin;

impl<B, F> Plugin<B, F> for AutoSuspendPlugin
where
    B: Surface,
    F: RendererFactory<B>,
{
    fn build(&mut self, _app: &mut App<B, F>) {}

    fn on_event(&mut self, world: &mut World, event: &InputEvent) -> bool {
        match event {
            InputEvent::AppSuspend => {
                world.insert_resource(SuspendRequest::Suspend);
                true
            }
            InputEvent::AppResume => {
                world.insert_resource(SuspendRequest::Resume);
                true
            }
            _ => false,
        }
    }
}