CFE-25 Return to previous structure call widget
This commit is contained in:
@@ -1,10 +0,0 @@
|
||||
import useAnswers from "@/lib/callWidget/hooks/useAnswers";
|
||||
|
||||
const CallActions = () => {
|
||||
const {answer} = useAnswers()
|
||||
return (
|
||||
<>CallActions - {answer.id}</>
|
||||
)
|
||||
}
|
||||
|
||||
export default CallActions
|
||||
@@ -1,10 +0,0 @@
|
||||
import useAnswers from "@/lib/callWidget/hooks/useAnswers";
|
||||
|
||||
const CallHistory = () => {
|
||||
const {answer} = useAnswers()
|
||||
return (
|
||||
<>CallHistory - {answer.id}</>
|
||||
)
|
||||
}
|
||||
|
||||
export default CallHistory
|
||||
@@ -1,18 +0,0 @@
|
||||
import {Grid} from "@mui/material";
|
||||
import CallActions from "@/components/layouts/Dashboard/CallWidget/CallWidgetDialog/CallPanel/CallActions";
|
||||
import CallHistory from "@/components/layouts/Dashboard/CallWidget/CallWidgetDialog/CallPanel/CallHistory";
|
||||
|
||||
const CallPanel = () => {
|
||||
return (
|
||||
<Grid container columns={{xs: 3}}>
|
||||
<Grid item xs={2}>
|
||||
<CallActions/>
|
||||
</Grid>
|
||||
<Grid item xs={1}>
|
||||
<CallHistory/>
|
||||
</Grid>
|
||||
</Grid>
|
||||
)
|
||||
}
|
||||
|
||||
export default CallPanel
|
||||
@@ -0,0 +1,7 @@
|
||||
const CallActions = ({tab}) => {
|
||||
return (
|
||||
<>CallActions - {tab.id}</>
|
||||
)
|
||||
}
|
||||
|
||||
export default CallActions
|
||||
@@ -0,0 +1,7 @@
|
||||
const CallHistory = ({tab}) => {
|
||||
return (
|
||||
<>CallHistory - {tab.id}</>
|
||||
)
|
||||
}
|
||||
|
||||
export default CallHistory
|
||||
@@ -0,0 +1,19 @@
|
||||
import {Grid} from "@mui/material";
|
||||
import CallActions from "@/components/layouts/Dashboard/CallWidget/CallWidgetDialog/CallTabs/CallTabPanel/CallActions";
|
||||
import CallHistory from "@/components/layouts/Dashboard/CallWidget/CallWidgetDialog/CallTabs/CallTabPanel/CallHistory";
|
||||
|
||||
const CallTabPanel = ({tab}) => {
|
||||
return (
|
||||
<Grid container columns={{xs: 3}} sx={{display: !tab.active && 'none'}} role="tabpanel"
|
||||
id={`answer-tabpanel-${tab.id}`} aria-labelledby={`answer-tab-${tab.id}`}>
|
||||
<Grid item xs={2}>
|
||||
<CallActions tab={tab}/>
|
||||
</Grid>
|
||||
<Grid item xs={1}>
|
||||
<CallHistory tab={tab}/>
|
||||
</Grid>
|
||||
</Grid>
|
||||
)
|
||||
}
|
||||
|
||||
export default CallTabPanel
|
||||
@@ -0,0 +1,23 @@
|
||||
import {IconButton, Stack, Typography, Zoom} from "@mui/material";
|
||||
import CloseIcon from '@mui/icons-material/Close';
|
||||
import useAnswers from "@/lib/callWidget/hooks/useAnswers";
|
||||
|
||||
const CallTabLabel = ({tab}) => {
|
||||
const {closeAnswerTab} = useAnswers()
|
||||
const handleCloseClick = (id) => {
|
||||
closeAnswerTab(id)
|
||||
};
|
||||
|
||||
return (
|
||||
<Stack sx={{width: '100%'}} direction={'row'} alignItems={'center'} justifyContent={'space-between'}>
|
||||
<Typography>{tab.phone_number} - {tab.id}</Typography>
|
||||
<Zoom in={tab.active}>
|
||||
<IconButton onClick={() => handleCloseClick(tab.id)}>
|
||||
<CloseIcon/>
|
||||
</IconButton>
|
||||
</Zoom>
|
||||
</Stack>
|
||||
)
|
||||
}
|
||||
|
||||
export default CallTabLabel
|
||||
@@ -0,0 +1,27 @@
|
||||
import {Box, Tab, Tabs} from "@mui/material";
|
||||
import CallTabLabel
|
||||
from "@/components/layouts/Dashboard/CallWidget/CallWidgetDialog/CallTabs/CallTabsList/CallTabLabel";
|
||||
import useAnswers from "@/lib/callWidget/hooks/useAnswers";
|
||||
|
||||
const CallTabsList = () => {
|
||||
const {answersList, changeActiveTabAnswers, activeTab} = useAnswers()
|
||||
const handleChange = (event, newValue) => {
|
||||
changeActiveTabAnswers(newValue)
|
||||
};
|
||||
|
||||
return (
|
||||
<Box sx={{borderBottom: 1, borderColor: 'divider'}}>
|
||||
<Tabs
|
||||
value={activeTab}
|
||||
onChange={handleChange}
|
||||
variant={'fullWidth'}
|
||||
>
|
||||
{answersList.map((answer) => (
|
||||
<Tab component={'div'} sx={{py: 0.5, pr: 0}} label={<CallTabLabel tab={answer}/>} key={answer.id}/>
|
||||
))}
|
||||
</Tabs>
|
||||
</Box>
|
||||
)
|
||||
}
|
||||
|
||||
export default CallTabsList
|
||||
@@ -0,0 +1,17 @@
|
||||
import CallTabsList from "src/components/layouts/Dashboard/CallWidget/CallWidgetDialog/CallTabs/CallTabsList";
|
||||
import CallTabPanel from "@/components/layouts/Dashboard/CallWidget/CallWidgetDialog/CallTabs/CallTabPanel";
|
||||
import useAnswers from "@/lib/callWidget/hooks/useAnswers";
|
||||
|
||||
const CallTabs = () => {
|
||||
const {answersList} = useAnswers()
|
||||
|
||||
return (
|
||||
<>
|
||||
<CallTabsList/>
|
||||
{answersList.map((answer) => (
|
||||
<CallTabPanel key={answer.id} tab={answer}/>
|
||||
))}
|
||||
</>
|
||||
)
|
||||
}
|
||||
export default CallTabs
|
||||
@@ -4,18 +4,18 @@ import {useEffect} from "react";
|
||||
import useCallDialog from "@/lib/callWidget/hooks/useCallDialog";
|
||||
import useAnswers from "@/lib/callWidget/hooks/useAnswers";
|
||||
import useSocket from "@/lib/app/hooks/useSocket";
|
||||
import CallPanel from "@/components/layouts/Dashboard/CallWidget/CallWidgetDialog/CallPanel";
|
||||
import CallTabs from "@/components/layouts/Dashboard/CallWidget/CallWidgetDialog/CallTabs";
|
||||
|
||||
const CallWidgetDialog = () => {
|
||||
const {openCallDialog, setOpenCallDialog} = useCallDialog()
|
||||
const {answer, newAnswer} = useAnswers()
|
||||
const {answersList, newAnswerTab} = useAnswers()
|
||||
const socket = useSocket()
|
||||
|
||||
useEffect(() => {
|
||||
const answerCall = (_data, act) => {
|
||||
const data = JSON.parse(_data)
|
||||
newAnswer({
|
||||
id: data.id,
|
||||
newAnswerTab({
|
||||
id: data.call_id,
|
||||
phone_number: data.phone_number
|
||||
})
|
||||
act()
|
||||
@@ -28,12 +28,12 @@ const CallWidgetDialog = () => {
|
||||
});
|
||||
|
||||
useEffect(() => {
|
||||
if (answer) {
|
||||
setOpenCallDialog(true)
|
||||
if (answersList.length === 0) {
|
||||
setOpenCallDialog(false)
|
||||
return
|
||||
}
|
||||
setOpenCallDialog(false)
|
||||
}, [answer]);
|
||||
setOpenCallDialog(true)
|
||||
}, [answersList.length]);
|
||||
|
||||
return (
|
||||
<Dialog
|
||||
@@ -41,9 +41,7 @@ const CallWidgetDialog = () => {
|
||||
open={openCallDialog}
|
||||
TransitionComponent={DialogTransition}
|
||||
>
|
||||
{answer && (
|
||||
<CallPanel/>
|
||||
)}
|
||||
<CallTabs/>
|
||||
</Dialog>
|
||||
)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user