diff options
author | GeckoEidechse <40122905+GeckoEidechse@users.noreply.github.com> | 2023-01-04 20:58:54 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-04 20:58:54 +0100 |
commit | 4a63e92ea30fc65cf945b163d2757f17dd3c68cd (patch) | |
tree | ba920c2872f8bd9f6ee4ea338d630b4887e50010 /src-tauri/src/main.rs | |
parent | 131b101045bbc4419f98afe58557a8d532af9bd6 (diff) | |
download | FlightCore-4a63e92ea30fc65cf945b163d2757f17dd3c68cd.tar.gz FlightCore-4a63e92ea30fc65cf945b163d2757f17dd3c68cd.zip |
refactor: Remove unnecessary caller function pattern (#128)
* refactor: Remove unnecessary caller function
Instead call `disable_all_but_core` directly
* refactor: Remove unnecessary caller function
Instead call `get_installed_mods_and_properties` directly
* refactor: Remove unused exposed backend function
* refactor: Remove unnecessary caller function
Instead call `set_mod_enabled_status` directly
* refactor: Remove unnecessary caller function
Instead call `verify_game_files` directly
* refactor: Remove unnecessary caller function
Instead call `get_log_list` directly
Diffstat (limited to 'src-tauri/src/main.rs')
-rw-r--r-- | src-tauri/src/main.rs | 48 |
1 files changed, 5 insertions, 43 deletions
diff --git a/src-tauri/src/main.rs b/src-tauri/src/main.rs index 7d08e72e..0d7e69af 100644 --- a/src-tauri/src/main.rs +++ b/src-tauri/src/main.rs @@ -92,15 +92,14 @@ fn main() { update_northstar_caller, launch_northstar_caller, check_is_flightcore_outdated_caller, - get_log_list_caller, - verify_game_files_caller, - get_enabled_mods_caller, - set_mod_enabled_status_caller, - disable_all_but_core_caller, + get_log_list, + verify_game_files, + set_mod_enabled_status, + disable_all_but_core, is_debug_mode, get_northstar_release_notes, linux_checks, - get_installed_mods_caller, + get_installed_mods_and_properties, install_mod_caller, clean_up_download_folder_caller, get_newest_flightcore_version, @@ -277,43 +276,6 @@ async fn launch_northstar_caller( } #[tauri::command] -/// Get list of Northstar logs -async fn get_log_list_caller(game_install: GameInstall) -> Result<Vec<std::path::PathBuf>, String> { - get_log_list(game_install) -} - -#[tauri::command] -async fn verify_game_files_caller(game_install: GameInstall) -> Result<String, String> { - verify_game_files(game_install) -} - -#[tauri::command] -async fn get_enabled_mods_caller( - game_install: GameInstall, -) -> Result<serde_json::value::Value, String> { - get_enabled_mods(game_install) -} - -#[tauri::command] -async fn set_mod_enabled_status_caller( - game_install: GameInstall, - mod_name: String, - is_enabled: bool, -) -> Result<(), String> { - set_mod_enabled_status(game_install, mod_name, is_enabled) -} - -#[tauri::command] -async fn disable_all_but_core_caller(game_install: GameInstall) -> Result<(), String> { - disable_all_but_core(game_install) -} - -#[tauri::command] -async fn get_installed_mods_caller(game_install: GameInstall) -> Result<Vec<NorthstarMod>, String> { - get_installed_mods_and_properties(game_install) -} - -#[tauri::command] /// Installs the specified mod async fn install_mod_caller( game_install: GameInstall, |