import React, { memo, useState, useEffect } from 'react'; import { View, Text, StyleSheet, Switch } from 'react-native'; import PropTypes from 'prop-types'; import Touch from '../../../utils/touch'; import { CustomIcon } from '../../../lib/Icons'; import I18n from '../../../i18n'; import styles from '../../../views/RoomsListView/styles'; import { themes, SWITCH_TRACK_COLOR } from '../../../constants/colors'; import { withTheme } from '../../../theme'; import UnreadBadge from '../../../presentation/UnreadBadge'; import RocketChat from '../../../lib/rocketchat'; import { isOmnichannelStatusAvailable, changeLivechatStatus } from '../lib'; const OmnichannelStatus = memo(({ searching, goQueue, theme, queueSize, inquiryEnabled, user }) => { if (searching > 0 || !(RocketChat.isOmnichannelModuleAvailable() && user?.roles?.includes('livechat-agent'))) { return null; } const [status, setStatus] = useState(isOmnichannelStatusAvailable(user)); useEffect(() => { setStatus(isOmnichannelStatusAvailable(user)); }, [user.statusLivechat]); const toggleLivechat = async() => { try { setStatus(v => !v); await changeLivechatStatus(); } catch { setStatus(v => !v); } }; return ( {I18n.t('Omnichannel')} {inquiryEnabled ? ( ) : null} ); }); OmnichannelStatus.propTypes = { searching: PropTypes.bool, goQueue: PropTypes.func, queueSize: PropTypes.number, inquiryEnabled: PropTypes.bool, theme: PropTypes.string, user: PropTypes.shape({ roles: PropTypes.array, statusLivechat: PropTypes.string }) }; export default withTheme(OmnichannelStatus);