| |
| |
| |
|
|
| use tauri::{command, AppHandle, Runtime, State, Window}; |
|
|
| use crate::{DeepLink, Result}; |
|
|
| #[command] |
| pub(crate) async fn get_current<R: Runtime>( |
| _app: AppHandle<R>, |
| _window: Window<R>, |
| deep_link: State<'_, DeepLink<R>>, |
| ) -> Result<Option<Vec<url::Url>>> { |
| deep_link.get_current() |
| } |
|
|
| #[command] |
| pub(crate) async fn register<R: Runtime>( |
| _app: AppHandle<R>, |
| _window: Window<R>, |
| deep_link: State<'_, DeepLink<R>>, |
| protocol: String, |
| ) -> Result<()> { |
| deep_link.register(protocol) |
| } |
|
|
| #[command] |
| pub(crate) async fn unregister<R: Runtime>( |
| _app: AppHandle<R>, |
| _window: Window<R>, |
| deep_link: State<'_, DeepLink<R>>, |
| protocol: String, |
| ) -> Result<()> { |
| deep_link.unregister(protocol) |
| } |
|
|
| #[command] |
| pub(crate) async fn is_registered<R: Runtime>( |
| _app: AppHandle<R>, |
| _window: Window<R>, |
| deep_link: State<'_, DeepLink<R>>, |
| protocol: String, |
| ) -> Result<bool> { |
| deep_link.is_registered(protocol) |
| } |
|
|