mirror of
https://github.com/tauri-apps/plugins-workspace.git
synced 2026-09-22 21:30:44 +02:00
66 lines
1.8 KiB
Rust
66 lines
1.8 KiB
Rust
// Copyright 2019-2023 Tauri Programme within The Commons Conservancy
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
//! Access device geolocation APIs.
|
|
//!
|
|
//! ## Cargo features
|
|
//!
|
|
//! - **specta**: Add support for [`specta::specta`](https://docs.rs/specta/2.0.0-rc.25/specta/attr.specta.html) on structs like [`PermissionStatus`], [`PositionOptions`].
|
|
|
|
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::Geolocation;
|
|
#[cfg(mobile)]
|
|
pub use mobile::Geolocation;
|
|
|
|
/// Extensions to [`tauri::App`], [`tauri::AppHandle`], [`tauri::WebviewWindow`], [`tauri::Webview`] and [`tauri::Window`] to access the geolocation APIs.
|
|
pub trait GeolocationExt<R: Runtime> {
|
|
/// Returns the handle to the geolocation APIs.
|
|
fn geolocation(&self) -> &Geolocation<R>;
|
|
}
|
|
|
|
impl<R: Runtime, T: Manager<R>> crate::GeolocationExt<R> for T {
|
|
fn geolocation(&self) -> &Geolocation<R> {
|
|
self.state::<Geolocation<R>>().inner()
|
|
}
|
|
}
|
|
|
|
/// Initializes the plugin.
|
|
pub fn init<R: Runtime>() -> TauriPlugin<R> {
|
|
Builder::new("geolocation")
|
|
.invoke_handler(tauri::generate_handler![
|
|
commands::get_current_position,
|
|
commands::watch_position,
|
|
commands::clear_watch,
|
|
commands::check_permissions,
|
|
commands::request_permissions
|
|
])
|
|
.setup(|app, api| {
|
|
#[cfg(mobile)]
|
|
let geolocation = mobile::init(app, api)?;
|
|
#[cfg(desktop)]
|
|
let geolocation = desktop::init(app, api)?;
|
|
app.manage(geolocation);
|
|
Ok(())
|
|
})
|
|
.build()
|
|
}
|