Jason Hansen
Jason Hansen
I commented out some of Lore's `console.log` statements in #68 because there was no way to turn them off, and the output was more for developers _of_ Lore than _users_...
The follow appears to be true (though the order might be reversed, need to debug more): If you make an api request using `getState('modelA.find')`, the data in the store might...
Currently the core `lore` package maintains a set of "loaders" ([src](https://github.com/lore/lore/tree/master/packages/lore/src/loaders)) that load files from various folders, like /config, /models, /collections, etc. These loaders should all be broken out and...
Sometimes creating a resource via an API will cause other resources to be created. For example, say you have an Event resource, a set of Users, and an EventParticipant resource...
Redux processes a single action at a time, meaning if an action creator dispatches 10 actions, they are processed in series, one at a time. For small batches of actions,...
Currently the way Lore makes use of the `lore` global makes it impossible for two apps to run side-by-side on the same browser page. Changing this approach, and making Lore...
Error reporting in the browser has limitations that make providing meaningful well-formatted errors difficult. This can be circumvented by providing a brief statement, and then a URL that links to...
If you pass a prop called `countries` to a component wrapped with connect, that also defines that prop (for whatever reason), it does not override the parent prop. This is...
Adding an `attributes` field to model definitions has a number of possible benefits, including it's usage in `lore-hook-dialogs-*` and as a way to (in the future) automatically normalize server responses....
Currently all files in `/config` are included in the final `bundle.js`, and the proper configuration is selected at runtime. This means that when the `NODE_ENV` is set to `production` the...