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

Customer my Booking #247

Merged
merged 1 commit into from
Apr 27, 2024
Merged

Customer my Booking #247

merged 1 commit into from
Apr 27, 2024

Conversation

Gayandee
Copy link
Contributor

@Gayandee Gayandee commented Apr 27, 2024

Summary by CodeRabbit

  • New Features

    • Added functionality to view all personal bookings for users.
    • Enhanced package management in the guide section with options to add, edit, and delete packages.
    • New package entries added for various locations with additional form fields.
    • Improved booking display with dynamic fetching and UI updates.
  • Refactor

    • Redesigned methods in GuideBookings and RentComplaint for enhanced readability and maintainability.
  • Style

    • Introduced a new CSS class for extended margin options.
  • Documentation

    • Updated form labels and input fields to reflect new package features.

Copy link
Contributor

coderabbitai bot commented Apr 27, 2024

Walkthrough

The recent updates enhance user and guide interactions within the system. New functionalities include fetching and displaying booking details dynamically, managing guide packages more effectively, and refining complaint handling. These changes aim to improve usability and maintainability across various components of the application, focusing on a better user experience and streamlined data management.

Changes

File Path Change Summary
.../API/GuideBookings.php Added functions for fetching booking details based on user ID.
.../models/GuideBookings.php Enhanced booking and guide detail retrieval methods; updated existing methods for better session handling.
.../models/RentComplaint.php Refactored complaint retrieval methods for improved readability and query efficiency.
.../views/customer/... Revamped booking display with AJAX for dynamic updates.
.../views/guide/... Updated package management with new JavaScript functionalities and UI enhancements.
public/assets/scss/.../_margin.scss Added CSS class for increased margin formatting.

🐇💻 A whimsical note from a coding rabbit:

(>’.’)> Code hops through fields of logic, 🌿  
<('.')> Under moonlit skies, tweaks are magic. 🌙  
(>’.’)> With each push and pull, the garden grows, 🌼  
<('.')> Where data streams and user delight flows. 🌊  
(>’.’)> Here’s to changes, crafted with care,  
<('.')> From fluffy tails, to software we share! 🥕💾

Recent Review Details

Configuration used: CodeRabbit UI
Review profile: CHILL

Commits Files that changed from the base of the PR and between f90c44b and 6a6b1f9.
Files ignored due to path filters (1)
  • public/reports/income_report_662ccc90003b5.pdf is excluded by !**/*.pdf
Files selected for processing (7)
  • app/controllers/API/GuideBookings.php (1 hunks)
  • app/models/GuideBookings.php (2 hunks)
  • app/models/RentComplaint.php (1 hunks)
  • app/views/customer/myBookings.view.php (2 hunks)
  • app/views/guide/package.view.php (3 hunks)
  • app/views/guide/packages.view.php (2 hunks)
  • public/assets/scss/wl/dashboard/common/_margin.scss (1 hunks)
Additional comments not posted (13)
app/models/RentComplaint.php (3)

38-47: Verify the table name 'rent_complaint' used in the query.

Ensure that the table name aligns with the naming conventions and actual table names used elsewhere in the application.


49-61: The method implementation for fetching detailed rent complaint data is well-constructed.


33-36: The method for fetching complaints based on criteria is correctly implemented.

app/views/customer/myBookings.view.php (2)

17-25: The HTML structure for displaying booking details is appropriately set up.


28-82: The JavaScript functionality for dynamically fetching and displaying booking details is correctly implemented.

public/assets/scss/wl/dashboard/common/_margin.scss (1)

202-202: The addition of the .ml-8 class with a margin-left of 9rem is correctly implemented.

app/models/GuideBookings.php (2)

93-98: The method for fetching guide details based on booking ID is well-implemented.


109-116: The method for fetching all bookings for a specific customer is correctly implemented.

app/controllers/API/GuideBookings.php (1)

130-145: The controller method for fetching all bookings for a specific user is correctly implemented and provides a structured response.

app/views/guide/package.view.php (2)

Line range hint 56-86: The HTML structure for managing package details, including forms and modal dialogs, is appropriately set up.


Line range hint 87-451: The JavaScript functionality for dynamically managing package details, including adding, updating, and deleting packages, is correctly implemented.

app/views/guide/packages.view.php (2)

Line range hint 1-85: The HTML structure for displaying and managing package entries is appropriately set up.


87-451: The JavaScript functionality for dynamically fetching and managing package details is correctly implemented.


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>.
    • 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 generate interesting stats about this repository and render them as a table.
    • @coderabbitai show all the console.log statements in this repository.
    • @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.

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 as PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger a review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai help to get help.

Additionally, you can add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.

CodeRabbit Configration 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

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
Member

@nsavinda nsavinda left a comment

Choose a reason for hiding this comment

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

Approved

@Gayandee Gayandee merged commit 29807f6 into dev Apr 27, 2024
1 check passed
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