Closed minetoblend closed 7 months ago
The updates across various components focus on improving code maintainability and readability through refactoring. Key changes include the replacement of BeatmapService
with MapsetService
for mapset operations, method renaming for clarity, and the removal of unused methods. These adjustments aim to streamline processes and enhance the structure without impacting functionality.
File(s) | Summary |
---|---|
.../src/beatmap |
Updates in multiple files related to the transition from BeatmapService to MapsetService , method renaming, and removal of unused methods. |
.../src/beatmap/beatmap.module.ts , .../src/beatmap/mapset.service.ts |
Added MapsetService and corrected import paths. MapsetService introduces methods for mapset interactions. |
.../src/beatmap/beatmap.controller.ts , .../src/beatmap/mapset.controller.ts |
Updated method names for clarity and consistency. Removed unused methods. |
.../src/beatmap/beatmap-import.service.ts , .../src/beatmap/import/beatmap-import.processor.ts , .../src/editor/editor-room.service.ts , .../src/editor/editor.gateway.ts |
Replaced usage of BeatmapService with MapsetService and updated method names accordingly. |
.../src/beatmap/beatmap-thumbnail.processor.ts , .../src/beatmap/beatmap.service.ts |
Updated method names for clarity and consistency. Removed unused methods. |
🐰✨
In the land of code, where the bits do roam,
A rabbit hopped in, making it home.
"Let's tidy up," it said with glee,
Refactoring code, so clean and free.
FromBeatmapService
toMapset
delight,
Methods renamed, in the moonlight.
🌙🌟📂✨
With every line and every byte,
Our rabbit friend made things just right.
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?
Summary by CodeRabbit
Refactor
BeatmapImportService
to useMapsetService
for mapset operations.BeatmapController
for consistency and clarity.beatmap.module
.BeatmapService
with updated method signatures and logic adjustments.MapsetService
.MapsetController
.EditorRoomService
andEditorGateway
to use updated beatmap retrieval methods.New Features
MapsetService
for enhanced mapset interaction.Bug Fixes