Skip to content

Conversation

PiggMelonie
Copy link

@PiggMelonie PiggMelonie commented Aug 30, 2025

add gawr gura karaoke gif above the progress bar

Summary by CodeRabbit

  • New Features
    • Added “Gawr Gura Karaoke” snippet to the gallery, placing an animated Gawr Gura overlay near the playback progress bar with a preview and one-click insertion; purely visual, no impact on controls or playback.
  • Style
    • Provides a playful, neatly positioned animated option for the progress bar for enhanced visual flair.

@PiggMelonie PiggMelonie requested a review from a team as a code owner August 30, 2025 16:28
@PiggMelonie PiggMelonie requested review from theRealPadster and removed request for a team August 30, 2025 16:28
@rxri
Copy link
Member

rxri commented Aug 30, 2025

If you will close this pull request and re-open it with new one, am definitely blocking you off our org

Copy link

coderabbitai bot commented Aug 30, 2025

Walkthrough

Added a new snippet entry "Gawr Gura Karaoke" to resources/snippets.json that injects a 60×60px GIF onto the playback progress bar via a ::before CSS rule, with positioning and pointer-events disabled; preview image referenced; no runtime logic changes.

Changes

Cohort / File(s) Summary of Changes
Snippets resource update
resources/snippets.json
Added a new snippet object: Title "Gawr Gura Karaoke"; description "Adds a Gawr Gura Karaoke gif to the Progress Bar"; CSS rule .player-controls .playback-progressbar::before with content: '', width: 60px, height: 60px, bottom: calc(100% - 3px), right: -8px, position: absolute, pointer-events: none, background-repeat: no-repeat, background-size: 60px 60px, and background-image: url('https://media.tenor.com/qLco28DUQwUAAAAi/gura.gif'); preview at resources/assets/snippets/gawrgurapreview.png.

Estimated code review effort

🎯 1 (Trivial) | ⏱️ ~2 minutes

Poem

I nudge the JSON, hop with glee,
A tiny Gura gif now sits by the sea.
Progress bar hums, a bubbly tune,
My whiskers twitch beneath the moon.
Hop—commit—then off I flee! 🐇🎤


📜 Recent review details

Configuration used: CodeRabbit UI

Review profile: CHILL

Plan: Pro

💡 Knowledge Base configuration:

  • MCP integration is disabled by default for public repositories
  • Jira integration is disabled by default for public repositories
  • Linear integration is disabled by default for public repositories

You can enable these sources in your CodeRabbit configuration.

📥 Commits

Reviewing files that changed from the base of the PR and between ae58e16 and a1be630.

⛔ Files ignored due to path filters (1)
  • resources/assets/snippets/gawrgurapreview.png is excluded by !**/*.png
📒 Files selected for processing (1)
  • resources/snippets.json (1 hunks)
🚧 Files skipped from review as they are similar to previous changes (1)
  • resources/snippets.json
✨ Finishing Touches
🧪 Generate unit tests
  • Create PR with unit tests
  • Post copyable unit tests in a comment

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share
🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.

Support

Need help? Create a ticket on our support page for assistance with any issues or questions.

CodeRabbit Commands (Invoked using PR/Issue comments)

Type @coderabbitai help to get the list of available commands.

Other keywords and placeholders

  • Add @coderabbitai ignore or @coderabbit ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Status, Documentation and Community

  • Visit our Status Page to check the current availability of CodeRabbit.
  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

🧹 Nitpick comments (1)
resources/snippets.json (1)

525-528: Avoid ::before collisions with other progress-bar overlays

Many snippets here also use ::before on .playback-progressbar. Switching to ::after reduces conflicts when users enable multiple overlays.

-    "code": ".player-controls .playback-progressbar::before { content: ''; width: 60px; height: 50px; bottom: calc(100% - 7px); right: -5px; position: absolute; pointer-events: none; background-repeat: no-repeat; background-size: 60px 50px; background-image: url('https://media.tenor.com/qLco28DUQwUAAAAi/gura.gif'); }",
+    "code": ".player-controls .playback-progressbar::after { content: ''; width: 60px; height: 50px; bottom: calc(100% - 7px); right: -5px; position: absolute; pointer-events: none; background-repeat: no-repeat; background-size: 60px 50px; background-image: url('https://media.tenor.com/qLco28DUQwUAAAAi/gura.gif'); }",
📜 Review details

Configuration used: CodeRabbit UI

Review profile: CHILL

Plan: Pro

💡 Knowledge Base configuration:

  • MCP integration is disabled by default for public repositories
  • Jira integration is disabled by default for public repositories
  • Linear integration is disabled by default for public repositories

You can enable these sources in your CodeRabbit configuration.

📥 Commits

Reviewing files that changed from the base of the PR and between d6be2ea and ae58e16.

⛔ Files ignored due to path filters (1)
  • resources/assets/snippets/gurakaraoke.png is excluded by !**/*.png
📒 Files selected for processing (1)
  • resources/snippets.json (1 hunks)
🔇 Additional comments (2)
resources/snippets.json (2)

523-524: Ignore trailing comma check—JSON is valid and the comma is already present.

Likely an incorrect or invalid review comment.


528-529: Verify preview asset tracking

The file resources/assets/snippets/gurakaraoke.png is present, tracked in Git, and included in this PR change.

@PiggMelonie
Copy link
Author

If you will close this pull request and re-open it with new one, am definitely blocking you off our org

Im so sorry, ive never used github before and I kept getting errors with the lint. so i had to keep making new repositories even though im not sure that helped or if that was the only way. im sorry about that

Copy link
Member

@rxri rxri left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If you need to make changes, go to your fork, and change files from there. Don't make new forks just to make some change
https://docs.openedx.org/en/latest/documentors/how-tos/make_changes_to_your_pull_request.html

"title": "Gawr Gura Karaoke",
"description": "Adds a Gawr Gura Karaoke gif to the Progress Bar",
"code": ".player-controls .playback-progressbar::before { content: ''; width: 60px; height: 50px; bottom: calc(100% - 7px); right: -5px; position: absolute; pointer-events: none; background-repeat: no-repeat; background-size: 60px 50px; background-image: url('https://media.tenor.com/qLco28DUQwUAAAAi/gura.gif'); }",
"preview": "resources/assets/snippets/gurakaraoke.png"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The preview should be taken from the spotify client

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

sorry for trying to do all this without really getting what to do, ive never attempted something like this. how would i upload the code to the client to be able to test it beforehand and take the preview?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Marketplace -> Snippets tab -> Click Add CSS button -> Paste the string from code to it and save it with some name then enable it

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

omg i didnt know i could do that the whole time. for like the last 12 hours ive been trying to mimic how all the requests are and trying to figure out what a pull request was and what stuff i had to edit. i thought for snippets id have to upload them to the marketplace for me to be able to even use them. again im super sorry about closing it over and over, my worst fear was that people would actually get notified of that, because i wasnt sure if they did. since ive already spent this long ill try my best to finish this pull anyways in case someone else wants to use it

@PiggMelonie PiggMelonie requested a review from rxri August 30, 2025 17:08
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants