Feature: embedded experience feedback#113
Merged
jankapunkt merged 13 commits intomainfrom Sep 15, 2025
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull Request Overview
This PR implements a feedback dialog system for embedded experience feedback functionality, adding a global dialog that is aware of current page context. The implementation includes a help dialog with form handling, submission status management, and email notifications.
- Dialog-based feedback form with type selection (help, bug report, feedback)
- Email system improvements with ticket ID generation and updated template structure
- Form component styling updates and composable utilities for status management
Reviewed Changes
Copilot reviewed 12 out of 12 changed files in this pull request and generated 3 comments.
Show a summary per file
| File | Description |
|---|---|
| web/resources/views/emails/user-feedback.blade.php | Updates email template to include new fields like type, path, query, and confirmation preferences |
| web/resources/js/form/TextArea.vue | Refactors styling to use utility function and updates focus states |
| web/resources/js/form/Checkbox.vue | Adds styling improvements and margin adjustments |
| web/resources/js/domain/project/useProjects.js | Exposes projectId and renames parameter to avoid shadowing |
| web/resources/js/dialogs/useSubmissionStatus.js | New composable for managing form submission states |
| web/resources/js/dialogs/help/useHelpDialog.js | New composable for help dialog state and API submission |
| web/resources/js/dialogs/help/HelpDialog.vue | Main dialog component with form schema and submission logic |
| web/resources/js/dialogs/DialogBase.vue | Adds static prop to prevent accidental closing |
| web/resources/js/Layouts/AuthenticatedLayout.vue | Integrates help dialog button and component |
| web/app/Mail/UserFeedback.php | Updates constructor and envelope to support ticket IDs |
| web/app/Http/Requests/SendFeedbackRequest.php | Updates validation rules for new form fields |
| web/app/Http/Controllers/UserNavigationController.php | Adds logging and ticket ID generation |
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
Co-authored-by: Copilot <[email protected]>
…nqda/openqda into feature/embedded-experience-feedback
kadewe
approved these changes
Sep 12, 2025
kadewe
approved these changes
Sep 12, 2025
kadewe
approved these changes
Sep 12, 2025
kadewe
approved these changes
Sep 12, 2025
kadewe
approved these changes
Sep 12, 2025
kadewe
previously approved these changes
Sep 12, 2025
Member
Author
|
Please do one last check and approve if this can be meged |
kadewe
approved these changes
Sep 15, 2025
Contributor
kadewe
left a comment
There was a problem hiding this comment.
looks good to me, tested it, all links to doc and discussion are ok!
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Implements #104 as global dialog that is aware of the current page context.
.env