| use serde::de::DeserializeOwned; |
| use std::collections::HashMap; |
| use tauri::{plugin::PluginApi, AppHandle, Runtime}; |
|
|
| use crate::models::*; |
|
|
| pub fn init<R: Runtime, C: DeserializeOwned>( |
| app: &AppHandle<R>, |
| _api: PluginApi<R, C>, |
| ) -> crate::Result<NativeBridge<R>> { |
| Ok(NativeBridge(app.clone())) |
| } |
|
|
| |
| pub struct NativeBridge<R: Runtime>(AppHandle<R>); |
|
|
| impl<R: Runtime> NativeBridge<R> { |
| pub fn auth_with_safari(&self, _payload: AuthRequest) -> crate::Result<AuthResponse> { |
| Err(crate::Error::UnsupportedPlatformError) |
| } |
|
|
| pub fn auth_with_custom_tab(&self, _payload: AuthRequest) -> crate::Result<AuthResponse> { |
| Err(crate::Error::UnsupportedPlatformError) |
| } |
|
|
| pub fn copy_uri_to_path(&self, _payload: CopyURIRequest) -> crate::Result<CopyURIResponse> { |
| Err(crate::Error::UnsupportedPlatformError) |
| } |
|
|
| pub fn use_background_audio(&self, _payload: UseBackgroundAudioRequest) -> crate::Result<()> { |
| Err(crate::Error::UnsupportedPlatformError) |
| } |
|
|
| pub fn install_package( |
| &self, |
| _payload: InstallPackageRequest, |
| ) -> crate::Result<InstallPackageResponse> { |
| Err(crate::Error::UnsupportedPlatformError) |
| } |
|
|
| pub fn set_system_ui_visibility( |
| &self, |
| _payload: SetSystemUIVisibilityRequest, |
| ) -> crate::Result<SetSystemUIVisibilityResponse> { |
| Err(crate::Error::UnsupportedPlatformError) |
| } |
|
|
| pub fn get_status_bar_height(&self) -> crate::Result<GetStatusBarHeightResponse> { |
| Err(crate::Error::UnsupportedPlatformError) |
| } |
|
|
| pub fn get_sys_fonts_list(&self) -> crate::Result<GetSysFontsListResponse> { |
| let font_collection = font_enumeration::Collection::new().unwrap(); |
| let mut fonts = HashMap::new(); |
| for font in font_collection.all() { |
| if cfg!(target_os = "windows") { |
| |
| fonts.insert(font.family_name.clone(), font.family_name.clone()); |
| } else { |
| fonts.insert(font.font_name.clone(), font.family_name.clone()); |
| } |
| } |
| Ok(GetSysFontsListResponse { fonts, error: None }) |
| } |
|
|
| pub fn intercept_keys(&self, _payload: InterceptKeysRequest) -> crate::Result<()> { |
| Err(crate::Error::UnsupportedPlatformError) |
| } |
|
|
| pub fn lock_screen_orientation( |
| &self, |
| _payload: LockScreenOrientationRequest, |
| ) -> crate::Result<()> { |
| Err(crate::Error::UnsupportedPlatformError) |
| } |
|
|
| pub fn iap_is_available(&self) -> crate::Result<IAPIsAvailableResponse> { |
| Err(crate::Error::UnsupportedPlatformError) |
| } |
|
|
| pub fn iap_initialize( |
| &self, |
| _payload: IAPInitializeRequest, |
| ) -> crate::Result<IAPInitializeResponse> { |
| Err(crate::Error::UnsupportedPlatformError) |
| } |
|
|
| pub fn iap_fetch_products( |
| &self, |
| _payload: IAPFetchProductsRequest, |
| ) -> crate::Result<IAPFetchProductsResponse> { |
| Err(crate::Error::UnsupportedPlatformError) |
| } |
|
|
| pub fn iap_purchase_product( |
| &self, |
| _payload: IAPPurchaseProductRequest, |
| ) -> crate::Result<IAPPurchaseProductResponse> { |
| Err(crate::Error::UnsupportedPlatformError) |
| } |
|
|
| pub fn iap_restore_purchases(&self) -> crate::Result<IAPRestorePurchasesResponse> { |
| Err(crate::Error::UnsupportedPlatformError) |
| } |
|
|
| pub fn get_system_color_scheme(&self) -> crate::Result<GetSystemColorSchemeResponse> { |
| Err(crate::Error::UnsupportedPlatformError) |
| } |
|
|
| pub fn get_safe_area_insets(&self) -> crate::Result<GetSafeAreaInsetsResponse> { |
| Err(crate::Error::UnsupportedPlatformError) |
| } |
|
|
| pub fn get_screen_brightness(&self) -> crate::Result<GetScreenBrightnessResponse> { |
| Err(crate::Error::UnsupportedPlatformError) |
| } |
|
|
| pub fn set_screen_brightness( |
| &self, |
| _payload: SetScreenBrightnessRequest, |
| ) -> crate::Result<SetScreenBrightnessResponse> { |
| Err(crate::Error::UnsupportedPlatformError) |
| } |
|
|
| pub fn get_external_sdcard_path(&self) -> crate::Result<GetExternalSDCardPathResponse> { |
| Err(crate::Error::UnsupportedPlatformError) |
| } |
|
|
| pub fn open_external_url( |
| &self, |
| _payload: OpenExternalUrlRequest, |
| ) -> crate::Result<OpenExternalUrlResponse> { |
| Err(crate::Error::UnsupportedPlatformError) |
| } |
|
|
| pub fn select_directory(&self) -> crate::Result<SelectDirectoryResponse> { |
| Err(crate::Error::UnsupportedPlatformError) |
| } |
|
|
| pub fn get_storefront_region_code(&self) -> crate::Result<GetStorefrontRegionCodeResponse> { |
| Err(crate::Error::UnsupportedPlatformError) |
| } |
|
|
| pub fn request_manage_storage_permission( |
| &self, |
| ) -> crate::Result<RequestManageStoragePermissionResponse> { |
| Err(crate::Error::UnsupportedPlatformError) |
| } |
| } |
|
|