mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 11:40:04 +08:00
c80136a9a7
* text with prefix * add edit style * support editable * enhance accessibility & type experience * optimize IME case * support copy * add locale * add secondary & disabled * add ellipsis shadow text * split to 3 components * update snapshot * update desc * change lines also need update ellipsis * skip aria when is in ellipsis * add ResizeObserver in _util * update snapshot * move TestBase into test file * update test case * update doc * fix typo * important => level * use rows * update demo cols to 1 * fix cssText not work in firefox * update doc * add miss point * support extendable * update snapshot * fix doc * copyable support string * update snapshot * update doc * update doc desc * adjust style * full test * reset after test * rename * update snapshot * fix compile * adjust style * update desc * update prefixCls * update margin * adjust * nest wrap of tag content * adjust style * update comment * rm % * one more thing * tmp of measure * merge string as children * update snapshot * update testcase * remove comment * use internal variable for configProvider passing * update snapshot * use expandable instead of extendable * less variable it * update demo * update less * adjust code & mark style * remove mark padding * update measure logic * support nest element style * use childNode.textContent to fix react 15 error * update css * popout Typography * add link style * adjust doc * use ellipsis instead of rows & expandable * update doc * update doc * update doc & style * fix typo * add css ellipsis support * client render * update snapshot * enhance copyable * support onExpand * update test case * add test of css ellipsis * fix logic in react 15 * rename onChange -> onSave * use tagName of article * fix lint
224 lines
6.3 KiB
JavaScript
224 lines
6.3 KiB
JavaScript
import React from 'react';
|
|
import { mount } from 'enzyme';
|
|
import KeyCode from 'rc-util/lib/KeyCode';
|
|
import copy from 'copy-to-clipboard';
|
|
import Title from '../Title';
|
|
import Paragraph from '../Paragraph';
|
|
import Base from '../Base'; // eslint-disable-line import/no-named-as-default
|
|
|
|
jest.mock('copy-to-clipboard');
|
|
|
|
describe('Typography', () => {
|
|
const LINE_STR_COUNT = 20;
|
|
const errorSpy = jest.spyOn(console, 'error').mockImplementation(() => {});
|
|
|
|
// Mock offsetHeight
|
|
const originOffsetHeight = Object.getOwnPropertyDescriptor(HTMLElement.prototype, 'offsetHeight')
|
|
.get;
|
|
Object.defineProperty(HTMLElement.prototype, 'offsetHeight', {
|
|
get() {
|
|
let html = this.innerHTML;
|
|
html = html.replace(/<[^>]*>/g, '');
|
|
const lines = Math.ceil(html.length / LINE_STR_COUNT);
|
|
return lines * 16;
|
|
},
|
|
});
|
|
|
|
// Mock getComputedStyle
|
|
const originGetComputedStyle = window.getComputedStyle;
|
|
window.getComputedStyle = ele => {
|
|
const style = originGetComputedStyle(ele);
|
|
style.lineHeight = '16px';
|
|
return style;
|
|
};
|
|
|
|
beforeAll(() => {
|
|
jest.useFakeTimers();
|
|
});
|
|
|
|
afterEach(() => {
|
|
errorSpy.mockReset();
|
|
});
|
|
|
|
afterAll(() => {
|
|
jest.useRealTimers();
|
|
errorSpy.mockRestore();
|
|
Object.defineProperty(HTMLElement.prototype, 'offsetHeight', {
|
|
get: originOffsetHeight,
|
|
});
|
|
window.getComputedStyle = originGetComputedStyle;
|
|
});
|
|
|
|
describe('Title', () => {
|
|
it('warning if `level` not correct', () => {
|
|
mount(<Title level={false} />);
|
|
|
|
expect(errorSpy).toBeCalledWith(
|
|
'Warning: Title only accept `1 | 2 | 3 | 4` as `level` value.',
|
|
);
|
|
});
|
|
});
|
|
|
|
describe('Base', () => {
|
|
describe('trigger ellipsis update', () => {
|
|
const fullStr =
|
|
'Bamboo is Little Light Bamboo is Little Light Bamboo is Little Light Bamboo is Little Light Bamboo is Little Light';
|
|
|
|
it('should trigger update', () => {
|
|
const wrapper = mount(
|
|
<Base ellipsis component="p" editable>
|
|
{fullStr}
|
|
</Base>,
|
|
);
|
|
|
|
jest.runAllTimers();
|
|
wrapper.update();
|
|
expect(wrapper.find('span').text()).toEqual('Bamboo is Little ...');
|
|
|
|
wrapper.setProps({ ellipsis: { rows: 2 } });
|
|
jest.runAllTimers();
|
|
wrapper.update();
|
|
expect(wrapper.find('span').text()).toEqual('Bamboo is Little Light Bamboo is Litt...');
|
|
|
|
wrapper.setProps({ ellipsis: { rows: 99 } });
|
|
jest.runAllTimers();
|
|
wrapper.update();
|
|
expect(wrapper.find('p').text()).toEqual(fullStr);
|
|
|
|
wrapper.unmount();
|
|
});
|
|
|
|
it('connect children', () => {
|
|
const wrapper = mount(
|
|
<Base ellipsis component="p" editable>
|
|
{'Bamboo'}
|
|
{' is '}
|
|
<code>Little</code>
|
|
<code>Light</code>
|
|
</Base>,
|
|
);
|
|
|
|
jest.runAllTimers();
|
|
wrapper.update();
|
|
|
|
expect(wrapper.find('span').text()).toEqual('Bamboo is Little...');
|
|
});
|
|
|
|
it('should expandable work', () => {
|
|
const onExpand = jest.fn();
|
|
const wrapper = mount(
|
|
<Base ellipsis={{ expandable: true, onExpand }} component="p" copyable editable>
|
|
{fullStr}
|
|
</Base>,
|
|
);
|
|
|
|
jest.runAllTimers();
|
|
wrapper.update();
|
|
|
|
wrapper.find('.ant-typography-expand').simulate('click');
|
|
expect(onExpand).toBeCalled();
|
|
jest.runAllTimers();
|
|
wrapper.update();
|
|
|
|
expect(wrapper.find('p').text()).toEqual(fullStr);
|
|
});
|
|
|
|
it('can use css ellipsis', () => {
|
|
const wrapper = mount(<Base ellipsis component="p" />);
|
|
expect(wrapper.find('.ant-typography-ellipsis-single-line').length).toBeTruthy();
|
|
});
|
|
});
|
|
|
|
describe('copyable', () => {
|
|
function copyTest(name, text, target) {
|
|
it(name, () => {
|
|
const onCopy = jest.fn();
|
|
const wrapper = mount(
|
|
<Base component="p" copyable={{ text, onCopy }}>
|
|
test copy
|
|
</Base>,
|
|
);
|
|
|
|
wrapper
|
|
.find('.ant-typography-copy')
|
|
.first()
|
|
.simulate('click');
|
|
expect(copy.lastStr).toEqual(target);
|
|
|
|
wrapper.update();
|
|
expect(onCopy).toBeCalled();
|
|
|
|
expect(wrapper.find('.anticon-check').length).toBeTruthy();
|
|
|
|
jest.runAllTimers();
|
|
wrapper.update();
|
|
|
|
// Will set back when 3 seconds pass
|
|
expect(wrapper.find('.anticon-check').length).toBeFalsy();
|
|
});
|
|
}
|
|
|
|
copyTest('basic copy', undefined, 'test copy');
|
|
copyTest('customize copy', 'bamboo', 'bamboo');
|
|
});
|
|
|
|
describe('editable', () => {
|
|
function testStep(name, submitFunc, expectFunc) {
|
|
it(name, () => {
|
|
const onStart = jest.fn();
|
|
const onChange = jest.fn();
|
|
|
|
const wrapper = mount(<Paragraph editable={{ onChange, onStart }}>Bamboo</Paragraph>);
|
|
|
|
wrapper
|
|
.find('.ant-typography-edit')
|
|
.first()
|
|
.simulate('click');
|
|
|
|
expect(onStart).toBeCalled();
|
|
|
|
wrapper.find('TextArea').simulate('change', {
|
|
target: { value: 'Bamboo' },
|
|
});
|
|
|
|
submitFunc(wrapper);
|
|
|
|
if (expectFunc) {
|
|
expectFunc(onChange);
|
|
} else {
|
|
expect(onChange).toBeCalledWith('Bamboo');
|
|
expect(onChange).toHaveBeenCalledTimes(1);
|
|
}
|
|
});
|
|
}
|
|
|
|
testStep('by key up', wrapper => {
|
|
// Not trigger when inComposition
|
|
wrapper.find('TextArea').simulate('compositionStart');
|
|
wrapper.find('TextArea').simulate('keyDown', { keyCode: KeyCode.ENTER });
|
|
wrapper.find('TextArea').simulate('compositionEnd');
|
|
wrapper.find('TextArea').simulate('keyUp', { keyCode: KeyCode.ENTER });
|
|
|
|
// Now trigger
|
|
wrapper.find('TextArea').simulate('keyDown', { keyCode: KeyCode.ENTER });
|
|
wrapper.find('TextArea').simulate('keyUp', { keyCode: KeyCode.ENTER });
|
|
});
|
|
|
|
testStep(
|
|
'by esc key',
|
|
wrapper => {
|
|
wrapper.find('TextArea').simulate('keyDown', { keyCode: KeyCode.ESC });
|
|
wrapper.find('TextArea').simulate('keyUp', { keyCode: KeyCode.ESC });
|
|
},
|
|
onChange => {
|
|
expect(onChange).not.toBeCalled();
|
|
},
|
|
);
|
|
|
|
testStep('by blur', wrapper => {
|
|
wrapper.find('TextArea').simulate('blur');
|
|
});
|
|
});
|
|
});
|
|
});
|