@alifd/next
Version:
A configurable component library for web built on React.
116 lines (115 loc) • 4.6 kB
JavaScript
import { __assign, __extends, __rest } from "tslib";
import React, { Component } from 'react';
import PropTypes from 'prop-types';
import { func, dom } from '../util';
import Animate from './animate';
var noop = function () { };
var getStyle = dom.getStyle;
var Expand = /** @class */ (function (_super) {
__extends(Expand, _super);
function Expand(props) {
var _this = _super.call(this, props) || this;
func.bindCtx(_this, [
'beforeEnter',
'onEnter',
'afterEnter',
'beforeLeave',
'onLeave',
'afterLeave',
]);
return _this;
}
Expand.prototype.beforeEnter = function (node) {
if (this.leaving) {
this.afterLeave(node);
}
this.cacheCurrentStyle(node);
this.cacheComputedStyle(node);
this.setCurrentStyleToZero(node);
this.props.beforeEnter(node);
};
Expand.prototype.onEnter = function (node) {
this.setCurrentStyleToComputedStyle(node);
this.props.onEnter(node);
};
Expand.prototype.afterEnter = function (node) {
this.restoreCurrentStyle(node);
this.props.afterEnter(node);
};
Expand.prototype.beforeLeave = function (node) {
this.leaving = true;
this.cacheCurrentStyle(node);
this.cacheComputedStyle(node);
this.setCurrentStyleToComputedStyle(node);
this.props.beforeLeave(node);
};
Expand.prototype.onLeave = function (node) {
this.setCurrentStyleToZero(node);
this.props.onLeave(node);
};
Expand.prototype.afterLeave = function (node) {
this.leaving = false;
this.restoreCurrentStyle(node);
this.props.afterLeave(node);
};
Expand.prototype.cacheCurrentStyle = function (node) {
this.styleBorderTopWidth = node.style.borderTopWidth;
this.stylePaddingTop = node.style.paddingTop;
this.styleHeight = node.style.height;
this.stylePaddingBottom = node.style.paddingBottom;
this.styleBorderBottomWidth = node.style.borderBottomWidth;
};
Expand.prototype.cacheComputedStyle = function (node) {
this.borderTopWidth = getStyle(node, 'borderTopWidth');
this.paddingTop = getStyle(node, 'paddingTop');
this.height = node.offsetHeight;
this.paddingBottom = getStyle(node, 'paddingBottom');
this.borderBottomWidth = getStyle(node, 'borderBottomWidth');
};
Expand.prototype.setCurrentStyleToZero = function (node) {
node.style.borderTopWidth = '0px';
node.style.paddingTop = '0px';
node.style.height = '0px';
node.style.paddingBottom = '0px';
node.style.borderBottomWidth = '0px';
};
Expand.prototype.setCurrentStyleToComputedStyle = function (node) {
node.style.borderTopWidth = "".concat(this.borderTopWidth, "px");
node.style.paddingTop = "".concat(this.paddingTop, "px");
node.style.height = "".concat(this.height, "px");
node.style.paddingBottom = "".concat(this.paddingBottom, "px");
node.style.borderBottomWidth = "".concat(this.borderBottomWidth, "px");
};
Expand.prototype.restoreCurrentStyle = function (node) {
node.style.borderTopWidth = this.styleBorderTopWidth;
node.style.paddingTop = this.stylePaddingTop;
node.style.height = this.styleHeight;
node.style.paddingBottom = this.stylePaddingBottom;
node.style.borderBottomWidth = this.styleBorderBottomWidth;
};
Expand.prototype.render = function () {
var _a = this.props, animation = _a.animation, others = __rest(_a, ["animation"]);
var newAnimation = animation || 'expand';
return (React.createElement(Animate, __assign({}, others, { animation: newAnimation, beforeEnter: this.beforeEnter, onEnter: this.onEnter, afterEnter: this.afterEnter, beforeLeave: this.beforeLeave, onLeave: this.onLeave, afterLeave: this.afterLeave })));
};
Expand.displayName = 'Expand';
Expand.propTypes = {
animation: PropTypes.oneOfType([PropTypes.string, PropTypes.object]),
beforeEnter: PropTypes.func,
onEnter: PropTypes.func,
afterEnter: PropTypes.func,
beforeLeave: PropTypes.func,
onLeave: PropTypes.func,
afterLeave: PropTypes.func,
};
Expand.defaultProps = {
beforeEnter: noop,
onEnter: noop,
afterEnter: noop,
beforeLeave: noop,
onLeave: noop,
afterLeave: noop,
};
return Expand;
}(Component));
export default Expand;