@sendbird/uikit-react
Version:
Sendbird UIKit for React: A feature-rich and customizable chat UI kit with messaging, channel management, and user authentication.
76 lines (73 loc) • 4.43 kB
JavaScript
import React__default from 'react';
import { n as noop } from '../../chunks/bundle-Ds9YPch2.js';
import { M as Modal } from '../../chunks/bundle-EGZmMlDM.js';
import { u as useLocalization } from '../../chunks/bundle-Dx_38OXn.js';
import { u as useMediaQueryContext } from '../../chunks/bundle-CDtkDyUw.js';
import TextButton from '../../ui/TextButton.js';
import { L as Label, a as LabelTypography, b as LabelColors } from '../../chunks/bundle-DHMhzdxb.js';
import { a as isDefaultChannelName } from '../../chunks/bundle-BKsKPtjg.js';
import { u as useChannelSettings } from '../../chunks/bundle-tHlm6elM.js';
import { u as useSendbird } from '../../chunks/bundle-DlIBbbMW.js';
import '../../chunks/bundle-k5pprEL4.js';
import 'react-dom';
import '../../ui/IconButton.js';
import '../../ui/Button.js';
import '../../ui/Icon.js';
import '../../chunks/bundle-Dub55x6v.js';
import '../../chunks/bundle-DoyzmJ4N.js';
import '../../chunks/bundle-Dsv3ZewI.js';
import '../../chunks/bundle-C9Yf8_3z.js';
import '@sendbird/chat/groupChannel';
import '../../utils/message/getOutgoingMessageState.js';
import '../../chunks/bundle-DTJNwlmx.js';
import '../../chunks/bundle-CmS7TEQp.js';
import '../../chunks/bundle-Dhfbe9sC.js';
import '../../chunks/bundle-CAqNV7Jw.js';
import '../../chunks/bundle-3CHYtOfL.js';
import '../../chunks/bundle-dMfcSy1Y.js';
import '../../chunks/bundle-D6tIALJA.js';
import '@sendbird/chat';
import '@sendbird/chat/openChannel';
var LeaveChannel = function (props) {
var _a, _b;
var _c = props.onSubmit, onSubmit = _c === void 0 ? noop : _c, _d = props.onCancel, onCancel = _d === void 0 ? noop : _d;
var _e = useChannelSettings().state, channel = _e.channel, onLeaveChannel = _e.onLeaveChannel;
var stringSet = useLocalization().stringSet;
var state = useSendbird().state;
var logger = (_a = state === null || state === void 0 ? void 0 : state.config) === null || _a === void 0 ? void 0 : _a.logger;
var isOnline = (_b = state === null || state === void 0 ? void 0 : state.config) === null || _b === void 0 ? void 0 : _b.isOnline;
var isMobile = useMediaQueryContext().isMobile;
var getChannelName = function (channel) {
if (!(channel === null || channel === void 0 ? void 0 : channel.name) && !(channel === null || channel === void 0 ? void 0 : channel.members))
return stringSet.NO_TITLE;
if (isDefaultChannelName(channel))
return ((channel === null || channel === void 0 ? void 0 : channel.members) || []).map(function (member) { return member.nickname || stringSet.NO_NAME; }).join(', ');
return channel.name;
};
if (isMobile) {
return (React__default.createElement(Modal, { className: "sendbird-channel-settings__leave--mobile", titleText: getChannelName(channel), hideFooter: true, isCloseOnClickOutside: true, onCancel: onCancel },
React__default.createElement(TextButton, { onClick: function () {
logger.info('ChannelSettings: Leaving channel', channel);
channel === null || channel === void 0 ? void 0 : channel.leave().then(function () {
logger.info('ChannelSettings: Leaving channel successful!', channel);
onLeaveChannel === null || onLeaveChannel === void 0 ? void 0 : onLeaveChannel();
});
}, className: "sendbird-channel-settings__leave-label--mobile" },
React__default.createElement(Label, { type: LabelTypography.SUBTITLE_1, color: LabelColors.ONBACKGROUND_1 }, stringSet.CHANNEL_PREVIEW_MOBILE_LEAVE))));
}
return (React__default.createElement(Modal, { isFullScreenOnMobile: true, disabled: !isOnline, onCancel: onCancel, onSubmit: function () {
logger.info('ChannelSettings: Leaving channel', channel);
channel === null || channel === void 0 ? void 0 : channel.leave().then(function () {
logger.info('ChannelSettings: Leaving channel successful!', channel);
// is for backward compactability
if (onLeaveChannel) {
onLeaveChannel();
}
else {
onSubmit();
}
});
}, submitText: stringSet.MODAL__LEAVE_CHANNEL__FOOTER, titleText: stringSet.MODAL__LEAVE_CHANNEL__TITLE }));
};
export { LeaveChannel as default };
//# sourceMappingURL=LeaveChannel.js.map