@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
JavaScript
import { useEffect } from 'react';
import { u as useVoicePlayerContext, A as AudioUnitDefaultValue, g as generateGroupKey } from '../chunks/bundle-BrBLR_c-.js';
import { c as VOICE_PLAYER_AUDIO_ID, b as VOICE_MESSAGE_MIME_TYPE } from '../chunks/bundle-CqLLOVG5.js';
import { useVoiceRecorderContext } from '../VoiceRecorder/context.js';
import '../chunks/bundle-yl5d1NoZ.js';
import '../chunks/bundle-DgosLQK9.js';
import '../chunks/bundle-i_3w58Zd.js';
import '../chunks/bundle-BUYU9H94.js';
import '@sendbird/chat';
import '@sendbird/chat/groupChannel';
import '@sendbird/chat/openChannel';
import '../chunks/bundle-Del33VzI.js';
import '../chunks/bundle-C1dqPUnT.js';
import '../chunks/bundle-BZGITC2g.js';
import '../chunks/bundle-CtQtfJlT.js';
import 'react-dom';
import '../chunks/bundle-MlG9piGf.js';
import '../chunks/bundle-DBhJIxHw.js';
import '../ui/IconButton.js';
import '../ui/Button.js';
import '../chunks/bundle-viBng0Kh.js';
import '../ui/Icon.js';
import '../chunks/bundle-DGh2T5IL.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