UNPKG

@sendbird/uikit-react

Version:

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

75 lines (72 loc) 3.65 kB
import { useEffect } from 'react'; import { u as useVoicePlayerContext, A as AudioUnitDefaultValue, g as generateGroupKey } from '../chunks/bundle-qNwshZLR.js'; import { c as VOICE_PLAYER_AUDIO_ID, b as VOICE_MESSAGE_MIME_TYPE } from '../chunks/bundle-D0HLMr8A.js'; import { useVoiceRecorderContext } from '../VoiceRecorder/context.js'; import '../chunks/bundle-BcmcHhQv.js'; import '../chunks/bundle-CKjna3wg.js'; import '../chunks/bundle-BmiTBgG1.js'; import '../chunks/bundle-nSggTugx.js'; import '@sendbird/chat'; import '@sendbird/chat/groupChannel'; import '@sendbird/chat/openChannel'; import '../chunks/bundle-DEkOOCXV.js'; import '../chunks/bundle-HJB6-gWU.js'; import '../chunks/bundle-CHCBafXl.js'; import '../chunks/bundle-CW7sp9Ld.js'; import 'react-dom'; import '../chunks/bundle-D9zEvquw.js'; import '../chunks/bundle-CPtt7fnf.js'; import '../ui/IconButton.js'; import '../ui/Button.js'; import '../chunks/bundle-BtftT-cX.js'; import '../ui/Icon.js'; import '../chunks/bundle-BJ2mapxw.js'; var useVoicePlayer = function (_a) { var _b; var _c = _a.key, key = _c === void 0 ? '' : _c, _d = _a.channelUrl, channelUrl = _d === void 0 ? '' : _d, audioFile = _a.audioFile, _e = _a.audioFileUrl, audioFileUrl = _e === void 0 ? '' : _e, _f = _a.audioFileMimeType, audioFileMimeType = _f === void 0 ? VOICE_MESSAGE_MIME_TYPE : _f; var groupKey = generateGroupKey(channelUrl, key); var _g = useVoicePlayerContext(), play = _g.play, pause = _g.pause, stop = _g.stop, voicePlayerStore = _g.voicePlayerStore; var isRecordable = useVoiceRecorderContext().isRecordable; var currentAudioUnit = ((_b = voicePlayerStore === null || voicePlayerStore === void 0 ? void 0 : voicePlayerStore.audioStorage) === null || _b === void 0 ? void 0 : _b[groupKey]) || AudioUnitDefaultValue(); var playVoicePlayer = function () { if (!isRecordable) { play === null || play === void 0 ? void 0 : play({ groupKey: groupKey, audioFile: audioFile, audioFileUrl: audioFileUrl, audioFileMimeType: audioFileMimeType, }); } }; var pauseVoicePlayer = function () { pause === null || pause === void 0 ? void 0 : pause(groupKey); }; var stopVoicePlayer = function (text) { if (text === void 0) { text = ''; } stop === null || stop === void 0 ? void 0 : stop(text); }; useEffect(function () { return function () { var _a; if (audioFile || audioFileUrl) { // Can't get the current AudioPlayer through the React hooks(useReducer or useState) in this scope var voiceAudioPlayerElement = document.getElementById(VOICE_PLAYER_AUDIO_ID); (_a = voiceAudioPlayerElement === null || voiceAudioPlayerElement === void 0 ? void 0 : voiceAudioPlayerElement.pause) === null || _a === void 0 ? void 0 : _a.call(voiceAudioPlayerElement); } }; }, []); return ({ play: playVoicePlayer, pause: pauseVoicePlayer, stop: stopVoicePlayer, /** * The reason why we multiply this by *1000 is, * The unit of playbackTime and duration should be millisecond */ playbackTime: ((currentAudioUnit === null || currentAudioUnit === void 0 ? void 0 : currentAudioUnit.playbackTime) || 0) * 1000, duration: ((currentAudioUnit === null || currentAudioUnit === void 0 ? void 0 : currentAudioUnit.duration) || 0) * 1000, playingStatus: currentAudioUnit.playingStatus, }); }; export { useVoicePlayer }; //# sourceMappingURL=useVoicePlayer.js.map