mirror of
https://github.com/tauri-apps/plugins-workspace.git
synced 2026-06-06 13:53:54 +02:00
feat(global-shortcut): add plugin (#324)
Co-authored-by: Amr Bashir <amr.bashir2015@gmail.com>
This commit is contained in:
committed by
GitHub
parent
8cd7d3501b
commit
4b66ba03a5
@@ -0,0 +1,22 @@
|
||||
use serde::{Serialize, Serializer};
|
||||
|
||||
#[derive(Debug, thiserror::Error)]
|
||||
pub enum Error {
|
||||
#[error("{0}")]
|
||||
GlobalHotkey(String),
|
||||
}
|
||||
|
||||
impl Serialize for Error {
|
||||
fn serialize<S>(&self, serializer: S) -> std::result::Result<S::Ok, S::Error>
|
||||
where
|
||||
S: Serializer,
|
||||
{
|
||||
serializer.serialize_str(self.to_string().as_ref())
|
||||
}
|
||||
}
|
||||
|
||||
impl From<global_hotkey::Error> for Error {
|
||||
fn from(value: global_hotkey::Error) -> Self {
|
||||
Self::GlobalHotkey(value.to_string())
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,321 @@
|
||||
use std::{
|
||||
collections::HashMap,
|
||||
str::FromStr,
|
||||
sync::{Arc, Mutex},
|
||||
};
|
||||
|
||||
pub use global_hotkey::hotkey::{Code, HotKey as Shortcut, Modifiers};
|
||||
use global_hotkey::{GlobalHotKeyEvent, GlobalHotKeyManager};
|
||||
use tauri::{
|
||||
api::ipc::CallbackFn,
|
||||
plugin::{Builder as PluginBuilder, TauriPlugin},
|
||||
AppHandle, Manager, Runtime, State, Window,
|
||||
};
|
||||
|
||||
mod error;
|
||||
|
||||
pub use error::Error;
|
||||
type Result<T> = std::result::Result<T, Error>;
|
||||
type HotKeyId = u32;
|
||||
type HandlerFn = Box<dyn Fn(&Shortcut) + Send + Sync + 'static>;
|
||||
|
||||
enum ShortcutSource<R: Runtime> {
|
||||
Ipc {
|
||||
window: Window<R>,
|
||||
handler: CallbackFn,
|
||||
},
|
||||
Rust,
|
||||
}
|
||||
|
||||
impl<R: Runtime> Clone for ShortcutSource<R> {
|
||||
fn clone(&self) -> Self {
|
||||
match self {
|
||||
Self::Ipc { window, handler } => Self::Ipc {
|
||||
window: window.clone(),
|
||||
handler: *handler,
|
||||
},
|
||||
Self::Rust => Self::Rust,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
pub struct ShortcutWrapper(Shortcut);
|
||||
|
||||
impl From<Shortcut> for ShortcutWrapper {
|
||||
fn from(value: Shortcut) -> Self {
|
||||
Self(value)
|
||||
}
|
||||
}
|
||||
|
||||
impl TryFrom<&str> for ShortcutWrapper {
|
||||
type Error = global_hotkey::Error;
|
||||
fn try_from(value: &str) -> std::result::Result<Self, Self::Error> {
|
||||
Shortcut::from_str(value).map(ShortcutWrapper)
|
||||
}
|
||||
}
|
||||
|
||||
struct RegisteredShortcut<R: Runtime> {
|
||||
source: ShortcutSource<R>,
|
||||
shortcut: (Shortcut, Option<String>),
|
||||
}
|
||||
|
||||
pub struct GlobalShortcut<R: Runtime> {
|
||||
#[allow(dead_code)]
|
||||
app: AppHandle<R>,
|
||||
manager: std::result::Result<GlobalHotKeyManager, global_hotkey::Error>,
|
||||
shortcuts: Arc<Mutex<HashMap<HotKeyId, RegisteredShortcut<R>>>>,
|
||||
}
|
||||
|
||||
impl<R: Runtime> GlobalShortcut<R> {
|
||||
fn register_internal(
|
||||
&self,
|
||||
shortcut: (Shortcut, Option<String>),
|
||||
source: ShortcutSource<R>,
|
||||
) -> Result<()> {
|
||||
let id = shortcut.0.id();
|
||||
acquire_manager(&self.manager)?.register(shortcut.0)?;
|
||||
self.shortcuts
|
||||
.lock()
|
||||
.unwrap()
|
||||
.insert(id, RegisteredShortcut { source, shortcut });
|
||||
Ok(())
|
||||
}
|
||||
|
||||
fn register_all_internal<S: IntoIterator<Item = (Shortcut, Option<String>)>>(
|
||||
&self,
|
||||
shortcuts: S,
|
||||
source: ShortcutSource<R>,
|
||||
) -> Result<()> {
|
||||
let hotkeys = shortcuts
|
||||
.into_iter()
|
||||
.collect::<Vec<(Shortcut, Option<String>)>>();
|
||||
|
||||
let manager = acquire_manager(&self.manager)?;
|
||||
let mut shortcuts = self.shortcuts.lock().unwrap();
|
||||
for hotkey in hotkeys {
|
||||
manager.register(hotkey.0)?;
|
||||
|
||||
shortcuts.insert(
|
||||
hotkey.0.id(),
|
||||
RegisteredShortcut {
|
||||
source: source.clone(),
|
||||
shortcut: hotkey,
|
||||
},
|
||||
);
|
||||
}
|
||||
|
||||
Ok(())
|
||||
}
|
||||
|
||||
pub fn register<S: TryInto<ShortcutWrapper>>(&self, shortcut: S) -> Result<()>
|
||||
where
|
||||
S::Error: std::error::Error,
|
||||
{
|
||||
self.register_internal((try_into_shortcut(shortcut)?, None), ShortcutSource::Rust)
|
||||
}
|
||||
|
||||
pub fn register_all<T: TryInto<ShortcutWrapper>, S: IntoIterator<Item = T>>(
|
||||
&self,
|
||||
shortcuts: S,
|
||||
) -> Result<()>
|
||||
where
|
||||
T::Error: std::error::Error,
|
||||
{
|
||||
let mut s = Vec::new();
|
||||
for shortcut in shortcuts {
|
||||
s.push((try_into_shortcut(shortcut)?, None));
|
||||
}
|
||||
self.register_all_internal(s, ShortcutSource::Rust)
|
||||
}
|
||||
|
||||
pub fn unregister<S: TryInto<ShortcutWrapper>>(&self, shortcut: S) -> Result<()>
|
||||
where
|
||||
S::Error: std::error::Error,
|
||||
{
|
||||
acquire_manager(&self.manager)?
|
||||
.unregister(try_into_shortcut(shortcut)?)
|
||||
.map_err(Into::into)
|
||||
}
|
||||
|
||||
pub fn unregister_all<T: TryInto<ShortcutWrapper>, S: IntoIterator<Item = T>>(
|
||||
&self,
|
||||
shortcuts: S,
|
||||
) -> Result<()>
|
||||
where
|
||||
T::Error: std::error::Error,
|
||||
{
|
||||
let mut s = Vec::new();
|
||||
for shortcut in shortcuts {
|
||||
s.push(try_into_shortcut(shortcut)?);
|
||||
}
|
||||
acquire_manager(&self.manager)?
|
||||
.unregister_all(&s)
|
||||
.map_err(Into::into)
|
||||
}
|
||||
|
||||
/// Determines whether the given shortcut is registered by this application or not.
|
||||
///
|
||||
/// If the shortcut is registered by another application, it will still return `false`.
|
||||
pub fn is_registered<S: TryInto<ShortcutWrapper>>(&self, shortcut: S) -> bool
|
||||
where
|
||||
S::Error: std::error::Error,
|
||||
{
|
||||
if let Ok(shortcut) = try_into_shortcut(shortcut) {
|
||||
self.shortcuts.lock().unwrap().contains_key(&shortcut.id())
|
||||
} else {
|
||||
false
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
pub trait GlobalShortcutExt<R: Runtime> {
|
||||
fn global_shortcut(&self) -> &GlobalShortcut<R>;
|
||||
}
|
||||
|
||||
impl<R: Runtime, T: Manager<R>> GlobalShortcutExt<R> for T {
|
||||
fn global_shortcut(&self) -> &GlobalShortcut<R> {
|
||||
self.state::<GlobalShortcut<R>>().inner()
|
||||
}
|
||||
}
|
||||
|
||||
fn acquire_manager(
|
||||
manager: &std::result::Result<GlobalHotKeyManager, global_hotkey::Error>,
|
||||
) -> Result<&GlobalHotKeyManager> {
|
||||
manager
|
||||
.as_ref()
|
||||
.map_err(|e| Error::GlobalHotkey(e.to_string()))
|
||||
}
|
||||
|
||||
fn parse_shortcut<S: AsRef<str>>(shortcut: S) -> Result<Shortcut> {
|
||||
shortcut.as_ref().parse().map_err(Into::into)
|
||||
}
|
||||
|
||||
fn try_into_shortcut<S: TryInto<ShortcutWrapper>>(shortcut: S) -> Result<Shortcut>
|
||||
where
|
||||
S::Error: std::error::Error,
|
||||
{
|
||||
shortcut
|
||||
.try_into()
|
||||
.map(|s| s.0)
|
||||
.map_err(|e| Error::GlobalHotkey(e.to_string()))
|
||||
}
|
||||
|
||||
#[tauri::command]
|
||||
fn register<R: Runtime>(
|
||||
window: Window<R>,
|
||||
global_shortcut: State<'_, GlobalShortcut<R>>,
|
||||
shortcut: String,
|
||||
handler: CallbackFn,
|
||||
) -> Result<()> {
|
||||
global_shortcut.register_internal(
|
||||
(parse_shortcut(&shortcut)?, Some(shortcut)),
|
||||
ShortcutSource::Ipc { window, handler },
|
||||
)
|
||||
}
|
||||
|
||||
#[tauri::command]
|
||||
fn register_all<R: Runtime>(
|
||||
window: Window<R>,
|
||||
global_shortcut: State<'_, GlobalShortcut<R>>,
|
||||
shortcuts: Vec<String>,
|
||||
handler: CallbackFn,
|
||||
) -> Result<()> {
|
||||
let mut hotkeys = Vec::new();
|
||||
for shortcut in shortcuts {
|
||||
hotkeys.push((parse_shortcut(&shortcut)?, Some(shortcut)));
|
||||
}
|
||||
global_shortcut.register_all_internal(hotkeys, ShortcutSource::Ipc { window, handler })
|
||||
}
|
||||
|
||||
#[tauri::command]
|
||||
fn unregister<R: Runtime>(
|
||||
_app: AppHandle<R>,
|
||||
global_shortcut: State<'_, GlobalShortcut<R>>,
|
||||
shortcut: String,
|
||||
) -> Result<()> {
|
||||
global_shortcut.unregister(parse_shortcut(shortcut)?)
|
||||
}
|
||||
|
||||
#[tauri::command]
|
||||
fn unregister_all<R: Runtime>(
|
||||
_app: AppHandle<R>,
|
||||
global_shortcut: State<'_, GlobalShortcut<R>>,
|
||||
shortcuts: Vec<String>,
|
||||
) -> Result<()> {
|
||||
let mut hotkeys = Vec::new();
|
||||
for shortcut in shortcuts {
|
||||
hotkeys.push(parse_shortcut(&shortcut)?);
|
||||
}
|
||||
global_shortcut.unregister_all(hotkeys)
|
||||
}
|
||||
|
||||
#[tauri::command]
|
||||
fn is_registered<R: Runtime>(
|
||||
_app: AppHandle<R>,
|
||||
global_shortcut: State<'_, GlobalShortcut<R>>,
|
||||
shortcut: String,
|
||||
) -> Result<bool> {
|
||||
Ok(global_shortcut.is_registered(parse_shortcut(shortcut)?))
|
||||
}
|
||||
|
||||
#[derive(Default)]
|
||||
pub struct Builder {
|
||||
handler: Option<HandlerFn>,
|
||||
}
|
||||
|
||||
impl Builder {
|
||||
pub fn new() -> Self {
|
||||
Self::default()
|
||||
}
|
||||
|
||||
pub fn with_handler<F: Fn(&Shortcut) + Send + Sync + 'static>(handler: F) -> Self {
|
||||
Self {
|
||||
handler: Some(Box::new(handler)),
|
||||
}
|
||||
}
|
||||
|
||||
pub fn build<R: Runtime>(self) -> TauriPlugin<R> {
|
||||
let handler = self.handler;
|
||||
PluginBuilder::new("globalShortcut")
|
||||
.invoke_handler(tauri::generate_handler![
|
||||
register,
|
||||
register_all,
|
||||
unregister,
|
||||
unregister_all,
|
||||
is_registered
|
||||
])
|
||||
.setup(move |app, _api| {
|
||||
let shortcuts =
|
||||
Arc::new(Mutex::new(HashMap::<HotKeyId, RegisteredShortcut<R>>::new()));
|
||||
let shortcuts_ = shortcuts.clone();
|
||||
|
||||
GlobalHotKeyEvent::set_event_handler(Some(move |e: GlobalHotKeyEvent| {
|
||||
if let Some(shortcut) = shortcuts_.lock().unwrap().get(&e.id) {
|
||||
match &shortcut.source {
|
||||
ShortcutSource::Ipc { window, handler } => {
|
||||
let callback_string = tauri::api::ipc::format_callback(
|
||||
*handler,
|
||||
&shortcut.shortcut.1,
|
||||
)
|
||||
.expect("unable to serialize shortcut string to json");
|
||||
let _ = window.eval(callback_string.as_str());
|
||||
}
|
||||
ShortcutSource::Rust => {
|
||||
if let Some(handler) = &handler {
|
||||
handler(&shortcut.shortcut.0);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}));
|
||||
|
||||
app.manage(GlobalShortcut {
|
||||
app: app.clone(),
|
||||
manager: GlobalHotKeyManager::new(),
|
||||
shortcuts,
|
||||
});
|
||||
Ok(())
|
||||
})
|
||||
.build()
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user