mirror of
https://github.com/axllent/mailpit.git
synced 2026-04-26 08:45:54 +03:00
[PR #303] [MERGED] Set search conditions to query parameters #508
Labels
No labels
awaiting feedback
bug
docker
documentation
enhancement
github_actions
invalid
pull-request
question
stale
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/mailpit#508
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/axllent/mailpit/pull/303
Author: @yktakaha4
Created: 5/30/2024
Status: ✅ Merged
Merged: 6/1/2024
Merged by: @axllent
Base:
feature/query-parameters← Head:feat/search-params-qs📝 Commits (3)
f6946f2Set search conditions to query parameters807c058Fixed by review7e039dfUpdate query parameters when new message notified📊 Changes
11 files changed (+106 additions, -21 deletions)
View changed files
📝
server/ui-src/components/ListMessages.vue(+10 -1)📝
server/ui-src/components/NavMailbox.vue(+1 -0)📝
server/ui-src/components/NavTags.vue(+16 -3)📝
server/ui-src/components/Notifications.vue(+7 -0)📝
server/ui-src/components/Pagination.vue(+16 -5)📝
server/ui-src/components/SearchForm.vue(+6 -1)📝
server/ui-src/mixins/CommonMixins.js(+17 -2)📝
server/ui-src/stores/pagination.js(+2 -0)📝
server/ui-src/views/MailboxView.vue(+9 -0)📝
server/ui-src/views/MessageView.vue(+11 -2)📝
server/ui-src/views/SearchView.vue(+11 -7)📄 Description
This great OSS always helps me.
I use this every day, and I thought it would be more convenient if it was reflected in the query parameters when changing paging or limits.
This makes it easier to share search results with others.
I tested it in my local environment, but I don't know all the features so I may be missing something.
I'm not a front-end expert, so please let me know if you have any concerns.
only paging:
/?start=0&limit=100with search condition:
/search?q=python+99&start=25&limit=25tag search:
/search?q=tag%3A10&start=50&limit=50🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.