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.
This pull request includes several changes aimed at refactoring the codebase to remove dependencies on the
TogglablesStateStore
and streamline the search functionality. The most important changes include updating event emissions, modifying the search implementation, and refactoring thephotoRoute
function to usevue-router
directly.Event Emissions:
@open-search
event emission inAlbumPanel.vue
and updated theemits
definition accordingly. [1] [2]Search Functionality:
search_term
and related properties inSearchPanel.vue
with a newsearch
model. [1] [2] [3]TogglablesStateStore
. [1] [2] [3]Photo Route Refactoring:
usePhotoRoute
and related invocations to usevue-router
directly instead ofTogglablesStateStore
. [1] [2] [3] [4] [5]Code Clean-up:
Uploadable
type definition fromUploadPanel.vue
touploadEvents.ts
and updated imports accordingly. [1] [2] [3]Album and Search Views:
Album.vue
andSearch.vue
to remove dependencies onTogglablesStateStore
for search functionality and route handling. [1] [2] [3] [4] [5]