Skip to content
This repository has been archived by the owner on Jan 10, 2025. It is now read-only.

feat: add loader in baseapp #492

Open
wants to merge 38 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
f47d97c
testing fix (might be broken)
vasudev-io Nov 18, 2024
99a1bbd
persistent thinking message
vasudev-io Nov 18, 2024
915def3
single load fix
vasudev-io Nov 18, 2024
c5dc0ed
fix persistency issue
vasudev-io Nov 19, 2024
f1a055f
animated load
vasudev-io Nov 19, 2024
0dba9ab
start stop animation fixed
vasudev-io Nov 19, 2024
fb0913d
fix animation
vasudev-io Nov 19, 2024
bb706f4
add loading spinner and check mark
vasudev-io Nov 19, 2024
381d2b6
use new completed icon
vasudev-io Nov 19, 2024
e6bac9a
fixed alignment
vasudev-io Nov 19, 2024
6165fac
minor fix to the delays
vasudev-io Nov 19, 2024
a9acbb9
make most recent loaded event blue and older ones grey
vasudev-io Nov 19, 2024
2afee13
Merge branch 'feat/metadata-stream' into feat/loader
vasudev-io Nov 20, 2024
5a6e12f
added arrow and drawer
vasudev-io Nov 20, 2024
dd1e223
fixed drawer to use metadata event correctly
vasudev-io Nov 20, 2024
a90f20f
fix drawer animation overfiring
vasudev-io Nov 20, 2024
ce98879
fix display model and provider
vasudev-io Nov 20, 2024
7f00922
fixed continuous logging issue
vasudev-io Nov 20, 2024
13f432b
fix vercel issue
vasudev-io Nov 20, 2024
0a82746
cleanup completed state
vasudev-io Nov 20, 2024
3c49082
vercel fix 2
vasudev-io Nov 20, 2024
eb75d0a
fix spinning gear
vasudev-io Nov 20, 2024
b612448
added states for thinking messages based on metadata
vasudev-io Nov 21, 2024
2e0620d
fix vercel v3
vasudev-io Nov 21, 2024
a8755df
make drawer open downwards
vasudev-io Nov 21, 2024
3c97fbf
rename folder for consistency
vasudev-io Nov 24, 2024
5ac8806
new folder name for consistency
vasudev-io Nov 24, 2024
24a2bd2
fix stale loading issue
vasudev-io Nov 26, 2024
e02a0b1
fix tool use
vasudev-io Nov 27, 2024
9b7a296
smooth the animation
vasudev-io Nov 27, 2024
88de02d
minor fixes
vasudev-io Nov 27, 2024
121f255
unify gear from floaty
vasudev-io Nov 27, 2024
52ceb89
Merge remote-tracking branch 'origin' into feat/loader
vasudev-io Nov 27, 2024
e4d7cce
smooth wave
vasudev-io Nov 27, 2024
4d54636
Merge branch 'feat/loader' of github.com:highlight-ing/highlight-chat…
vasudev-io Nov 27, 2024
21696c3
fix integrations state issue
vasudev-io Nov 27, 2024
2a120d2
fix vercel issue
vasudev-io Nov 27, 2024
3b2d7c8
fix build errors
vasudev-io Nov 27, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
smooth the animation
  • Loading branch information
vasudev-io committed Nov 27, 2024
commit 9b7a296639fe9d21fafb2a7d2bec29513890c0a5
13 changes: 9 additions & 4 deletions src/components/Messages/message.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -202,17 +202,17 @@
color: $light-60;

&.animating {
animation: shimmerWave 2s ease-in-out infinite;
animation: shimmerWave 2s linear infinite;

@for $i from 1 through 100 {
&:nth-child(#{$i}) {
animation-delay: #{($i % 30) * 0.067}s;
animation-delay: #{($i * 0.05)}s;
}
}
}

&.static {
animation: shimmerWave 2s ease-in-out;
animation: shimmerWave 2s linear;
animation-play-state: paused;
}
}
Expand All @@ -230,7 +230,7 @@
}

@keyframes shimmerWave {
0%, 100% {
0% {
opacity: 0.4;
color: $light-60;
transform: scale(0.95);
Expand All @@ -240,6 +240,11 @@
color: $light-100;
transform: scale(1.05);
}
100% {
opacity: 0.4;
color: $light-60;
transform: scale(0.95);
}
}

@keyframes spinGear {
Expand Down