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

Revert "fix performance createListenerCollection (#1450)" #1452

Merged
Merged
Show file tree
Hide file tree
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
28 changes: 19 additions & 9 deletions src/utils/Subscription.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,36 +4,46 @@ import { getBatch } from './batch'
// well as nesting subscriptions of descendant components, so that we can ensure the
// ancestor components re-render before descendants

const CLEARED = null
const nullListeners = { notify() {} }

function createListenerCollection() {
const batch = getBatch()
let listeners = {}
let id = 0
// the current/next pattern is copied from redux's createStore code.
// TODO: refactor+expose that code to be reusable here?
let current = []
let next = []

return {
clear() {
listeners = {}
next = CLEARED
current = CLEARED
},

notify() {
const listeners = (current = next)
batch(() => {
for (const id in listeners) {
listeners[id]()
for (let i = 0; i < listeners.length; i++) {
listeners[i]()
}
})
},

get() {
return listeners
return next
},

subscribe(listener) {
const currentId = id++
listeners[currentId] = listener
let isSubscribed = true
if (next === current) next = current.slice()
next.push(listener)

return function unsubscribe() {
delete listeners[currentId]
if (!isSubscribed || current === CLEARED) return
isSubscribed = false

if (next === current) next = current.slice()
next.splice(next.indexOf(listener), 1)
}
}
}
Expand Down
8 changes: 4 additions & 4 deletions test/hooks/useSelector.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -97,11 +97,11 @@ describe('React', () => {
</ProviderMock>
)

expect(Object.keys(rootSubscription.listeners.get()).length).toBe(1)
expect(rootSubscription.listeners.get().length).toBe(1)

store.dispatch({ type: '' })

expect(Object.keys(rootSubscription.listeners.get()).length).toBe(2)
expect(rootSubscription.listeners.get().length).toBe(2)
})

it('unsubscribes when the component is unmounted', () => {
Expand All @@ -125,11 +125,11 @@ describe('React', () => {
</ProviderMock>
)

expect(Object.keys(rootSubscription.listeners.get()).length).toBe(2)
expect(rootSubscription.listeners.get().length).toBe(2)

store.dispatch({ type: '' })

expect(Object.keys(rootSubscription.listeners.get()).length).toBe(1)
expect(rootSubscription.listeners.get().length).toBe(1)
})

it('notices store updates between render and store subscription effect', () => {
Expand Down