Skip to content

Commit 856e5c8

Browse files
committedMay 18, 2018
fix(cache): clear previous value only if flag is set
1 parent 0cd9205 commit 856e5c8

File tree

3 files changed

+14
-3
lines changed

3 files changed

+14
-3
lines changed
 

‎src/cache.js

+5-2
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ export function get(target, key, getter) {
4444

4545
if (entry.invalid === entry.state) {
4646
entry.state += 1;
47-
entry.value = undefined;
4847
} else if (entry.checksum !== undefined && entry.checksum === calculateChecksum(entry)) {
4948
return entry.value;
5049
}
@@ -85,12 +84,16 @@ export function set(target, key, setter, value, callback) {
8584
}
8685
}
8786

88-
export function invalidate(target, key) {
87+
export function invalidate(target, key, clearValue) {
8988
if (context) {
9089
context = null;
9190
throw Error(`[cache] Try to invalidate '${key}' in '${target}' during get invocation`);
9291
}
9392

9493
const entry = getEntry(target, key);
94+
9595
entry.invalid = entry.state;
96+
if (clearValue) {
97+
entry.value = undefined;
98+
}
9699
}

‎src/define.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ if (process.env.NODE_ENV !== 'production') {
6969
node.disconnectedCallback();
7070

7171
Object.keys(node.constructor.hybrids).forEach((key) => {
72-
cache.invalidate(node, key);
72+
cache.invalidate(node, key, true);
7373
});
7474

7575
node.connectedCallback();

‎test/spec/define.js

+8
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import define from '../../src/define';
2+
import { invalidate } from '../../src/cache';
23

34
describe('define:', () => {
45
it('should return custom element with a name', () => {
@@ -49,6 +50,13 @@ describe('define:', () => {
4950
expect(spy.calls.first().args[0]).toBe(el);
5051
expect(spy.calls.first().args[1]).toBe('one');
5152
}));
53+
54+
it('should return previus value when invalidate', () => tree((el) => {
55+
el.one = 10;
56+
expect(el.one).toBe(11);
57+
invalidate(el, 'one');
58+
expect(el.one).toBe(12);
59+
}));
5260
});
5361

5462
describe('for primitive value', () => {

0 commit comments

Comments
 (0)