-
Notifications
You must be signed in to change notification settings - Fork 197
Fix : more messaging flow issues #2497
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
Open
HarshMN2345
wants to merge
16
commits into
main
Choose a base branch
from
fix-SER-SER-416-More-Messaging-flow-issues
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 11 commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
6f32afb
Align dropdown to button
HarshMN2345 2952234
add exit confirmation
HarshMN2345 120487f
added layout again instead of responsiveheader
HarshMN2345 6fc0360
use resposnsiveheader and isCustomFiltersOnoly prop
HarshMN2345 1f262be
Image should open in a new tab
HarshMN2345 8abd63c
We have a lot of inconsistencies in the terms we use for subscribers,…
HarshMN2345 c70de39
Removed the custom empty state
HarshMN2345 5ab3311
Placeholder should be Search by type or ID
HarshMN2345 64687a7
Description in the wrong place (should be below the modal title)
HarshMN2345 5859efb
space between helper text 6px
HarshMN2345 7bf20dd
use lowercase push
HarshMN2345 839363c
Need to click twice to select a topic
HarshMN2345 45b2dfb
fix empty state grammar and consistency issues for targets
HarshMN2345 c6a25dc
Update src/routes/(console)/project-[region]-[project]/messaging/prov…
HarshMN2345 6685320
Update imagePreview.svelte
HarshMN2345 10aafb7
Adjust image preview link size style
HarshMN2345 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
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
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
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
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
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
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
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
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
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
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. why was this moved from svelte5 to 4? |
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
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
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧩 Analysis chain
Verify the hardcoded
query="[]"value.The
Filterscomponent is being passed a hardcodedquery="[]", which means it won't reflect any existing query state from URL parameters. In contrast, in filesrc/routes/(console)/project-[region]-[project]/messaging/topics/topic-[topic]/+page.svelte(line 93), theFilterscomponent receivesquery={data.query}from server data.This could lead to a UX issue where active filters from URL params aren't displayed in the UI when using
hasCustomFiltersOnlymode.Consider whether the query should be:
ResponsiveContainerHeader(similar to other props likecolumns,analyticsSource)"[]"(please confirm if this is the expected behavior)Run the following script to check how Filters component is used elsewhere in the codebase:
🏁 Script executed:
Length of output: 30
🏁 Script executed:
Length of output: 3402
🏁 Script executed:
Length of output: 1116
🏁 Script executed:
Length of output: 1045
🏁 Script executed:
Length of output: 5835
🏁 Script executed:
Length of output: 1915
🏁 Script executed:
Length of output: 0
🏁 Script executed:
Length of output: 419
🏁 Script executed:
Length of output: 1653
🏁 Script executed:
Length of output: 2251
🏁 Script executed:
Length of output: 3933
🏁 Script executed:
Length of output: 2505
🏁 Script executed:
Length of output: 931
🏁 Script executed:
Length of output: 1841
🏁 Script executed:
Length of output: 3357
🏁 Script executed:
Length of output: 0
🏁 Script executed:
Length of output: 1184
🏁 Script executed:
Length of output: 0
🏁 Script executed:
Length of output: 184
🏁 Script executed:
Length of output: 962
Add
queryprop toResponsiveContainerHeaderand pass it to theFilterscomponent.The hardcoded
query="[]"on line 120 prevents custom filters from displaying saved filter state. Both pages usinghasCustomFiltersOnly=true(messaging/topics and messaging/providers) havedata.queryavailable from their page loaders, but cannot pass it to the component since thequeryprop doesn't exist.This breaks the established pattern: all other direct
Filtersusages in the codebase receivequery={data.query}.Required changes:
query?: stringto the component's prop definition{query}instead ofquery="[]"query={data.query}when settinghasCustomFiltersOnly🤖 Prompt for AI Agents