bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/polling/service.ts
2024-08-02 14:10:39 -04:00

23 lines
651 B
TypeScript

import PollService from '/imports/ui/components/poll/service';
import AudioService from '/imports/ui/components/audio/service';
const MAX_CHAR_LENGTH = 5;
export const shouldStackOptions = (keys: Array<string>) => keys.some((k) => k.length > MAX_CHAR_LENGTH);
const playAlert = () => {
const APP_CONFIG = window.meetingClientSettings.public.app;
return AudioService.playAlertSound(
`${APP_CONFIG.cdn + APP_CONFIG.basename}/resources/sounds/Poll.mp3`,
);
};
export default {
shouldStackOptions,
pollAnswerIds: PollService.pollAnswerIds,
pollTypes: PollService.pollTypes,
isDefaultPoll: PollService.isDefaultPoll,
playAlert,
};