Skip to content
This repository has been archived by the owner on Dec 30, 2022. It is now read-only.

Commit

Permalink
fix(panel): react to changes on initial render (#871)
Browse files Browse the repository at this point in the history
you can see this when there's a query which is applied from the URL (sorry, not relevant in the storybook) which makes the `canRefine` (`ais-Panel--noRefinement`) different than the default (`true`)
  • Loading branch information
Haroenv authored Sep 30, 2020
1 parent 6824079 commit 56917a0
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 21 deletions.
29 changes: 18 additions & 11 deletions src/mixins/__tests__/panel.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -108,16 +108,18 @@ describe('createPanelConsumerMixin', () => {
attributeName: false,
};

expect(emitter.$emit).toHaveBeenCalledTimes(0);
expect(emitter.$emit).toHaveBeenCalledTimes(1);
expect(emitter.$emit).toHaveBeenLastCalledWith(PANEL_CHANGE_EVENT, false);

wrapper.vm.state = {
attributeName: true,
};

expect(emitter.$emit).toHaveBeenCalledTimes(1);
expect(emitter.$emit).toHaveBeenCalledTimes(2);
expect(emitter.$emit).toHaveBeenLastCalledWith(PANEL_CHANGE_EVENT, true);
});

it('emits at least once when both values are set', () => {
it('emits once when both values are set', () => {
const localVue = createLocalVue();
const emitter = createFakeEmitter();
const Test = createFakeComponent(localVue);
Expand All @@ -137,7 +139,8 @@ describe('createPanelConsumerMixin', () => {
attributeName: false,
};

expect(emitter.$emit).toHaveBeenCalledTimes(0);
expect(emitter.$emit).toHaveBeenCalledTimes(1);
expect(emitter.$emit).toHaveBeenLastCalledWith(PANEL_CHANGE_EVENT, false);

wrapper.vm.state = {
attributeName: false,
Expand All @@ -146,7 +149,7 @@ describe('createPanelConsumerMixin', () => {
expect(emitter.$emit).toHaveBeenCalledTimes(1);
});

it('do not emit when the previous value is not set', () => {
it('emits once on init of the component', () => {
const localVue = createLocalVue();
const emitter = createFakeEmitter();
const Test = createFakeComponent(localVue);
Expand All @@ -166,7 +169,8 @@ describe('createPanelConsumerMixin', () => {
attributeName: true,
};

expect(emitter.$emit).not.toHaveBeenCalled();
expect(emitter.$emit).toHaveBeenCalledTimes(1);
expect(emitter.$emit).toHaveBeenLastCalledWith(PANEL_CHANGE_EVENT, true);
});

it('do not emit when the next value is not set', () => {
Expand All @@ -189,11 +193,12 @@ describe('createPanelConsumerMixin', () => {
attributeName: true,
};

expect(emitter.$emit).not.toHaveBeenCalled();
expect(emitter.$emit).toHaveBeenCalledTimes(1);
expect(emitter.$emit).toHaveBeenLastCalledWith(PANEL_CHANGE_EVENT, true);

wrapper.vm.state = null;

expect(emitter.$emit).not.toHaveBeenCalled();
expect(emitter.$emit).toHaveBeenCalledTimes(1);
});

it('do not emit when the previous and next value are equal', () => {
Expand All @@ -216,18 +221,20 @@ describe('createPanelConsumerMixin', () => {
attributeName: true,
};

expect(emitter.$emit).not.toHaveBeenCalled();
expect(emitter.$emit).toHaveBeenCalledTimes(1);
expect(emitter.$emit).toHaveBeenLastCalledWith(PANEL_CHANGE_EVENT, true);

wrapper.vm.state = {
attributeName: false,
};

expect(emitter.$emit).toHaveBeenCalledTimes(1);
expect(emitter.$emit).toHaveBeenCalledTimes(2);
expect(emitter.$emit).toHaveBeenLastCalledWith(PANEL_CHANGE_EVENT, false);

wrapper.vm.state = {
attributeName: false,
};

expect(emitter.$emit).toHaveBeenCalledTimes(1);
expect(emitter.$emit).toHaveBeenCalledTimes(2);
});
});
23 changes: 13 additions & 10 deletions src/mixins/panel.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,19 +58,22 @@ export const createPanelConsumerMixin = ({ mapStateToCanRefine }) => ({
};
},
watch: {
state(nextState, previousState) {
if (!previousState || !nextState) {
return;
}
state: {
immediate: true,
handler(nextState, previousState) {
if (!nextState) {
return;
}

const previousCanRefine = mapStateToCanRefine(previousState);
const nextCanRefine = mapStateToCanRefine(nextState);
const previousCanRefine = mapStateToCanRefine(previousState || {});
const nextCanRefine = mapStateToCanRefine(nextState);

if (!this.hasAlreadyEmitted || previousCanRefine !== nextCanRefine) {
this.emitter.$emit(PANEL_CHANGE_EVENT, nextCanRefine);
if (!this.hasAlreadyEmitted || previousCanRefine !== nextCanRefine) {
this.emitter.$emit(PANEL_CHANGE_EVENT, nextCanRefine);

this.hasAlreadyEmitted = true;
}
this.hasAlreadyEmitted = true;
}
},
},
},
});
8 changes: 8 additions & 0 deletions stories/Panel.stories.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,14 @@ import { previewWrapper } from './utils';
storiesOf('ais-panel', module)
.addDecorator(previewWrapper())
.add('default', () => ({
template: `
<ais-panel>
<template slot="header">Brand</template>
<ais-refinement-list attribute="brand" />
</ais-panel>
`,
}))
.add('text content', () => ({
template: `
<ais-panel>
This is the body of the Panel.
Expand Down

0 comments on commit 56917a0

Please sign in to comment.