-
Notifications
You must be signed in to change notification settings - Fork 2
Add dashboard thumbnails #17
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
Conversation
|
This pull request is being automatically deployed with Vercel (learn more). 🔍 Inspect: https://vercel.com/snakeroom/snakeroom/3wGn25Hf7oUFxZJgN2pEWQzZGqXj |
| static Joining = new MembershipStatus("Joining...", "🔃"); | ||
| static Joined = new MembershipStatus("Joined", "✅"); | ||
| static Leaving = new MembershipStatus("Leaving...", "🔃"); | ||
| static NotJoined = new MembershipStatus("Not Joined", "❌"); | ||
| static Unknown = new MembershipStatus("Unknown", "❔"); |
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.
Could Font Awesome icons be used instead of emojis here?
| membershipStatus === MembershipStatus.Joined ? "➖ Leave" : | ||
| membershipStatus === MembershipStatus.Joining ? "➕ Joining..." : | ||
| membershipStatus === MembershipStatus.NotJoined ? "➕ Join" : | ||
| membershipStatus === MembershipStatus.Leaving ? "➖ Leaving..." : | ||
| "Error" |
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.
These values could be stored in the MembershipStatus instances.
|
This pull request is for an event that has ended and therefore I will close it. Should it become relevant again, it should be reopened. |
Add dashboard thumbnails using the /y22/projects/:uuid/bitmap endpoint.
Make the /projects page much more responsive