Show anonymous user banner on assignment viewer page - #2920
Merged
Conversation
When a student accesses an assignment via a class code as an anonymous user, display a fixed warning banner below the assignment header informing them their work is only saved in the current browser. The banner is shown at the /code/:classCode route (AssignmentViewer) when user.isAnonymous is true. The header height is adjusted to accommodate the extra 40px banner so content is not obscured. Adds an e2e test verifying the banner appears for anonymous users and does not appear for authenticated users. Closes #2862 https://claude.ai/code/session_01E8aWuAxKotiEZKkwwtwB3p
Contributor
Author
|
The text is incorrect. Work IS saved when you are an anonymous user. |
Anonymous users have real server-side accounts, so their work IS saved. The actual risk is losing access to the account, since it is tied to the browser session. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01KkMxgaY3EpFQF5hYspMVdy
Contributor
Author
|
Good catch — fixed. Anonymous accounts are real server-side users, so the work is saved; the actual risk is losing access to the account since it's tied to the browser session. New wording:
|
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01KkMxgaY3EpFQF5hYspMVdy
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01KkMxgaY3EpFQF5hYspMVdy
The fixed-position banner overlaid the top 40px of the scrolling content, covering the "New attempt" button and breaking the brittle2 assignment workflow test. Giving it a real grid row reserves the space so content flows below it. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01KkMxgaY3EpFQF5hYspMVdy
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.
Summary
Fixes #2862
AssignmentViewerwhen a student is logged in as an anonymous userheaderHeightfrom static"80px"to"120px"when the banner is shown, so content is not obscuredTest plan
/code/<classCode>as an anonymous user — banner should appear below the assignment title bar/code/<classCode>as a named (non-anonymous) user — banner should not appear"Anonymous user sees banner; non-anonymous user does not"inassignmentWorkflow.cy.ts(@Group1)https://claude.ai/code/session_01E8aWuAxKotiEZKkwwtwB3p
Generated by Claude Code