|
@@ -3,8 +3,7 @@ import AppBar from '@mui/material/AppBar';
|
|
import { makeStyles,Typography } from '@material-ui/core'
|
|
import { makeStyles,Typography } from '@material-ui/core'
|
|
import Button from '@mui/material/Button';
|
|
import Button from '@mui/material/Button';
|
|
import { useState } from 'react';
|
|
import { useState } from 'react';
|
|
-import { useSelector } from 'react-redux';
|
|
|
|
-
|
|
|
|
|
|
+import { useSelector,useDispatch } from 'react-redux';
|
|
import IconButton from '@mui/material/IconButton';
|
|
import IconButton from '@mui/material/IconButton';
|
|
import ArrowBackIcon from '@mui/icons-material/ArrowBack';
|
|
import ArrowBackIcon from '@mui/icons-material/ArrowBack';
|
|
import Divider from '@mui/material/Divider';
|
|
import Divider from '@mui/material/Divider';
|
|
@@ -13,6 +12,7 @@ import Buttons from './Buttons'
|
|
import PinnedBar from './PinnedBar';
|
|
import PinnedBar from './PinnedBar';
|
|
import { removeSelectedMessagesById } from '../../../../api-data';
|
|
import { removeSelectedMessagesById } from '../../../../api-data';
|
|
import { getChatMemo } from '../../../../redux/chat/selector';
|
|
import { getChatMemo } from '../../../../redux/chat/selector';
|
|
|
|
+import { actionRightIsOpen,actionOpenPinned } from '../../../../redux/control/action';
|
|
import { TPinnedMessages } from '../../../../typescript/redux/pinnedMessages/types';
|
|
import { TPinnedMessages } from '../../../../typescript/redux/pinnedMessages/types';
|
|
|
|
|
|
const useStyles = makeStyles({
|
|
const useStyles = makeStyles({
|
|
@@ -26,10 +26,25 @@ const useStyles = makeStyles({
|
|
toolBarPinned: {
|
|
toolBarPinned: {
|
|
color: '#6e6d6d',
|
|
color: '#6e6d6d',
|
|
display: 'flex',
|
|
display: 'flex',
|
|
|
|
+ alignItems: 'center',
|
|
|
|
+ alignContent:'center',
|
|
backgroundColor: '#ffffff',
|
|
backgroundColor: '#ffffff',
|
|
height: '7vh',
|
|
height: '7vh',
|
|
cursor:'pointer'
|
|
cursor:'pointer'
|
|
- },
|
|
|
|
|
|
+ },
|
|
|
|
+ pinnedBack: {
|
|
|
|
+ display: 'flex',
|
|
|
|
+ width:'100%',
|
|
|
|
+ alignContent: 'center',
|
|
|
|
+ alignItems: 'center',
|
|
|
|
+ flexWrap: 'nowrap',
|
|
|
|
+ },
|
|
|
|
+ credentials: {
|
|
|
|
+ background: '#fdfdfd',
|
|
|
|
+ width:'100%',
|
|
|
|
+ height: '100%',
|
|
|
|
+ margin:'0 auto'
|
|
|
|
+ },
|
|
toolBarRight: {
|
|
toolBarRight: {
|
|
display: 'flex',
|
|
display: 'flex',
|
|
},
|
|
},
|
|
@@ -65,7 +80,7 @@ const useStyles = makeStyles({
|
|
transform: 'rotate(360deg)',
|
|
transform: 'rotate(360deg)',
|
|
transition: 'all 250ms ease-out ',
|
|
transition: 'all 250ms ease-out ',
|
|
}
|
|
}
|
|
- },
|
|
|
|
|
|
+ },
|
|
})
|
|
})
|
|
|
|
|
|
interface IHeaderBar {
|
|
interface IHeaderBar {
|
|
@@ -75,14 +90,23 @@ interface IHeaderBar {
|
|
setIsSomeSelected: React.Dispatch<React.SetStateAction<boolean>>,
|
|
setIsSomeSelected: React.Dispatch<React.SetStateAction<boolean>>,
|
|
handleClearSelect: () => void,
|
|
handleClearSelect: () => void,
|
|
openPinned: boolean,
|
|
openPinned: boolean,
|
|
- setOpenPinned: React.Dispatch<React.SetStateAction<boolean>>,
|
|
|
|
pinnedMessagesMemo:TPinnedMessages
|
|
pinnedMessagesMemo:TPinnedMessages
|
|
}
|
|
}
|
|
|
|
|
|
-const HeaderBar = ({chatDivRef,selectedArr,isSomeSelected,setIsSomeSelected,handleClearSelect,openPinned,setOpenPinned,pinnedMessagesMemo}:IHeaderBar) => {
|
|
|
|
|
|
+const HeaderBar = ({chatDivRef,selectedArr,isSomeSelected,setIsSomeSelected,handleClearSelect,openPinned,pinnedMessagesMemo}:IHeaderBar) => {
|
|
const classes = useStyles()
|
|
const classes = useStyles()
|
|
|
|
+ const dispatch = useDispatch()
|
|
const { companionId } = useSelector(getChatMemo)
|
|
const { companionId } = useSelector(getChatMemo)
|
|
const [modal, setModal] = useState<boolean>(false)
|
|
const [modal, setModal] = useState<boolean>(false)
|
|
|
|
+ const handleClosePinned = (e: any) => {
|
|
|
|
+ e.stopPropagation()
|
|
|
|
+ dispatch(actionOpenPinned(false))
|
|
|
|
+ }
|
|
|
|
+ const handleOpenPinned = () => dispatch(actionOpenPinned(true))
|
|
|
|
+ const handleOpenCredentials = (e: any) => {
|
|
|
|
+ e.stopPropagation()
|
|
|
|
+ dispatch(actionRightIsOpen('credentials'))
|
|
|
|
+ }
|
|
const handleOpenModal = (): void => setModal(true)
|
|
const handleOpenModal = (): void => setModal(true)
|
|
const handleDeleteModal = (e: any) => {
|
|
const handleDeleteModal = (e: any) => {
|
|
const id = e.target.id
|
|
const id = e.target.id
|
|
@@ -99,25 +123,28 @@ const HeaderBar = ({chatDivRef,selectedArr,isSomeSelected,setIsSomeSelected,hand
|
|
}
|
|
}
|
|
|
|
|
|
return (<>
|
|
return (<>
|
|
- {openPinned &&
|
|
|
|
|
|
+ {openPinned &&pinnedMessagesMemo.length > 0&&
|
|
<AppBar position="static">
|
|
<AppBar position="static">
|
|
<Toolbar className={classes.toolBarPinned}>
|
|
<Toolbar className={classes.toolBarPinned}>
|
|
- <IconButton onClick={() => setOpenPinned(false)}
|
|
|
|
- aria-label="delete" size="medium">
|
|
|
|
- <ArrowBackIcon className={classes.iconArrow} fontSize='medium'/>
|
|
|
|
- </IconButton>
|
|
|
|
- <Typography style={{ marginLeft: 20, color: '#474747' }} variant="h6" color="initial">
|
|
|
|
- {`${pinnedMessagesMemo.length} pinned messages`}
|
|
|
|
- </Typography>
|
|
|
|
- </Toolbar>
|
|
|
|
- </AppBar>}
|
|
|
|
|
|
+ <div onClick={handleOpenCredentials} className={classes.pinnedBack}>
|
|
|
|
+ <IconButton onClick={handleClosePinned}
|
|
|
|
+ aria-label="delete" size="medium">
|
|
|
|
+ <ArrowBackIcon className={classes.iconArrow} fontSize='medium'/>
|
|
|
|
+ </IconButton>
|
|
|
|
+ <Typography style={{ marginLeft:20, color: '#474747'}} variant="h6" color="initial">
|
|
|
|
+ {`${pinnedMessagesMemo.length} pinned messages`}
|
|
|
|
+ </Typography>
|
|
|
|
+ </div>
|
|
|
|
+ <Buttons setIsSomeSelected={setIsSomeSelected}/>
|
|
|
|
+ </Toolbar>
|
|
|
|
+ </AppBar>}
|
|
{openPinned&&isSomeSelected&&<Divider variant="inset"/>}
|
|
{openPinned&&isSomeSelected&&<Divider variant="inset"/>}
|
|
{!openPinned && !isSomeSelected &&
|
|
{!openPinned && !isSomeSelected &&
|
|
<AppBar position="static">
|
|
<AppBar position="static">
|
|
<Toolbar className={classes.toolBar}>
|
|
<Toolbar className={classes.toolBar}>
|
|
<Credentials/>
|
|
<Credentials/>
|
|
<div className={classes.toolBarRight}>
|
|
<div className={classes.toolBarRight}>
|
|
- <PinnedBar chatDivRef={chatDivRef} setOpenPinned={setOpenPinned}/>
|
|
|
|
|
|
+ <PinnedBar chatDivRef={chatDivRef} handleOpenPinned={handleOpenPinned}/>
|
|
<Buttons setIsSomeSelected={setIsSomeSelected}/>
|
|
<Buttons setIsSomeSelected={setIsSomeSelected}/>
|
|
</div>
|
|
</div>
|
|
</Toolbar>
|
|
</Toolbar>
|