You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.2 KiB
39 lines
1.2 KiB
define(["exports", "module", "react", "classnames", "./AffixMixin", "./utils/domUtils"], function (exports, module, _react, _classnames, _AffixMixin, _utilsDomUtils) { |
|
"use strict"; |
|
|
|
var _interopRequire = function (obj) { return obj && obj.__esModule ? obj["default"] : obj; }; |
|
|
|
var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; |
|
|
|
var React = _interopRequire(_react); |
|
|
|
var classNames = _interopRequire(_classnames); |
|
|
|
var AffixMixin = _interopRequire(_AffixMixin); |
|
|
|
var domUtils = _interopRequire(_utilsDomUtils); |
|
|
|
var Affix = React.createClass({ |
|
displayName: "Affix", |
|
|
|
statics: { |
|
domUtils: domUtils |
|
}, |
|
|
|
mixins: [AffixMixin], |
|
|
|
render: function render() { |
|
var holderStyle = { top: this.state.affixPositionTop }; |
|
|
|
return React.createElement( |
|
"div", |
|
_extends({}, this.props, { |
|
className: classNames(this.props.className, this.state.affixClass), |
|
style: holderStyle }), |
|
this.props.children |
|
); |
|
} |
|
}); |
|
|
|
module.exports = Affix; |
|
}); |