chore: update documentation

This commit is contained in:
Lucas Nogueira
2026-09-22 11:30:47 -03:00
parent d869c162a7
commit a87a3c7d44
104 changed files with 4875 additions and 222 deletions
+37
View File
@@ -2,16 +2,53 @@
// SPDX-License-Identifier: Apache-2.0
// SPDX-License-Identifier: MIT
/**
* Automatically launch your application at startup.
*
* @module
*/
import { invoke } from '@tauri-apps/api/core'
/**
* Checks whether autostart is enabled for the application.
* @example
* ```typescript
* import { isEnabled } from '@tauri-apps/plugin-autostart';
* const enabled = await isEnabled();
* ```
*
* @returns A promise resolving to `true` if the application launches at startup, `false` otherwise.
* @since 2.0.0
*/
export async function isEnabled(): Promise<boolean> {
return await invoke('plugin:autostart|is_enabled')
}
/**
* Enables autostart for the application.
* @example
* ```typescript
* import { enable } from '@tauri-apps/plugin-autostart';
* await enable();
* ```
*
* @since 2.0.0
*/
export async function enable(): Promise<void> {
await invoke('plugin:autostart|enable')
}
/**
* Disables autostart for the application.
* @example
* ```typescript
* import { disable } from '@tauri-apps/plugin-autostart';
* await disable();
* ```
*
* @since 2.0.0
*/
export async function disable(): Promise<void> {
await invoke('plugin:autostart|disable')
}
+47 -12
View File
@@ -22,17 +22,28 @@ use std::env::current_exe;
type Result<T> = std::result::Result<T, Error>;
/// The strategy used to register the application for auto start on macOS.
///
/// The builder's default is [`MacosLauncher::LaunchAgent`].
#[derive(Debug, Default, Copy, Clone)]
pub enum MacosLauncher {
/// Auto start by installing a Launch Agent plist under `~/Library/LaunchAgents`,
/// which macOS starts automatically at login.
#[default]
LaunchAgent,
/// Auto start by adding a login item through an AppleScript command sent to the
/// "System Events" application.
AppleScript,
}
/// The error type of this plugin.
#[derive(Debug, thiserror::Error)]
pub enum Error {
/// An I/O error, for example while resolving the current executable's path.
#[error(transparent)]
Io(#[from] std::io::Error),
/// An error forwarded from the underlying `auto_launch` operation, converted to its
/// string representation.
#[error("{0}")]
Anyhow(String),
}
@@ -46,9 +57,19 @@ impl Serialize for Error {
}
}
/// Manages the auto start (launch at login) state of the application.
///
/// An instance is created and managed as Tauri state when the plugin is built; access it
/// through [`ManagerExt::autolaunch`].
pub struct AutoLaunchManager(AutoLaunch);
impl AutoLaunchManager {
/// Enables auto start, registering the application to launch at login.
///
/// ## Errors
///
/// Returns [`Error::Anyhow`] if the platform-specific registration fails, for example
/// when the application path does not exist or is not absolute.
pub fn enable(&self) -> Result<()> {
self.0
.enable()
@@ -56,6 +77,11 @@ impl AutoLaunchManager {
.map_err(Error::Anyhow)
}
/// Disables auto start, removing the application from the list of programs launched at login.
///
/// ## Errors
///
/// Returns [`Error::Anyhow`] if the platform-specific removal fails.
pub fn disable(&self) -> Result<()> {
self.0
.disable()
@@ -63,6 +89,11 @@ impl AutoLaunchManager {
.map_err(Error::Anyhow)
}
/// Returns whether auto start is currently enabled for the application.
///
/// ## Errors
///
/// Returns [`Error::Anyhow`] if the platform-specific check fails.
pub fn is_enabled(&self) -> Result<bool> {
self.0
.is_enabled()
@@ -71,6 +102,8 @@ impl AutoLaunchManager {
}
}
/// Extensions to [`tauri::App`], [`tauri::AppHandle`], [`tauri::WebviewWindow`], [`tauri::Webview`]
/// and [`tauri::Window`] to access the autostart APIs.
pub trait ManagerExt<R: Runtime> {
/// TODO: Rename these to `autostart` or `auto_start` in v3
fn autolaunch(&self) -> State<'_, AutoLaunchManager>;
@@ -98,6 +131,8 @@ async fn is_enabled(manager: State<'_, AutoLaunchManager>) -> Result<bool> {
manager.is_enabled()
}
/// Builder for the autostart plugin, used to configure the startup arguments, application
/// name, and — on macOS — the launch strategy before calling [`Builder::build`].
#[derive(Default)]
pub struct Builder {
#[cfg(target_os = "macos")]
@@ -116,11 +151,10 @@ impl Builder {
///
/// ## Examples
///
/// ```no_run
/// Builder::new()
/// ```
/// tauri_plugin_autostart::Builder::new()
/// .arg("--from-autostart")
/// .arg("--hey")
/// .build();
/// .arg("--hey");
/// ```
pub fn arg<S: Into<String>>(mut self, arg: S) -> Self {
self.args.push(arg.into());
@@ -131,10 +165,8 @@ impl Builder {
///
/// ## Examples
///
/// ```no_run
/// Builder::new()
/// .args(["--from-autostart", "--hey"])
/// .build();
/// ```
/// tauri_plugin_autostart::Builder::new().args(["--from-autostart", "--hey"]);
/// ```
pub fn args<I, S>(mut self, args: I) -> Self
where
@@ -159,16 +191,19 @@ impl Builder {
///
/// ## Examples
///
/// ```no_run
/// Builder::new()
/// .app_name("My Custom Name")
/// .build();
/// ```
/// tauri_plugin_autostart::Builder::new().app_name("My Custom Name");
/// ```
pub fn app_name<S: Into<String>>(mut self, app_name: S) -> Self {
self.app_name = Some(app_name.into());
self
}
/// Builds the autostart [`TauriPlugin`] with the configured options.
///
/// On setup, it resolves the current executable's path (or the AppImage path on Linux,
/// when available) and manages an [`AutoLaunchManager`] built from it, so that
/// [`ManagerExt::autolaunch`] can be used from anywhere in the application.
pub fn build<R: Runtime>(self) -> TauriPlugin<R> {
PluginBuilder::new("autostart")
.invoke_handler(tauri::generate_handler![enable, disable, is_enabled])