feat(fe): replace /authorize curtain with breathe-sparkle background#4025
Merged
Conversation
|
✅ No security or compliance issues detected. Reviewed everything up to 7d1a848. Security Overview
Detected Code Changes| Change Type | Relevant files ... (code changes summary truncated to fit VCS comment limits.) |
Contributor
There was a problem hiding this comment.
Pull request overview
This PR updates the desktop authorize redirect “curtain” background by introducing a new breathing dot-grid canvas with Perlin-driven sparkles, and wiring it into the authorize redirect view in place of the existing FlairCanvas + drop-wave trigger plumbing.
Changes:
- Added
BreatheSparkleCanvas.svelteto render the new breathing dot-grid + sparkle rings animation. - Updated
RedirectAnimationView.svelteto useBreatheSparkleCanvasand removed the unusedtriggerAnimation/clearAnimationbindings and effect.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
src/frontend/src/routes/(new-styling)/authorize/views/RedirectAnimationView.svelte |
Swaps the authorize redirect background from FlairCanvas to BreatheSparkleCanvas and removes animation trigger plumbing. |
src/frontend/src/lib/components/backgrounds/BreatheSparkleCanvas.svelte |
New canvas-based background component implementing the breathing dot-grid and sparkle ring rendering loop. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
aterga
approved these changes
Jun 18, 2026
aterga
reviewed
Jun 18, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Updating the background animation on the authorize flow.
Changes
BreatheSparkleCanvas.svelte— a focused canvas that renders a 28px dot grid breathing as0.5 + 0.5·sin(t·0.7 + (x+y)·0.004), with Perlin-noise–driven hollow-ring sparkles flaring softly across it. Reuses the existingPerlinNoise3Dutil.FlairCanvas+DROP_WAVE_ANIMATIONinRedirectAnimationView.sveltefor the new canvas. Removes the now-unusedtriggerAnimation/clearAnimationplumbing in this view.