mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-12 15:19:58 +08:00
14a1e6bd51
* feat: tsconfig enable strict * feat: add no-explicit-any * feat: strict * feat: as THEME * feat: 优化 keys 类型写法 * feat: demo remove any * feat: as number * feat: this any * feat: add eslint * feat: cascader * feat: props any * feat: remove any * feat: remove any * feat: any 提示错误 * feat: remove any * feat: add eslint * feat: 允许 T = any 存在 * feat: color funciton * feat: 恢复 lint * feat: merge master * feat: as ReactElement * feat: type
36 lines
902 B
TypeScript
36 lines
902 B
TypeScript
import * as React from 'react';
|
|
import { spyElementPrototype } from 'rc-util/lib/test/domHook';
|
|
|
|
import demoTest, { rootPropsTest } from '../../../tests/shared/demoTest';
|
|
|
|
demoTest('affix', {
|
|
testRootProps: false,
|
|
});
|
|
|
|
rootPropsTest(
|
|
'affix',
|
|
(Affix, props) => (
|
|
<Affix {...props} className="fixed" target={() => document.querySelector('#holder')}>
|
|
Bamboo
|
|
</Affix>
|
|
),
|
|
{
|
|
beforeRender: () => {
|
|
spyElementPrototype(HTMLElement, 'getBoundingClientRect', function getBoundingClientRect() {
|
|
// @ts-ignore
|
|
if (this.id === 'holder') {
|
|
return { top: 0, bottom: 100 };
|
|
}
|
|
// @ts-ignore
|
|
if (this.className === 'fixed') {
|
|
return { top: -100, bottom: -100 };
|
|
}
|
|
|
|
return { top: 0, bottom: 0 };
|
|
});
|
|
},
|
|
findRootElements: () => document.querySelectorAll('.ant-affix'),
|
|
expectCount: 1,
|
|
},
|
|
);
|