Plugin to UI communication channel, present Sonner toast on failure, clear search on success #48
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Summary
search.clear()helper that plugin authors can call when they want the command input reset after success (similar to Raycast’s behaviour).webContents.sendboilerplate.Motivation
playerctl). When that dependency is missing, we currently fail silently. By exposing an optional toast helper, plugins can gently guide users to install the prerequisite with rich inline messaging.What Changed
Plugin toast support
src/main/pluginToast.tswith a guarded emitter and convenience helpers (toast.show,.success,.error, etc.).winElectron.onPluginToast, piping events to Sonner inusePluginToasts.onPluginToast.Plugin search clearing helper
src/main/pluginSearch.tsand corresponding renderer hookusePluginSearch.searchhelper in their dependency bag; callingsearch.clear()tells the UI to reset the command input.Shared event registry
src/main/pluginEvents.tskeeps a registry of{ channel, register }pairs and routes payloads to whichever window is active.src/main/index.tsnow callsregisterPluginEmitters(() => mainWindow ?? null)instead of hand-wiring each emitter.Screenshots / GIFs
Show Sonner
Clear Search