Skip to content
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

Small fixes in management_places.html files #8041

Merged
merged 1 commit into from
Jan 20, 2025

Conversation

Maryna-511750
Copy link
Collaborator

@Maryna-511750 Maryna-511750 commented Jan 17, 2025

GreenCity PR

Summary Of Changes 🔥

Fixed the display and styles of the table in admin section

Changed

  • Fixed the display of the table on the Manage Place

PR Checklist Forms

(to be filled out by PR submitter)

  • Code is up-to-date with the dev branch.
  • You've successfully built and run the tests locally.
  • There are new or updated unit tests validating the change.
  • JIRA/ Github Issue number & title in PR title (ISSUE-XXXX: Ticket title)
  • This template filled (above this section).
  • Sonar's report does not contain bugs, vulnerabilities, security issues, code smells ar duplication
  • NEED_REVIEW and READY_FOR_REVIEW labels are added.
  • All files reviewed before sending to reviewers

Summary by CodeRabbit

  • New Features

    • Redesigned place management interface with improved table layout
    • Enhanced opening hours display with nested table structure
  • Style

    • Consolidated multiple CSS files into a single main.css
    • Updated table and button styling
    • Added deferred sidebar script
  • Chores

    • Simplified stylesheet and script management
    • Restructured HTML template for better organization

Copy link

coderabbitai bot commented Jan 17, 2025

Walkthrough

The pull request introduces a comprehensive redesign of the management places HTML template. The changes focus on consolidating multiple stylesheets into a single main.css, simplifying script inclusions, and restructuring the table layout. The new design emphasizes a more organized approach to displaying place information, particularly with a nested structure for opening hours. A new deferred sidebar script has been added, and the overall styling and layout have been refined to improve the user interface.

Changes

File Change Summary
core/src/main/resources/templates/core/management_places.html - Consolidated multiple CSS files into single main.css link
- Added deferred sidebar script
- Restructured table layout with two-row header
- Implemented nested table for opening hours
- Modified button styling (btn-info → btn-default)

Poem

🏠 Places of wonder, templates anew,
CSS streamlined, scripts dancing through
Tables reshape with elegant grace
Opening hours find their perfect space
Management reimagined, code so bright! 🌟


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?

❤️ 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.
    • Generate unit testing code for this file.
    • 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. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • 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 src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate docstrings to generate docstrings for this PR. (Beta)
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai 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.

Documentation and Community

  • 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

🔭 Outside diff range comments (1)
core/src/main/resources/templates/core/management_places.html (1)

Line range hint 479-481: Security: Move API key to environment configuration.

The Google Maps API key is hardcoded in the template. This poses a security risk as the key could be misused.

-<script defer
-        src="https://maps.googleapis.com/maps/api/js?key=AIzaSyB3xs7Kczo46LFcQRFKPMdrE0lU4qsR_S4&callback=initMap">
+<script defer
+        th:src="@{'https://maps.googleapis.com/maps/api/js?key=' + ${@environment.getProperty('google.maps.api.key')} + '&callback=initMap'}">
🧹 Nitpick comments (2)
core/src/main/resources/templates/core/management_places.html (2)

245-259: Enhance accessibility for nested tables.

The nested table for opening hours might cause issues with screen readers. Consider using a more semantic structure like definition lists or structured divs with ARIA attributes.

-<td colspan="3">
-    <div th:if="${!place.getOpeningHoursList().isEmpty()}">
-        <table class="table table-borderless m-0 table-child">
+<td colspan="3">
+    <div th:if="${!place.getOpeningHoursList().isEmpty()}" role="region" aria-label="Opening Hours">
+        <dl class="hours-list">
             <th:block th:each="openingHours : ${place.getOpeningHoursList()}">
-                <tr>
-                    <td th:text="${openingHours.weekDay}"></td>
-                    <td th:text="${openingHours.openTime}"></td>
-                    <td th:text="${openingHours.closeTime}"></td>
-                </tr>
+                <dt th:text="${openingHours.weekDay}"></dt>
+                <dd>
+                    <span th:text="${openingHours.openTime}"></span> -
+                    <span th:text="${openingHours.closeTime}"></span>
+                </dd>
             </th:block>
-        </table>
+        </dl>
     </div>
</td>

407-409: Consider using semantic button classes.

The button class has been changed from btn-info to btn-default. While this works, using semantic classes that reflect the action's purpose would be more maintainable.

-<button class="btn btn-default" id="addDiscount">
+<button class="btn btn-primary" id="addDiscount">
📜 Review details

Configuration used: .coderabbit.yaml
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between fcf05c3 and 1556caa.

📒 Files selected for processing (1)
  • core/src/main/resources/templates/core/management_places.html (5 hunks)
⏰ Context from checks skipped due to timeout of 90000ms (1)
  • GitHub Check: build
🔇 Additional comments (1)
core/src/main/resources/templates/core/management_places.html (1)

7-7: Verify script loading dependencies.

The sidebar script is loaded with the defer attribute, but it might have dependencies on other scripts that are loaded without defer. Consider adding defer to other non-critical scripts to improve page load performance.

Also applies to: 23-23

@Maryna-511750 Maryna-511750 merged commit f94eb3e into dev Jan 20, 2025
4 checks passed
@Maryna-511750 Maryna-511750 deleted the Bug/fix-management-places-page branch January 20, 2025 14:32
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.

4 participants