Commit c743e3a
Release/1.0.26 (#343)
* Release/1.0.26 - Update docs
* Updated Live Queries related documentation (#301)
* Added an example of how to update existing object values (#309)
* Fixed the Parse().initialize's return value (#307)
* Release/1.0.26 - Update docs
* Updated Live Queries related documentation (#301)
* Fixed the parse initialize method
Parse().initialize returns a new instantiation of the Parse class, but it should return the initialized instance.
Co-authored-by: Phill Wiggins <phill.wiggins@gmail.com>
Co-authored-by: mregandla <3104483+mregandla@users.noreply.github.com>
* Added example for update existing Object values
Maybe need some correction. Thank you.
Co-authored-by: James Brinkerhoff <th3brink@gmail.com>
Co-authored-by: Phill Wiggins <phill.wiggins@gmail.com>
Co-authored-by: mregandla <3104483+mregandla@users.noreply.github.com>
* Specifying return type of get<T> as T instead of dynamic (#310)
* Fixed the Parse().initialize's return value (#307)
* Release/1.0.26 - Update docs
* Updated Live Queries related documentation (#301)
* Fixed the parse initialize method
Parse().initialize returns a new instantiation of the Parse class, but it should return the initialized instance.
Co-authored-by: Phill Wiggins <phill.wiggins@gmail.com>
Co-authored-by: mregandla <3104483+mregandla@users.noreply.github.com>
* Specified T return type instead of dynamic for get<T> method
Co-authored-by: James Brinkerhoff <th3brink@gmail.com>
Co-authored-by: Phill Wiggins <phill.wiggins@gmail.com>
Co-authored-by: mregandla <3104483+mregandla@users.noreply.github.com>
* Live query connection stream (#314)
* Fixed the Parse().initialize's return value (#307)
* Release/1.0.26 - Update docs
* Updated Live Queries related documentation (#301)
* Fixed the parse initialize method
Parse().initialize returns a new instantiation of the Parse class, but it should return the initialized instance.
Co-authored-by: Phill Wiggins <phill.wiggins@gmail.com>
Co-authored-by: mregandla <3104483+mregandla@users.noreply.github.com>
* added live-query-client-event-stream
* Update parse_live_query.dart
* Cleanup
Co-authored-by: James Brinkerhoff <th3brink@gmail.com>
Co-authored-by: Phill Wiggins <phill.wiggins@gmail.com>
Co-authored-by: mregandla <3104483+mregandla@users.noreply.github.com>
* Livequery reconnecting controller (#316)
* Fix: reconnecting
Done as in #315 (comment) described.
* Changed type of Future
Done as described in fischerscode@805e830#r37587405.
* Revert "Changed type of Future"
This reverts commit fecee76.
* adding LiveQueryReconnectingController
This is a solution for #315 (comment)
How it works:
- Only the LiveQueryReconnectingController handles reconnecting after a connection loss.
- LiveQueryReconnectingController holds informations:
1. connection state of the device
2. did the user disconnected from the server
3. is currently a connection to the server estalished
- LiveQueryReconnectingController tries to reconnect after preset timespans.
* cleanup
* remove _userDisconnected from Client
This is not needed any more.
Keeping track of this information is now done by LiveQueryReconnectingController.
* subscribe(query) modified
Wait until client is connected to live-query-server.
Fixes fischerscode@d058eb0#r37612749
* Parsequery OR (#317)
* Start adding or
First idea for #213
Works with normal Query and LiveQuery.
Missing:
- any kind of "UserError handling"
- further testing
* Update parse_query.dart
* Fix for Sembast-API change (#322)
See: #321 (comment)
* added QueryBuilder.copy(QueryBuilder<T> query) (#320)
* added QueryBuilder.copy(QueryBuilder<T> query)
Added a implementation to create a new QueryBuilder based on an old one.
This is a deep copy.
Tested only with basic queries.
* added QueryBuilder.copy(QueryBuilder<T> query)
Added a implementation to create a new QueryBuilder based on an old one.
This is a deep copy.
Tested only with basic queries.
* ParseLiveList (#324)
* Created ParseLiveList
* LiveList & LivListBuilder works
* Cleanup
* changed to animated list
* Fix in dataloading
* updated AnimatedList
* Finished Animations & cleanup
* handle reconnect
* Added dispose methodes & renamed classes & cleanup
* cleanup
* Fix animation duration
* added README ParseLiveList section
* Initialized example_livelist
* Update application_constants.dart
* Update .gitignore
* Revert "Update .gitignore"
This reverts commit 4d8982d.
* Update .gitignore
* HotFix: object Update from client
If the client changes the object.
(ParseObject does not get copied)
* Implemented simple example
* Update README.md
* Update main.dart
* Update README.md
* Update README.md
* added ParseACL to parseEncode (#326)
As described in #325 (comment).
Should Fix #325
* ParseLiveList Performance improvement (#327)
* Created ParseLiveList
* LiveList & LivListBuilder works
* Cleanup
* changed to animated list
* Fix in dataloading
* updated AnimatedList
* Finished Animations & cleanup
* handle reconnect
* Added dispose methodes & renamed classes & cleanup
* cleanup
* Fix animation duration
* added README ParseLiveList section
* Initialized example_livelist
* Update application_constants.dart
* Update .gitignore
* Revert "Update .gitignore"
This reverts commit 4d8982d.
* Update .gitignore
* HotFix: object Update from client
If the client changes the object.
(ParseObject does not get copied)
* Implemented simple example
* Update README.md
* Update main.dart
* Update README.md
* Update README.md
* LiveList - Performance Improvement
This is the change mentioned in #324 (comment)
Requires #326
* LiveList - Performance Improvement
This is the change mentioned in #324 (comment)
Requires #326
* example_livelist: use clientKey
* Changed example_livelist query
In the README I wrote, you can use a field called "show" to hide elements.
* ParseLiveListElementSnapshot added (#329)
* Created ParseLiveList
* LiveList & LivListBuilder works
* Cleanup
* changed to animated list
* Fix in dataloading
* updated AnimatedList
* Finished Animations & cleanup
* handle reconnect
* Added dispose methodes & renamed classes & cleanup
* cleanup
* Fix animation duration
* added README ParseLiveList section
* Initialized example_livelist
* Update application_constants.dart
* Update .gitignore
* Revert "Update .gitignore"
This reverts commit 4d8982d.
* Update .gitignore
* HotFix: object Update from client
If the client changes the object.
(ParseObject does not get copied)
* Implemented simple example
* Update README.md
* Update main.dart
* Update README.md
* Update README.md
* LiveList - Performance Improvement
This is the change mentioned in #324 (comment)
Requires #326
* LiveList - Performance Improvement
This is the change mentioned in #324 (comment)
Requires #326
* example_livelist: use clientKey
* Changed example_livelist query
In the README I wrote, you can use a field called "show" to hide elements.
* Remove: RemovedItemBuilder
duplicade to ChildBuilder
* removed firstBuild
* ParseLiveListElementSnapshot added
* Clear unsaved changes (#331)
* added clearUnsavedChanges
An idea for #318
* moved clearUnsavedChanges to ParseBase
* LiveQueryController: connect at init (#332)
Should fix #330
* LiveList: fixed defaultBuilder (#333)
* Added generics to Query/LiveQuery (#336)
* LiveQuery: fixes list is null (#334)
* Fix: #341 (#342)
It seems like `subscription.on(LiveQueryEvent.update` reuses a existing object.
* Updating LiveQuery for web (#340)
* LiveQuery: fixes list is null
* Updating LiveQuery for web
parse_live_query_web was outdated compared to parse_live_query.
Note: parse_live_query was copied and fixed again for this change.
Co-authored-by: Phill Wiggins <phill.wiggins@gmail.com>
* Release/1.0.26 - Code formatting, remove lint issues
Co-authored-by: mregandla <3104483+mregandla@users.noreply.github.com>
Co-authored-by: L. Rommy Arbantas <arbantas@gmail.com>
Co-authored-by: James Brinkerhoff <th3brink@gmail.com>
Co-authored-by: Michal Baran <baranmichal25@gmail.com>
Co-authored-by: Maximilian Fischer <45403027+maaeps@users.noreply.github.com>1 parent 1a45a64 commit c743e3a
97 files changed
Lines changed: 3296 additions & 234 deletions
File tree
- example_livelist
- android
- app
- src
- debug
- main
- kotlin/com/example
- example_livelist
- flutterpluginexample_livelist
- res
- drawable
- mipmap-hdpi
- mipmap-mdpi
- mipmap-xhdpi
- mipmap-xxhdpi
- mipmap-xxxhdpi
- values
- profile
- gradle/wrapper
- assets
- fonts/Roboto
- ios
- Flutter
- Runner.xcodeproj
- project.xcworkspace
- Runner.xcworkspace
- Runner
- Assets.xcassets
- AppIcon.appiconset
- LaunchImage.imageset
- Base.lproj
- lib
- web
- icons
- example
- lib
- pages
- test/data/repository/diet_plan
- lib
- src
- network
- objects
- storage
- utils
Some content is hidden
Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
28 | 28 | | |
29 | 29 | | |
30 | 30 | | |
| 31 | + | |
| 32 | + | |
31 | 33 | | |
32 | 34 | | |
33 | 35 | | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
13 | 13 | | |
14 | 14 | | |
15 | 15 | | |
16 | | - | |
| 16 | + | |
17 | 17 | | |
18 | 18 | | |
19 | 19 | | |
| |||
57 | 57 | | |
58 | 58 | | |
59 | 59 | | |
| 60 | + | |
| 61 | + | |
| 62 | + | |
| 63 | + | |
| 64 | + | |
| 65 | + | |
| 66 | + | |
60 | 67 | | |
61 | 68 | | |
62 | 69 | | |
| |||
423 | 430 | | |
424 | 431 | | |
425 | 432 | | |
| 433 | + | |
| 434 | + | |
| 435 | + | |
| 436 | + | |
| 437 | + | |
| 438 | + | |
| 439 | + | |
| 440 | + | |
| 441 | + | |
| 442 | + | |
| 443 | + | |
| 444 | + | |
| 445 | + | |
| 446 | + | |
| 447 | + | |
| 448 | + | |
| 449 | + | |
| 450 | + | |
| 451 | + | |
| 452 | + | |
| 453 | + | |
| 454 | + | |
| 455 | + | |
| 456 | + | |
| 457 | + | |
| 458 | + | |
| 459 | + | |
| 460 | + | |
| 461 | + | |
| 462 | + | |
| 463 | + | |
| 464 | + | |
| 465 | + | |
| 466 | + | |
| 467 | + | |
| 468 | + | |
| 469 | + | |
| 470 | + | |
| 471 | + | |
| 472 | + | |
| 473 | + | |
| 474 | + | |
| 475 | + | |
| 476 | + | |
| 477 | + | |
| 478 | + | |
| 479 | + | |
| 480 | + | |
| 481 | + | |
| 482 | + | |
| 483 | + | |
| 484 | + | |
| 485 | + | |
| 486 | + | |
| 487 | + | |
| 488 | + | |
| 489 | + | |
| 490 | + | |
| 491 | + | |
| 492 | + | |
426 | 493 | | |
427 | 494 | | |
428 | 495 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
68 | 68 | | |
69 | 69 | | |
70 | 70 | | |
71 | | - | |
| 71 | + | |
72 | 72 | | |
73 | 73 | | |
74 | 74 | | |
| |||
233 | 233 | | |
234 | 234 | | |
235 | 235 | | |
236 | | - | |
| 236 | + | |
237 | 237 | | |
238 | 238 | | |
239 | 239 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
74 | 74 | | |
75 | 75 | | |
76 | 76 | | |
77 | | - | |
78 | | - | |
| 77 | + | |
| 78 | + | |
79 | 79 | | |
80 | 80 | | |
81 | 81 | | |
| |||
97 | 97 | | |
98 | 98 | | |
99 | 99 | | |
100 | | - | |
| 100 | + | |
101 | 101 | | |
102 | 102 | | |
103 | 103 | | |
| |||
118 | 118 | | |
119 | 119 | | |
120 | 120 | | |
121 | | - | |
122 | | - | |
| 121 | + | |
| 122 | + | |
123 | 123 | | |
124 | 124 | | |
125 | 125 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
114 | 114 | | |
115 | 115 | | |
116 | 116 | | |
117 | | - | |
| 117 | + | |
118 | 118 | | |
119 | 119 | | |
120 | 120 | | |
| |||
179 | 179 | | |
180 | 180 | | |
181 | 181 | | |
182 | | - | |
| 182 | + | |
183 | 183 | | |
184 | | - | |
| 184 | + | |
185 | 185 | | |
186 | 186 | | |
187 | 187 | | |
| |||
199 | 199 | | |
200 | 200 | | |
201 | 201 | | |
202 | | - | |
| 202 | + | |
203 | 203 | | |
204 | | - | |
| 204 | + | |
205 | 205 | | |
206 | 206 | | |
207 | 207 | | |
| |||
Lines changed: 3 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
100 | 100 | | |
101 | 101 | | |
102 | 102 | | |
103 | | - | |
| 103 | + | |
104 | 104 | | |
105 | | - | |
| 105 | + | |
| 106 | + | |
106 | 107 | | |
107 | 108 | | |
108 | 109 | | |
| |||
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
131 | 131 | | |
132 | 132 | | |
133 | 133 | | |
134 | | - | |
| 134 | + | |
135 | 135 | | |
136 | 136 | | |
137 | 137 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
0 commit comments