import React from 'react' import { createEditor, Transforms } from 'slate' import { act, renderHook } from '@testing-library/react' import { Slate, withReact, Editable, useSlateSelector } from '../src' import _ from 'lodash' describe('useSlateSelector', () => { test('should use equality function when selector changes', async () => { const editor = withReact(createEditor()) const initialValue = [{ type: 'block', children: [{ text: 'test' }] }] const callback1 = jest.fn(() => []) const callback2 = jest.fn(() => []) const { result, rerender } = renderHook( ({ callback }) => useSlateSelector(callback, _.isEqual), { initialProps: { callback: callback1, }, wrapper: ({ children }) => ( {children} ), } ) // One call in the render body, and one call in the effect expect(callback1).toBeCalledTimes(2) const firstResult = result.current await act(async () => { Transforms.insertText(editor, '!', { at: { path: [0, 0], offset: 4 } }) }) // The new call is from the effect expect(callback1).toBeCalledTimes(3) // Return values should have referential equality because of the custom equality function expect(firstResult).toBe(result.current) // Callback 2 has not been used yet expect(callback2).toBeCalledTimes(0) // Re-render with new function identity rerender({ callback: callback2 }) // Callback 1 is not called expect(callback1).toBeCalledTimes(3) // Callback 2 is used instead expect(callback2).toBeCalledTimes(1) // Return values should have referential equality because of the custom equality function expect(firstResult).toBe(result.current) }) })