-
-
Notifications
You must be signed in to change notification settings - Fork 4.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ref(quick-start): Add task completion animation #82523
base: master
Are you sure you want to change the base?
Conversation
@ale-cota @evanpurkhiser what do you think of the animation? |
❌ 3 Tests Failed:
View the top 3 failed tests by shortest run time
To view more test analytics, go to the Test Analytics Dashboard |
Feels a bit slow |
/** | ||
* How long (in ms) to delay before beginning to mark tasks complete | ||
*/ | ||
const INITIAL_MARK_COMPLETE_TIMEOUT = 600; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: Should we maybe make this smaller, it seems pretty slow in the video you have shared, i am not sure if users will wait and keep attention that long at the tasks list?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes the same feedback I got from Evan... I will set 450
and see if it improves
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think the speed of the animation itself also feels slow. Like the actual motion. I would expect them to switch around a bit snappier. We had animation on these before right?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes we did have but I find the animation not very smooth/natural. do you prefer that?
Screen.Recording.2024-12-23.at.16.34.03.mov
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I actually think this feels better. Snappier animation generally makes the app feel a little bit "faster" if that makes sense
.map(task => task.task); | ||
|
||
for (const task of unseenTasks) { | ||
updateOnboardingTask(api, organization, {task, completionSeen: true}); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is there no way to have only 1 api call?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
no we have to update the backend
closes https://github.com/getsentry/projects/issues/337
Preview
Screen.Recording.2024-12-23.at.15.54.57.mov
Note
Maybe we want to add a delay when skipping the last task in the group? 🤔