-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: attachments, query-params plugin & test coverage (#62)
- **New Features** - Introduce a plugin for collection filtering functionality with query parameters in the URL for persisting collection queries. - Introduce methods in collection service to work with attachments - Example: show usage of query-params plugin for filtering documents in Todo collection - Example: Implemented sorting functionality for todo items with ascending and descending options. - Example: Added a context menu for todo items with options for managing attachments (upload, download, remove). - **Enhancements** - `withCollectionService` accepts query, subscribes to documents with query (provided or via plugin) - `withCollectionService` introduces computed `countAll`, `countFiltered` for use-cases of displaying entities - **Bug Fixes** - Example: Fixed CouchDB sync - **Refactor** - Reorganized imports and adjusted module setups across various components and services. - **Tests** - Expanded test coverage for `withCollectionService` and new functionalities like managing attachments and handling query parameters.
- Loading branch information
Showing
68 changed files
with
3,020 additions
and
1,453 deletions.
There are no files selected for viewing
This file contains 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 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 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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
version: '3' | ||
services: | ||
db: | ||
image: couchdb:3 | ||
environment: | ||
COUCHDB_USER: ${COUCHDB_USER} | ||
COUCHDB_PASSWORD: ${COUCHDB_PASSWORD} | ||
ports: | ||
- '5984:5984' | ||
volumes: | ||
- ./tmp/couchdb:/opt/couchdb/data |
This file contains 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 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 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 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 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 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 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
Oops, something went wrong.