UNPKG

@sendbird/uikit-react

Version:

Sendbird UIKit for React: A feature-rich and customizable chat UI kit with messaging, channel management, and user authentication.

44 lines (37 loc) 2.77 kB
'use strict'; Object.defineProperty(exports, '__esModule', { value: true }); var React = require('react'); var LocalizationContext = require('../../chunks/bundle-DPDyqKIJ.js'); var ui_Label = require('../../chunks/bundle-zgmRG2KL.js'); var ui_Icon = require('../../ui/Icon.js'); var index = require('../../chunks/bundle-CHAKEXIJ.js'); var utils = require('../../chunks/bundle-CkQrhwR6.js'); require('../../chunks/bundle-Conb-pOy.js'); require('../../chunks/bundle-BbrBawlX.js'); require('../../chunks/bundle-Cyl6_qLo.js'); require('../../chunks/bundle-CVJwHwWn.js'); function _interopDefaultCompat (e) { return e && typeof e === 'object' && 'default' in e ? e : { default: e }; } var React__default = /*#__PURE__*/_interopDefaultCompat(React); var UnreadCount = function (_a) { var _b = _a.className, className = _b === void 0 ? '' : _b, _c = _a.count, count = _c === void 0 ? 0 : _c, _d = _a.time, time = _d === void 0 ? '' : _d, onClick = _a.onClick, lastReadAt = _a.lastReadAt; var _e = React.useContext(LocalizationContext.LocalizationContext), stringSet = _e.stringSet, dateLocale = _e.dateLocale; var unreadSince = React.useMemo(function () { var _a, _b; // TODO: Remove this on v4 if (stringSet.CHANNEL__MESSAGE_LIST__NOTIFICATION__ON !== 'on') { var timeArray = ((_b = (_a = time === null || time === void 0 ? void 0 : time.toString) === null || _a === void 0 ? void 0 : _a.call(time)) === null || _b === void 0 ? void 0 : _b.split(' ')) || []; timeArray === null || timeArray === void 0 ? void 0 : timeArray.splice(-2, 0, stringSet.CHANNEL__MESSAGE_LIST__NOTIFICATION__ON); return timeArray.join(' '); } else if (lastReadAt) { return index.format(lastReadAt, stringSet.DATE_FORMAT__MESSAGE_LIST__NOTIFICATION__UNREAD_SINCE, { locale: dateLocale }); } }, [time, lastReadAt]); return (React__default.default.createElement("div", { className: utils.classnames(count < 1 ? 'sendbird-notification--hide' : 'sendbird-notification', className), "data-testid": "sendbird-notification", onClick: onClick }, React__default.default.createElement(ui_Label.Label, { className: "sendbird-notification__text", testID: "sendbird-notification__text", color: ui_Label.LabelColors.ONCONTENT_1, type: ui_Label.LabelTypography.CAPTION_2 }, "".concat(count, " "), stringSet.CHANNEL__MESSAGE_LIST__NOTIFICATION__NEW_MESSAGE, " ".concat(unreadSince)), React__default.default.createElement(ui_Icon.default, { width: "24px", height: "24px", type: ui_Icon.IconTypes.CHEVRON_DOWN, fillColor: ui_Icon.IconColors.CONTENT }))); }; exports.UnreadCount = UnreadCount; exports.default = UnreadCount; //# sourceMappingURL=UnreadCount.js.map