Latest updates from IceHrmPro
This commit is contained in:
297
web/node_modules/antd/es/layout/Sider.js
generated
vendored
Normal file
297
web/node_modules/antd/es/layout/Sider.js
generated
vendored
Normal file
@@ -0,0 +1,297 @@
|
||||
function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
|
||||
|
||||
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
||||
|
||||
function _extends() { _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; }; return _extends.apply(this, arguments); }
|
||||
|
||||
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
||||
|
||||
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
|
||||
|
||||
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
|
||||
|
||||
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }
|
||||
|
||||
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
|
||||
|
||||
function _createSuper(Derived) { return function () { var Super = _getPrototypeOf(Derived), result; if (_isNativeReflectConstruct()) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
|
||||
|
||||
function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); }
|
||||
|
||||
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
||||
|
||||
function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
|
||||
|
||||
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
||||
|
||||
var __rest = this && this.__rest || function (s, e) {
|
||||
var t = {};
|
||||
|
||||
for (var p in s) {
|
||||
if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) t[p] = s[p];
|
||||
}
|
||||
|
||||
if (s != null && typeof Object.getOwnPropertySymbols === "function") for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
||||
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i])) t[p[i]] = s[p[i]];
|
||||
}
|
||||
return t;
|
||||
};
|
||||
|
||||
import * as React from 'react';
|
||||
import classNames from 'classnames';
|
||||
import omit from 'omit.js';
|
||||
import BarsOutlined from '@ant-design/icons/BarsOutlined';
|
||||
import RightOutlined from '@ant-design/icons/RightOutlined';
|
||||
import LeftOutlined from '@ant-design/icons/LeftOutlined';
|
||||
import { LayoutContext } from './layout';
|
||||
import { ConfigConsumer } from '../config-provider';
|
||||
import isNumeric from '../_util/isNumeric';
|
||||
var dimensionMaxMap = {
|
||||
xs: '479.98px',
|
||||
sm: '575.98px',
|
||||
md: '767.98px',
|
||||
lg: '991.98px',
|
||||
xl: '1199.98px',
|
||||
xxl: '1599.98px'
|
||||
};
|
||||
export var SiderContext = React.createContext({});
|
||||
|
||||
var generateId = function () {
|
||||
var i = 0;
|
||||
return function () {
|
||||
var prefix = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : '';
|
||||
i += 1;
|
||||
return "".concat(prefix).concat(i);
|
||||
};
|
||||
}();
|
||||
|
||||
var InternalSider = /*#__PURE__*/function (_React$Component) {
|
||||
_inherits(InternalSider, _React$Component);
|
||||
|
||||
var _super = _createSuper(InternalSider);
|
||||
|
||||
function InternalSider(props) {
|
||||
var _this;
|
||||
|
||||
_classCallCheck(this, InternalSider);
|
||||
|
||||
_this = _super.call(this, props);
|
||||
|
||||
_this.responsiveHandler = function (mql) {
|
||||
_this.setState({
|
||||
below: mql.matches
|
||||
});
|
||||
|
||||
var onBreakpoint = _this.props.onBreakpoint;
|
||||
|
||||
if (onBreakpoint) {
|
||||
onBreakpoint(mql.matches);
|
||||
}
|
||||
|
||||
if (_this.state.collapsed !== mql.matches) {
|
||||
_this.setCollapsed(mql.matches, 'responsive');
|
||||
}
|
||||
};
|
||||
|
||||
_this.setCollapsed = function (collapsed, type) {
|
||||
if (!('collapsed' in _this.props)) {
|
||||
_this.setState({
|
||||
collapsed: collapsed
|
||||
});
|
||||
}
|
||||
|
||||
var onCollapse = _this.props.onCollapse;
|
||||
|
||||
if (onCollapse) {
|
||||
onCollapse(collapsed, type);
|
||||
}
|
||||
};
|
||||
|
||||
_this.toggle = function () {
|
||||
var collapsed = !_this.state.collapsed;
|
||||
|
||||
_this.setCollapsed(collapsed, 'clickTrigger');
|
||||
};
|
||||
|
||||
_this.belowShowChange = function () {
|
||||
_this.setState(function (_ref) {
|
||||
var belowShow = _ref.belowShow;
|
||||
return {
|
||||
belowShow: !belowShow
|
||||
};
|
||||
});
|
||||
};
|
||||
|
||||
_this.renderSider = function (_ref2) {
|
||||
var _classNames;
|
||||
|
||||
var getPrefixCls = _ref2.getPrefixCls;
|
||||
|
||||
var _a = _this.props,
|
||||
customizePrefixCls = _a.prefixCls,
|
||||
className = _a.className,
|
||||
theme = _a.theme,
|
||||
collapsible = _a.collapsible,
|
||||
reverseArrow = _a.reverseArrow,
|
||||
trigger = _a.trigger,
|
||||
style = _a.style,
|
||||
width = _a.width,
|
||||
collapsedWidth = _a.collapsedWidth,
|
||||
zeroWidthTriggerStyle = _a.zeroWidthTriggerStyle,
|
||||
others = __rest(_a, ["prefixCls", "className", "theme", "collapsible", "reverseArrow", "trigger", "style", "width", "collapsedWidth", "zeroWidthTriggerStyle"]);
|
||||
|
||||
var prefixCls = getPrefixCls('layout-sider', customizePrefixCls);
|
||||
var divProps = omit(others, ['collapsed', 'defaultCollapsed', 'onCollapse', 'breakpoint', 'onBreakpoint', 'siderHook', 'zeroWidthTriggerStyle']);
|
||||
var rawWidth = _this.state.collapsed ? collapsedWidth : width; // use "px" as fallback unit for width
|
||||
|
||||
var siderWidth = isNumeric(rawWidth) ? "".concat(rawWidth, "px") : String(rawWidth); // special trigger when collapsedWidth == 0
|
||||
|
||||
var zeroWidthTrigger = parseFloat(String(collapsedWidth || 0)) === 0 ? /*#__PURE__*/React.createElement("span", {
|
||||
onClick: _this.toggle,
|
||||
className: "".concat(prefixCls, "-zero-width-trigger ").concat(prefixCls, "-zero-width-trigger-").concat(reverseArrow ? 'right' : 'left'),
|
||||
style: zeroWidthTriggerStyle
|
||||
}, /*#__PURE__*/React.createElement(BarsOutlined, null)) : null;
|
||||
var iconObj = {
|
||||
expanded: reverseArrow ? /*#__PURE__*/React.createElement(RightOutlined, null) : /*#__PURE__*/React.createElement(LeftOutlined, null),
|
||||
collapsed: reverseArrow ? /*#__PURE__*/React.createElement(LeftOutlined, null) : /*#__PURE__*/React.createElement(RightOutlined, null)
|
||||
};
|
||||
var status = _this.state.collapsed ? 'collapsed' : 'expanded';
|
||||
var defaultTrigger = iconObj[status];
|
||||
var triggerDom = trigger !== null ? zeroWidthTrigger || /*#__PURE__*/React.createElement("div", {
|
||||
className: "".concat(prefixCls, "-trigger"),
|
||||
onClick: _this.toggle,
|
||||
style: {
|
||||
width: siderWidth
|
||||
}
|
||||
}, trigger || defaultTrigger) : null;
|
||||
|
||||
var divStyle = _extends(_extends({}, style), {
|
||||
flex: "0 0 ".concat(siderWidth),
|
||||
maxWidth: siderWidth,
|
||||
minWidth: siderWidth,
|
||||
width: siderWidth
|
||||
});
|
||||
|
||||
var siderCls = classNames(className, prefixCls, "".concat(prefixCls, "-").concat(theme), (_classNames = {}, _defineProperty(_classNames, "".concat(prefixCls, "-collapsed"), !!_this.state.collapsed), _defineProperty(_classNames, "".concat(prefixCls, "-has-trigger"), collapsible && trigger !== null && !zeroWidthTrigger), _defineProperty(_classNames, "".concat(prefixCls, "-below"), !!_this.state.below), _defineProperty(_classNames, "".concat(prefixCls, "-zero-width"), parseFloat(siderWidth) === 0), _classNames));
|
||||
return /*#__PURE__*/React.createElement("aside", _extends({
|
||||
className: siderCls
|
||||
}, divProps, {
|
||||
style: divStyle
|
||||
}), /*#__PURE__*/React.createElement("div", {
|
||||
className: "".concat(prefixCls, "-children")
|
||||
}, _this.props.children), collapsible || _this.state.below && zeroWidthTrigger ? triggerDom : null);
|
||||
};
|
||||
|
||||
_this.uniqueId = generateId('ant-sider-');
|
||||
var matchMedia;
|
||||
|
||||
if (typeof window !== 'undefined') {
|
||||
matchMedia = window.matchMedia;
|
||||
}
|
||||
|
||||
if (matchMedia && props.breakpoint && props.breakpoint in dimensionMaxMap) {
|
||||
_this.mql = matchMedia("(max-width: ".concat(dimensionMaxMap[props.breakpoint], ")"));
|
||||
}
|
||||
|
||||
var collapsed;
|
||||
|
||||
if ('collapsed' in props) {
|
||||
collapsed = props.collapsed;
|
||||
} else {
|
||||
collapsed = props.defaultCollapsed;
|
||||
}
|
||||
|
||||
_this.state = {
|
||||
collapsed: collapsed,
|
||||
below: false
|
||||
};
|
||||
return _this;
|
||||
}
|
||||
|
||||
_createClass(InternalSider, [{
|
||||
key: "componentDidMount",
|
||||
value: function componentDidMount() {
|
||||
if (this.mql) {
|
||||
this.mql.addListener(this.responsiveHandler);
|
||||
this.responsiveHandler(this.mql);
|
||||
}
|
||||
|
||||
if (this.props.siderHook) {
|
||||
this.props.siderHook.addSider(this.uniqueId);
|
||||
}
|
||||
}
|
||||
}, {
|
||||
key: "componentWillUnmount",
|
||||
value: function componentWillUnmount() {
|
||||
if (this.mql) {
|
||||
this.mql.removeListener(this.responsiveHandler);
|
||||
}
|
||||
|
||||
if (this.props.siderHook) {
|
||||
this.props.siderHook.removeSider(this.uniqueId);
|
||||
}
|
||||
}
|
||||
}, {
|
||||
key: "render",
|
||||
value: function render() {
|
||||
var collapsed = this.state.collapsed;
|
||||
var collapsedWidth = this.props.collapsedWidth;
|
||||
return /*#__PURE__*/React.createElement(SiderContext.Provider, {
|
||||
value: {
|
||||
siderCollapsed: collapsed,
|
||||
collapsedWidth: collapsedWidth
|
||||
}
|
||||
}, /*#__PURE__*/React.createElement(ConfigConsumer, null, this.renderSider));
|
||||
}
|
||||
}], [{
|
||||
key: "getDerivedStateFromProps",
|
||||
value: function getDerivedStateFromProps(nextProps) {
|
||||
if ('collapsed' in nextProps) {
|
||||
return {
|
||||
collapsed: nextProps.collapsed
|
||||
};
|
||||
}
|
||||
|
||||
return null;
|
||||
}
|
||||
}]);
|
||||
|
||||
return InternalSider;
|
||||
}(React.Component);
|
||||
|
||||
InternalSider.defaultProps = {
|
||||
collapsible: false,
|
||||
defaultCollapsed: false,
|
||||
reverseArrow: false,
|
||||
width: 200,
|
||||
collapsedWidth: 80,
|
||||
style: {},
|
||||
theme: 'dark'
|
||||
}; // eslint-disable-next-line react/prefer-stateless-function
|
||||
|
||||
var Sider = /*#__PURE__*/function (_React$Component2) {
|
||||
_inherits(Sider, _React$Component2);
|
||||
|
||||
var _super2 = _createSuper(Sider);
|
||||
|
||||
function Sider() {
|
||||
_classCallCheck(this, Sider);
|
||||
|
||||
return _super2.apply(this, arguments);
|
||||
}
|
||||
|
||||
_createClass(Sider, [{
|
||||
key: "render",
|
||||
value: function render() {
|
||||
var _this2 = this;
|
||||
|
||||
return /*#__PURE__*/React.createElement(LayoutContext.Consumer, null, function (context) {
|
||||
return /*#__PURE__*/React.createElement(InternalSider, _extends({}, context, _this2.props));
|
||||
});
|
||||
}
|
||||
}]);
|
||||
|
||||
return Sider;
|
||||
}(React.Component);
|
||||
|
||||
export { Sider as default };
|
||||
Reference in New Issue
Block a user