UNPKG

@sendbird/uikit-react

Version:

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

68 lines (65 loc) 3.24 kB
import React__default from 'react'; import { a as LabelTypography, b as LabelColors } from '../chunks/bundle-viBng0Kh.js'; import LinkLabel from './LinkLabel.js'; import { D as convertWordToStringObj, S as StringObjType } from '../chunks/bundle-vmZ9LoYK.js'; import MentionLabel from './MentionLabel.js'; import '../chunks/bundle-yl5d1NoZ.js'; import '../chunks/bundle-C1dqPUnT.js'; import '../chunks/bundle-MlG9piGf.js'; import '@sendbird/chat/groupChannel'; import '../utils/message/getOutgoingMessageState.js'; import '../chunks/bundle-DgosLQK9.js'; import '../chunks/bundle-DEuCwnTn.js'; import '../chunks/bundle-fdEQfX2s.js'; import '../chunks/bundle-CqLLOVG5.js'; import '../chunks/bundle-Bch_Ry4S.js'; import 'react-dom'; import '@sendbird/chat'; import '@sendbird/chat/openChannel'; import './SortByRow.js'; import '../chunks/bundle-DGh2T5IL.js'; import './IconButton.js'; import '../chunks/bundle-Del33VzI.js'; import '../chunks/bundle-BZGITC2g.js'; import '../chunks/bundle-BUYU9H94.js'; import './UserProfile.js'; import '../chunks/bundle-B0s_McF0.js'; import '../chunks/bundle-i_3w58Zd.js'; import '../sendbirdSelectors.js'; import '../chunks/bundle-BOykFtQ3.js'; import '../chunks/bundle-CAEBoiEz.js'; import './ImageRenderer.js'; import '../chunks/bundle-Dl_v8XoN.js'; import './Icon.js'; import './Button.js'; /** * @deprecated This component is deprecated and will be removed in the next major version. * Use TextFragment instead. */ // Word and StringObj will include types: normal, mention, url function Word(props) { var word = props.word, message = props.message, _a = props.isByMe, isByMe = _a === void 0 ? false : _a, _b = props.mentionTemplate, mentionTemplate = _b === void 0 ? '@' : _b, _c = props.renderString, renderString = _c === void 0 ? null : _c; if (word === '') { return null; } return (React__default.createElement("span", { className: "sendbird-word", "data-testid": "sendbird-ui-word" }, (message === null || message === void 0 ? void 0 : message.mentionedUsers) && convertWordToStringObj(word, message.mentionedUsers).map(function (stringObj, index) { var type = (stringObj === null || stringObj === void 0 ? void 0 : stringObj.type) || ''; var value = (stringObj === null || stringObj === void 0 ? void 0 : stringObj.value) || ''; var userId = (stringObj === null || stringObj === void 0 ? void 0 : stringObj.userId) || ''; var key = "".concat(value, "-").concat(index); if (renderString && typeof renderString === 'function') { return renderString(stringObj); } if (type === StringObjType.mention) { return (React__default.createElement(MentionLabel, { key: key, mentionTemplate: mentionTemplate, mentionedUserId: userId, mentionedUserNickname: value, isByMe: isByMe })); } else if (type === StringObjType.url) { return (React__default.createElement(LinkLabel, { key: key, className: "sendbird-word__url", src: word, type: LabelTypography.BODY_1, color: isByMe ? LabelColors.ONCONTENT_1 : LabelColors.ONBACKGROUND_1 }, value)); } else { return value; } }))); } export { Word as default }; //# sourceMappingURL=Word.js.map