All Versions
29
Latest Version
Avg Release Cycle
17 days
Latest Release
1434 days ago
Changelog History
Page 2
Changelog History
Page 2
-
v0.7.1 Changes
May 27, 2020๐ Fixes long-standing collection listening issue by listening on
update
andreset
events for collections -
v0.7.0 Changes
May 01, 2020- โ Adds support for Schmackbone 1.5, which uses Promise interfaces for its requests
before:
onClickSaveButton() {this.setState({isSaving: true});// any other mounted component in the application listening to this model or its collection// will get re-rendered with the updated name as soon as this is calledthis.props.userTodoModel.save({name: 'Giving This Todo A New Name}, { success: () =\> notify('Todo save succeeded!'),error: () =\> notify('Todo save failed :/'),complete: () =\> this.setState({isSaving: false})});
after:
onClickSaveButton() {this.setState({isSaving: true});// any other mounted component in the application listening to this model or its collection// will get re-rendered with the updated name as soon as this is calledthis.props.userTodoModel.save({name: 'Giving This Todo A New Name}).then(() =\> notify('Todo save succeeded!')).catch(() =\> notify('Todo save failed :/')).then(() =\> this.setState({isSaving: false}));}
-
v0.6.6 Changes
April 27, 2020- ๐ฆ returns
Model
andCollection
constructors directly fromresourcerer
package - provides a
prefilter
config hook as an alias forSchmackbone.ajaxPrefilter
- ๐ฆ returns
-
v0.6.2 Changes
April 25, 2020- ๐
hasInitiallyLoaded
will be initially set totrue
if all critical models are passed in (bypassing fetch)
- ๐
-
v0.6.1
March 26, 2020 -
v0.6.0
March 26, 2020 -
v0.5.3 Changes
February 27, 2020- โก๏ธ batch
useResources
model and loading state updates for successful requests
- โก๏ธ batch
-
v0.5.2
February 27, 2020 -
v0.5.1
February 16, 2020 -
v0.5.0 Changes
February 14, 2020๐ See the docs for more info