katoikia-app/web-ui/web-react/node_modules/primereact/dock/dock.cjs.js

309 lines
9.2 KiB
JavaScript

'use strict';
Object.defineProperty(exports, '__esModule', { value: true });
var React = require('react');
var utils = require('primereact/utils');
var ripple = require('primereact/ripple');
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
var React__default = /*#__PURE__*/_interopDefaultLegacy(React);
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);
Object.defineProperty(Constructor, "prototype", {
writable: false
});
return Constructor;
}
function _assertThisInitialized(self) {
if (self === void 0) {
throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
}
return self;
}
function _setPrototypeOf(o, p) {
_setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) {
o.__proto__ = p;
return o;
};
return _setPrototypeOf(o, p);
}
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
}
});
Object.defineProperty(subClass, "prototype", {
writable: false
});
if (superClass) _setPrototypeOf(subClass, superClass);
}
function _typeof(obj) {
"@babel/helpers - typeof";
return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) {
return typeof obj;
} : function (obj) {
return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj;
}, _typeof(obj);
}
function _possibleConstructorReturn(self, call) {
if (call && (_typeof(call) === "object" || typeof call === "function")) {
return call;
} else if (call !== void 0) {
throw new TypeError("Derived constructors may only return object or undefined");
}
return _assertThisInitialized(self);
}
function _getPrototypeOf(o) {
_getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) {
return o.__proto__ || Object.getPrototypeOf(o);
};
return _getPrototypeOf(o);
}
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 _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
var Dock = /*#__PURE__*/function (_Component) {
_inherits(Dock, _Component);
var _super = _createSuper(Dock);
function Dock(props) {
var _this;
_classCallCheck(this, Dock);
_this = _super.call(this, props);
_this.state = {
currentIndex: -3
};
_this.onListMouseLeave = _this.onListMouseLeave.bind(_assertThisInitialized(_this));
return _this;
}
_createClass(Dock, [{
key: "onListMouseLeave",
value: function onListMouseLeave() {
this.setState({
currentIndex: -3
});
}
}, {
key: "onItemMouseEnter",
value: function onItemMouseEnter(index) {
this.setState({
currentIndex: index
});
}
}, {
key: "onItemClick",
value: function onItemClick(e, item) {
if (item.command) {
item.command({
originalEvent: e,
item: item
});
}
e.preventDefault();
}
}, {
key: "renderItem",
value: function renderItem(item, index) {
var _this2 = this;
var disabled = item.disabled,
_icon = item.icon,
label = item.label,
template = item.template,
url = item.url,
target = item.target;
var className = utils.classNames('p-dock-item', {
'p-dock-item-second-prev': this.state.currentIndex - 2 === index,
'p-dock-item-prev': this.state.currentIndex - 1 === index,
'p-dock-item-current': this.state.currentIndex === index,
'p-dock-item-next': this.state.currentIndex + 1 === index,
'p-dock-item-second-next': this.state.currentIndex + 2 === index
});
var contentClassName = utils.classNames('p-dock-action', {
'p-disabled': disabled
});
var iconClassName = utils.classNames('p-dock-action-icon', _icon);
var icon = typeof _icon === 'string' ? /*#__PURE__*/React__default["default"].createElement("span", {
className: iconClassName
}) : utils.ObjectUtils.getJSXElement(_icon, this.props);
var content = /*#__PURE__*/React__default["default"].createElement("a", {
href: url || '#',
role: "menuitem",
className: contentClassName,
target: target,
"data-pr-tooltip": label,
onClick: function onClick(e) {
return _this2.onItemClick(e, item);
}
}, icon, /*#__PURE__*/React__default["default"].createElement(ripple.Ripple, null));
if (template) {
var defaultContentOptions = {
onClick: function onClick(e) {
return _this2.onItemClick(e, item);
},
className: contentClassName,
iconClassName: iconClassName,
element: content,
props: this.props,
index: index
};
content = utils.ObjectUtils.getJSXElement(template, item, defaultContentOptions);
}
return /*#__PURE__*/React__default["default"].createElement("li", {
key: index,
className: className,
role: "none",
onMouseEnter: function onMouseEnter() {
return _this2.onItemMouseEnter(index);
}
}, content);
}
}, {
key: "renderItems",
value: function renderItems() {
var _this3 = this;
if (this.props.model) {
return this.props.model.map(function (item, index) {
return _this3.renderItem(item, index);
});
}
return null;
}
}, {
key: "renderHeader",
value: function renderHeader() {
if (this.props.header) {
return /*#__PURE__*/React__default["default"].createElement("div", {
className: "p-dock-header"
}, utils.ObjectUtils.getJSXElement(this.props.header, {
props: this.props
}));
}
return null;
}
}, {
key: "renderList",
value: function renderList() {
var _this4 = this;
var items = this.renderItems();
return /*#__PURE__*/React__default["default"].createElement("ul", {
ref: function ref(el) {
return _this4.list = el;
},
className: "p-dock-list",
role: "menu",
onMouseLeave: this.onListMouseLeave
}, items);
}
}, {
key: "renderFooter",
value: function renderFooter() {
if (this.props.footer) {
return /*#__PURE__*/React__default["default"].createElement("div", {
className: "p-dock-footer"
}, utils.ObjectUtils.getJSXElement(this.props.footer, {
props: this.props
}));
}
return null;
}
}, {
key: "render",
value: function render() {
var className = utils.classNames("p-dock p-component p-dock-".concat(this.props.position), {
'p-dock-magnification': this.props.magnification
}, this.props.className);
var header = this.renderHeader();
var list = this.renderList();
var footer = this.renderFooter();
return /*#__PURE__*/React__default["default"].createElement("div", {
id: this.props.id,
className: className,
style: this.props.style
}, /*#__PURE__*/React__default["default"].createElement("div", {
className: "p-dock-container"
}, header, list, footer));
}
}]);
return Dock;
}(React.Component);
_defineProperty(Dock, "defaultProps", {
id: null,
style: null,
className: null,
model: null,
position: 'bottom',
magnification: true,
header: null,
footer: null
});
exports.Dock = Dock;