mirror of
https://github.com/tauri-apps/plugins-workspace.git
synced 2026-04-21 11:26:15 +02:00
a1b3fa27f1
* fix: Re-export api structs * whoops
58 lines
1.4 KiB
Rust
58 lines
1.4 KiB
Rust
// Copyright 2019-2023 Tauri Programme within The Commons Conservancy
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
use tauri::{
|
|
plugin::{Builder, TauriPlugin},
|
|
Manager, Runtime,
|
|
};
|
|
|
|
pub use models::*;
|
|
|
|
#[cfg(desktop)]
|
|
mod desktop;
|
|
#[cfg(mobile)]
|
|
mod mobile;
|
|
|
|
mod commands;
|
|
mod error;
|
|
mod models;
|
|
|
|
pub use error::{Error, Result};
|
|
|
|
#[cfg(desktop)]
|
|
pub use desktop::Haptics;
|
|
#[cfg(mobile)]
|
|
pub use mobile::Haptics;
|
|
|
|
/// Extensions to [`tauri::App`], [`tauri::AppHandle`], [`tauri::WebviewWindow`], [`tauri::Webview`] and [`tauri::Window`] to access the haptics APIs.
|
|
pub trait HapticsExt<R: Runtime> {
|
|
fn haptics(&self) -> &Haptics<R>;
|
|
}
|
|
|
|
impl<R: Runtime, T: Manager<R>> crate::HapticsExt<R> for T {
|
|
fn haptics(&self) -> &Haptics<R> {
|
|
self.state::<Haptics<R>>().inner()
|
|
}
|
|
}
|
|
|
|
/// Initializes the plugin.
|
|
pub fn init<R: Runtime>() -> TauriPlugin<R> {
|
|
Builder::new("haptics")
|
|
.invoke_handler(tauri::generate_handler![
|
|
commands::vibrate,
|
|
commands::impact_feedback,
|
|
commands::notification_feedback,
|
|
commands::selection_feedback
|
|
])
|
|
.setup(|app, api| {
|
|
#[cfg(mobile)]
|
|
let haptics = mobile::init(app, api)?;
|
|
#[cfg(desktop)]
|
|
let haptics = desktop::init(app, api)?;
|
|
app.manage(haptics);
|
|
Ok(())
|
|
})
|
|
.build()
|
|
}
|