UNPKG

@cometchat/chat-uikit-react

Version:

Ready-to-use Chat UI Components for React

16 lines (12 loc) 356 B
'use strict'; require('./index.css'); // src/utils/getBubbleAlignment.ts function getBubbleAlignment(message, loggedInUser) { try { const senderUid = message.getSender().getUid(); return senderUid && loggedInUser?.getUid() === senderUid ? "right" : "left"; } catch { return "left"; } } exports.getBubbleAlignment = getBubbleAlignment;