-
Notifications
You must be signed in to change notification settings - Fork 92
feat(new-webui): Mongo Framework Server #814
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
Closed
Closed
Changes from all commits
Commits
Show all changes
26 commits
Select commit
Hold shift + click to select a range
14c1b46
mongocdc prototype functionality
AVMatthews a16c7db
merged main
AVMatthews 56b1bf9
first round of linting and reorganization of the server
AVMatthews dd08d56
just mongo framework server
AVMatthews a4e9f0f
fix build issue
AVMatthews 1b29ad2
fix file changes
AVMatthews e30e019
fix file changes
AVMatthews e37d2d2
fix package.json
AVMatthews 655024b
build: update package-lock.json to include socket.io and related depe…
junhaoliao 2945389
chore: move MongoReplicaServerPlugin and related source files into a …
junhaoliao e64a375
fix(app): Register MongoReplicaServer only if not in test environment.
junhaoliao cc24dd2
fix: instead of returning callback(), invoke the callback then return.
junhaoliao 98643f0
fix: update CollectionInitPayload type definition to inline object st…
junhaoliao 61fb259
refactor: use # for labelling private properties.
junhaoliao 8626745
reorder
junhaoliao 738f4a4
refactor: define event handler types and update listener signatures
junhaoliao f8d58b6
refactor: update event handler types and listener implementations for…
junhaoliao e1f3f55
refactor: remove unused collection::find::toArray listener and its ha…
junhaoliao d9e409e
refactor: change #mongoDb to readonly for better immutability
junhaoliao 5dc6052
Documentation and add subscriber count the watcher map
AVMatthews c7c49ba
linting
AVMatthews fdf6286
reorganize, debounce updates, enable multiple finds per collection
AVMatthews 440e459
Fix live updated from watcher and improve unsubscribe process
AVMatthews 24d2bdc
refactor and fix missing updates
AVMatthews d56bd8a
linting fix
AVMatthews a0377cf
remove duplicate waatcher listener
AVMatthews 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
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Oops, something went wrong.
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.
We should probably register await fastify.register(fastifySocketIO);, and use their existing plugin, instead of setting up socket.io with fastify.server
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.
For now we will do our own registration, since https://www.npmjs.com/package/fastify-socket.io does not support Fastify v5 or above.