@zohodesk/dot
Version:
In this Library, we Provide Some Basic Components to Build Your Application
187 lines (153 loc) • 9.36 kB
JavaScript
;
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); }
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.GlobalNotificationNew = GlobalNotificationNew;
exports.GlobalNotificationUI = GlobalNotificationUI;
exports["default"] = GlobalNotification;
var _react = _interopRequireWildcard(require("react"));
var _defaultProps = require("./props/defaultProps");
var _propTypes = require("./props/propTypes");
var _AutoClose = _interopRequireDefault(require("../../actions/AutoClose"));
var _AlertIcons = _interopRequireDefault(require("../alert/alertIcons/AlertIcons"));
var _AlertClose = _interopRequireDefault(require("../alert/AlertClose/AlertClose"));
var _Layout = require("@zohodesk/components/es/v1/Layout");
var _Common = require("@zohodesk/components/es/utils/Common");
var _GlobalNotificationModule = _interopRequireDefault(require("../../version2/GlobalNotification/GlobalNotification.module.css"));
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
function _extends() { _extends = Object.assign ? Object.assign.bind() : 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 _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }
function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }
function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; }
function _iterableToArrayLimit(arr, i) { var _i = arr == null ? null : typeof Symbol !== "undefined" && arr[Symbol.iterator] || arr["@@iterator"]; if (_i == null) return; var _arr = []; var _n = true; var _d = false; var _s, _e; try { for (_i = _i.call(arr); !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"] != null) _i["return"](); } finally { if (_d) throw _e; } } return _arr; }
function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
function GlobalNotification(props) {
var type = props.type,
message = props.message,
hideMessage = props.hideMessage,
hideTime = props.hideTime,
onClick = props.onClick,
onClose = props.onClose,
needAutoClose = props.needAutoClose,
_props$i18nKeys = props.i18nKeys,
i18nKeys = _props$i18nKeys === void 0 ? {} : _props$i18nKeys,
customProps = props.customProps,
dataSelectorId = props.dataSelectorId,
id = props.id,
needShadow = props.needShadow,
shadowCount = props.shadowCount,
eleRef = props.eleRef;
var hideMessageTimer = useRef(null);
var _useState = useState(true),
_useState2 = _slicedToArray(_useState, 2),
shadowClose = _useState2[0],
setShadowClose = _useState2[1];
(0, _react.useEffect)(function () {
if (needAutoClose) {
hideMessageTimer.current = setTimeout(function () {
hideMessage(id);
}, hideTime);
}
return function () {
if (hideMessageTimer.current) {
clearTimeout(hideMessageTimer.current);
}
};
}, []);
var _i18nKeys$closeTitle = i18nKeys.closeTitle,
closeTitle = _i18nKeys$closeTitle === void 0 ? 'Close' : _i18nKeys$closeTitle;
function onCloseLocal(e) {
setShadowClose(false);
hideMessage && hideMessage(id);
onClose && onClose(e);
}
return /*#__PURE__*/_react["default"].createElement(GlobalNotificationUI, {
type: type,
message: message,
hideMessage: hideMessage,
onClick: onClick,
closeTitle: closeTitle,
customProps: customProps,
dataSelectorId: dataSelectorId,
id: id,
shadowCount: shadowCount,
onClose: onCloseLocal,
needShadow: shadowClose && needShadow,
eleRef: eleRef
});
}
GlobalNotification.propTypes = _propTypes.propTypes;
GlobalNotification.defaultProps = _defaultProps.defaultProps; // if (__DOCS__) {
// GlobalNotification.docs = {
// componentGroup: 'GlobalNotification',
// folderName: 'Alert'
// };
// }
function GlobalNotificationUI(props) {
var _props$type = props.type,
type = _props$type === void 0 ? '' : _props$type,
message = props.message,
onClick = props.onClick,
_props$closeTitle = props.closeTitle,
closeTitle = _props$closeTitle === void 0 ? '' : _props$closeTitle,
_props$customProps = props.customProps,
customProps = _props$customProps === void 0 ? {} : _props$customProps,
dataSelectorId = props.dataSelectorId,
shadowCount = props.shadowCount,
needShadow = props.needShadow,
eleRef = props.eleRef,
onClose = props.onClose;
var _customProps$ExtraPro = customProps.ExtraProps,
ExtraProps = _customProps$ExtraPro === void 0 ? {} : _customProps$ExtraPro;
function onCloseLocal(e) {
(0, _Common.cancelBubblingEffect)(e);
onClose && onClose(e);
}
return /*#__PURE__*/_react["default"].createElement("div", _extends({
ref: eleRef,
className: " ".concat(_GlobalNotificationModule["default"].message, " \n ").concat(needShadow && shadowCount >= 2 ? shadowCount > 2 ? "".concat(_GlobalNotificationModule["default"].stackShadowTwo, " ").concat(_GlobalNotificationModule["default"].stackShadowOne) : _GlobalNotificationModule["default"].stackShadowOne : '', "\n ").concat(type ? _GlobalNotificationModule["default"][type] : '', "\n "),
"data-id": "show_".concat(type, "_message"),
"data-test-id": "show_".concat(type, "_message"),
tabIndex: 0,
"data-selector-id": dataSelectorId
}, ExtraProps), /*#__PURE__*/_react["default"].createElement(_Layout.Container, {
className: "".concat(_GlobalNotificationModule["default"].container),
alignBox: "row",
isCover: false,
align: "vertical",
isInline: true
}, /*#__PURE__*/_react["default"].createElement(_Layout.Box, {
className: _GlobalNotificationModule["default"].icon
}, /*#__PURE__*/_react["default"].createElement(_AlertIcons["default"], {
type: type,
variant: "secondary"
})), /*#__PURE__*/_react["default"].createElement(_Layout.Box, {
flexible: true
}, /*#__PURE__*/_react["default"].createElement("div", {
className: _GlobalNotificationModule["default"].text,
onClick: onClick,
"data-id": "infoMessage",
"data-test-id": "infoMessage",
dangerouslySetInnerHTML: {
__html: message
}
})), /*#__PURE__*/_react["default"].createElement(_Layout.Box, {
className: _GlobalNotificationModule["default"].close
}, /*#__PURE__*/_react["default"].createElement(_AlertClose["default"], {
dataId: "close_".concat(type, "_message"),
dataTitle: closeTitle,
onClose: onCloseLocal,
type: type
}))));
}
GlobalNotificationUI.propTypes = _propTypes.UI_propTypes;
function GlobalNotificationNew(props) {
return /*#__PURE__*/_react["default"].createElement(_AutoClose["default"], _extends({}, props, {
Element: GlobalNotificationUI
}));
}
GlobalNotificationNew.propTypes = _propTypes.new_propTypes;