Skip to content
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

Use keys to determine if there is a change or not #31

Merged
merged 1 commit into from
Aug 2, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion addon/-private/parachute-event.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ export default class ParachuteEvent {
constructor(routeName, controller, changed = {}) {
let { queryParams, queryParamsArray } = QueryParams.metaFor(controller);
let state = QueryParams.stateFor(controller);
let changedKeys = keys(changed);

/**
* The route the event was fired from
Expand All @@ -41,7 +42,7 @@ export default class ParachuteEvent {
* @type {object}
*/
this.changed = queryParamsArray.reduce((changedParams, qp) => {
if (changed[qp.as]) {
if (changedKeys.includes(qp.as)) {
changedParams[qp.key] = canInvoke(qp, 'deserialize') ? qp.deserialize(changed[qp.as]) : changed[qp.as];
}
return changedParams;
Expand Down