| |
| |
| |
|
|
| use serde::{de::DeserializeOwned, Deserialize}; |
| use tauri::{ |
| plugin::{PermissionState, PluginApi, PluginHandle}, |
| AppHandle, Runtime, |
| }; |
|
|
| use crate::models::*; |
|
|
| use std::collections::HashMap; |
|
|
| #[cfg(target_os = "android")] |
| const PLUGIN_IDENTIFIER: &str = "app.tauri.notification"; |
|
|
| #[cfg(target_os = "ios")] |
| tauri::ios_plugin_binding!(init_plugin_notification); |
|
|
| |
| pub fn init<R: Runtime, C: DeserializeOwned>( |
| _app: &AppHandle<R>, |
| api: PluginApi<R, C>, |
| ) -> crate::Result<Notification<R>> { |
| #[cfg(target_os = "android")] |
| let handle = api.register_android_plugin(PLUGIN_IDENTIFIER, "NotificationPlugin")?; |
| #[cfg(target_os = "ios")] |
| let handle = api.register_ios_plugin(init_plugin_notification)?; |
| Ok(Notification(handle)) |
| } |
|
|
| impl<R: Runtime> crate::NotificationBuilder<R> { |
| pub fn show(self) -> crate::Result<()> { |
| self.handle |
| .run_mobile_plugin::<i32>("show", self.data) |
| .map(|_| ()) |
| .map_err(Into::into) |
| } |
| } |
|
|
| |
| |
| |
| pub struct Notification<R: Runtime>(PluginHandle<R>); |
|
|
| impl<R: Runtime> Notification<R> { |
| pub fn builder(&self) -> crate::NotificationBuilder<R> { |
| crate::NotificationBuilder::new(self.0.clone()) |
| } |
|
|
| pub fn request_permission(&self) -> crate::Result<PermissionState> { |
| self.0 |
| .run_mobile_plugin::<PermissionResponse>("requestPermissions", ()) |
| .map(|r| r.permission_state) |
| .map_err(Into::into) |
| } |
|
|
| pub fn permission_state(&self) -> crate::Result<PermissionState> { |
| self.0 |
| .run_mobile_plugin::<PermissionResponse>("checkPermissions", ()) |
| .map(|r| r.permission_state) |
| .map_err(Into::into) |
| } |
|
|
| pub fn register_action_types(&self, types: Vec<ActionType>) -> crate::Result<()> { |
| let mut args = HashMap::new(); |
| args.insert("types", types); |
| self.0 |
| .run_mobile_plugin("registerActionTypes", args) |
| .map_err(Into::into) |
| } |
|
|
| pub fn remove_active(&self, notifications: Vec<i32>) -> crate::Result<()> { |
| let mut args = HashMap::new(); |
| args.insert( |
| "notifications", |
| notifications |
| .into_iter() |
| .map(|id| { |
| let mut notification = HashMap::new(); |
| notification.insert("id", id); |
| notification |
| }) |
| .collect::<Vec<HashMap<&str, i32>>>(), |
| ); |
| self.0 |
| .run_mobile_plugin("removeActive", args) |
| .map_err(Into::into) |
| } |
|
|
| pub fn active(&self) -> crate::Result<Vec<ActiveNotification>> { |
| self.0 |
| .run_mobile_plugin("getActive", ()) |
| .map_err(Into::into) |
| } |
|
|
| pub fn remove_all_active(&self) -> crate::Result<()> { |
| self.0 |
| .run_mobile_plugin("removeActive", ()) |
| .map_err(Into::into) |
| } |
|
|
| pub fn pending(&self) -> crate::Result<Vec<PendingNotification>> { |
| self.0 |
| .run_mobile_plugin("getPending", ()) |
| .map_err(Into::into) |
| } |
|
|
| |
| pub fn cancel(&self, notifications: Vec<i32>) -> crate::Result<()> { |
| let mut args = HashMap::new(); |
| args.insert("notifications", notifications); |
| self.0.run_mobile_plugin("cancel", args).map_err(Into::into) |
| } |
|
|
| |
| pub fn cancel_all(&self) -> crate::Result<()> { |
| self.0.run_mobile_plugin("cancel", ()).map_err(Into::into) |
| } |
|
|
| #[cfg(target_os = "android")] |
| pub fn create_channel(&self, channel: Channel) -> crate::Result<()> { |
| self.0 |
| .run_mobile_plugin("createChannel", channel) |
| .map_err(Into::into) |
| } |
|
|
| #[cfg(target_os = "android")] |
| pub fn delete_channel(&self, id: impl Into<String>) -> crate::Result<()> { |
| let mut args = HashMap::new(); |
| args.insert("id", id.into()); |
| self.0 |
| .run_mobile_plugin("deleteChannel", args) |
| .map_err(Into::into) |
| } |
|
|
| #[cfg(target_os = "android")] |
| pub fn list_channels(&self) -> crate::Result<Vec<Channel>> { |
| self.0 |
| .run_mobile_plugin("listChannels", ()) |
| .map_err(Into::into) |
| } |
| } |
|
|
| #[derive(Deserialize)] |
| #[serde(rename_all = "camelCase")] |
| struct PermissionResponse { |
| permission_state: PermissionState, |
| } |
|
|