mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-04 13:08:41 +08:00
9acde83991
* feat: add tabIndex option for paragraph * test: update snapshot * test: update test case * revert: revert the testcase * test: update test case * fix: fix the coverage test * chore: code optimize * Update index.tsx Signed-off-by: lijianan <574980606@qq.com> * Update CopyBtn.tsx Signed-off-by: lijianan <574980606@qq.com> * Update transButton.tsx Signed-off-by: lijianan <574980606@qq.com> * Update copy.test.tsx Signed-off-by: lijianan <574980606@qq.com> * Update CopyBtn.tsx Signed-off-by: lijianan <574980606@qq.com> --------- Signed-off-by: lijianan <574980606@qq.com> Co-authored-by: lijianan <574980606@qq.com>
106 lines
3.1 KiB
TypeScript
106 lines
3.1 KiB
TypeScript
import React from 'react';
|
|
import { spyElementPrototypes } from 'rc-util/lib/test/domHook';
|
|
|
|
import { fireEvent, render } from '../../../tests/utils';
|
|
import Base from '../Base';
|
|
|
|
jest.mock('copy-to-clipboard');
|
|
|
|
jest.mock('../../_util/styleChecker', () => ({
|
|
isStyleSupport: () => true,
|
|
}));
|
|
|
|
describe('Typography.Editable', () => {
|
|
const LINE_STR_COUNT = 20;
|
|
const errorSpy = jest.spyOn(console, 'error').mockImplementation(() => {});
|
|
let mockRectSpy: ReturnType<typeof spyElementPrototypes>;
|
|
|
|
beforeAll(() => {
|
|
mockRectSpy = spyElementPrototypes(HTMLElement, {
|
|
offsetHeight: {
|
|
get() {
|
|
let html = (this as any).innerHTML;
|
|
html = html.replace(/<[^>]*>/g, '');
|
|
const lines = Math.ceil(html.length / LINE_STR_COUNT);
|
|
return lines * 16;
|
|
},
|
|
},
|
|
getBoundingClientRect() {
|
|
let html: any = this.innerHTML;
|
|
html = html.replace(/<[^>]*>/g, '');
|
|
const lines = Math.ceil(html.length / LINE_STR_COUNT);
|
|
return { height: lines * 16 };
|
|
},
|
|
});
|
|
});
|
|
|
|
afterAll(() => {
|
|
errorSpy.mockRestore();
|
|
mockRectSpy.mockRestore();
|
|
});
|
|
|
|
const fullStr =
|
|
'Bamboo is Little Light Bamboo is Little Light Bamboo is Little Light Bamboo is Little Light Bamboo is Little Light';
|
|
|
|
it('should use editConfig.text over children in editing mode ', async () => {
|
|
const suffix = '--The information is very important';
|
|
const ref = React.createRef<HTMLElement>();
|
|
const { container: wrapper, unmount } = render(
|
|
<Base
|
|
ellipsis={{ rows: 1, suffix }}
|
|
component="p"
|
|
editable={{ text: fullStr + suffix }}
|
|
ref={ref}
|
|
>
|
|
{fullStr}
|
|
</Base>,
|
|
);
|
|
|
|
fireEvent.click(wrapper.querySelector('.ant-typography-edit')!);
|
|
|
|
expect(wrapper.querySelector('textarea')?.textContent).toEqual(fullStr + suffix);
|
|
|
|
unmount();
|
|
});
|
|
|
|
it('should use children as the fallback of editConfig.text in editing mode', async () => {
|
|
const suffix = '--The information is very important';
|
|
const ref = React.createRef<HTMLElement>();
|
|
const { container: wrapper, unmount } = render(
|
|
<Base ellipsis={{ rows: 1, suffix }} component="p" ref={ref} editable>
|
|
{fullStr}
|
|
</Base>,
|
|
);
|
|
|
|
fireEvent.click(wrapper.querySelector('.ant-typography-edit')!);
|
|
|
|
expect(wrapper.querySelector('textarea')?.textContent).toEqual(fullStr);
|
|
|
|
unmount();
|
|
});
|
|
|
|
it('dynamic set editable', () => {
|
|
const { container, rerender } = render(<Base component="p">test</Base>);
|
|
expect(container.querySelector('.ant-typography-edit')).toBeFalsy();
|
|
|
|
rerender(
|
|
<Base component="p" editable>
|
|
test
|
|
</Base>,
|
|
);
|
|
expect(container.querySelector('.ant-typography-edit')).toBeTruthy();
|
|
});
|
|
|
|
it('tabIndex of edit button', () => {
|
|
const { container, rerender } = render(<Base component="p">test</Base>);
|
|
expect(container.querySelector('.ant-typography-edit')).toBeFalsy();
|
|
|
|
rerender(
|
|
<Base component="p" editable={{ tabIndex: -1 }}>
|
|
test
|
|
</Base>,
|
|
);
|
|
expect(container.querySelector('.ant-typography-edit')?.getAttribute('tabIndex')).toBe('-1');
|
|
});
|
|
});
|