mirror of https://github.com/FlowiseAI/Flowise.git
176 lines
7.2 KiB
JavaScript
176 lines
7.2 KiB
JavaScript
import { useState, useEffect } from 'react'
|
|
import { createPortal } from 'react-dom'
|
|
import { useDispatch } from 'react-redux'
|
|
import PropTypes from 'prop-types'
|
|
import { List, ListItemButton, Dialog, DialogContent, DialogTitle, Box, OutlinedInput, InputAdornment, Typography } from '@mui/material'
|
|
import { useTheme } from '@mui/material/styles'
|
|
import { IconSearch, IconX } from '@tabler/icons'
|
|
|
|
// const
|
|
import { baseURL } from '@/store/constant'
|
|
import { HIDE_CANVAS_DIALOG, SHOW_CANVAS_DIALOG } from '@/store/actions'
|
|
|
|
const CredentialListDialog = ({ show, dialogProps, onCancel, onCredentialSelected }) => {
|
|
const portalElement = document.getElementById('portal')
|
|
const dispatch = useDispatch()
|
|
const theme = useTheme()
|
|
const [searchValue, setSearchValue] = useState('')
|
|
const [componentsCredentials, setComponentsCredentials] = useState([])
|
|
|
|
const filterSearch = (value) => {
|
|
setSearchValue(value)
|
|
setTimeout(() => {
|
|
if (value) {
|
|
const searchData = dialogProps.componentsCredentials.filter((crd) => crd.name.toLowerCase().includes(value.toLowerCase()))
|
|
setComponentsCredentials(searchData)
|
|
} else if (value === '') {
|
|
setComponentsCredentials(dialogProps.componentsCredentials)
|
|
}
|
|
// scrollTop()
|
|
}, 500)
|
|
}
|
|
|
|
useEffect(() => {
|
|
if (dialogProps.componentsCredentials) {
|
|
setComponentsCredentials(dialogProps.componentsCredentials)
|
|
}
|
|
}, [dialogProps])
|
|
|
|
useEffect(() => {
|
|
if (show) dispatch({ type: SHOW_CANVAS_DIALOG })
|
|
else dispatch({ type: HIDE_CANVAS_DIALOG })
|
|
return () => dispatch({ type: HIDE_CANVAS_DIALOG })
|
|
}, [show, dispatch])
|
|
|
|
const component = show ? (
|
|
<Dialog
|
|
fullWidth
|
|
maxWidth='md'
|
|
open={show}
|
|
onClose={onCancel}
|
|
aria-labelledby='alert-dialog-title'
|
|
aria-describedby='alert-dialog-description'
|
|
>
|
|
<DialogTitle sx={{ fontSize: '1rem', p: 3, pb: 0 }} id='alert-dialog-title'>
|
|
{dialogProps.title}
|
|
</DialogTitle>
|
|
<DialogContent sx={{ display: 'flex', flexDirection: 'column', gap: 2, maxHeight: '75vh', position: 'relative', px: 3, pb: 3 }}>
|
|
<Box
|
|
sx={{
|
|
backgroundColor: theme.palette.background.paper,
|
|
pt: 2,
|
|
position: 'sticky',
|
|
top: 0,
|
|
zIndex: 10
|
|
}}
|
|
>
|
|
<OutlinedInput
|
|
sx={{ width: '100%', pr: 2, pl: 2, position: 'sticky' }}
|
|
id='input-search-credential'
|
|
value={searchValue}
|
|
onChange={(e) => filterSearch(e.target.value)}
|
|
placeholder='Search credential'
|
|
startAdornment={
|
|
<InputAdornment position='start'>
|
|
<IconSearch stroke={1.5} size='1rem' color={theme.palette.grey[500]} />
|
|
</InputAdornment>
|
|
}
|
|
endAdornment={
|
|
<InputAdornment
|
|
position='end'
|
|
sx={{
|
|
cursor: 'pointer',
|
|
color: theme.palette.grey[500],
|
|
'&:hover': {
|
|
color: theme.palette.grey[900]
|
|
}
|
|
}}
|
|
title='Clear Search'
|
|
>
|
|
<IconX
|
|
stroke={1.5}
|
|
size='1rem'
|
|
onClick={() => filterSearch('')}
|
|
style={{
|
|
cursor: 'pointer'
|
|
}}
|
|
/>
|
|
</InputAdornment>
|
|
}
|
|
aria-describedby='search-helper-text'
|
|
inputProps={{
|
|
'aria-label': 'weight'
|
|
}}
|
|
/>
|
|
</Box>
|
|
<List
|
|
sx={{
|
|
width: '100%',
|
|
display: 'grid',
|
|
gridTemplateColumns: 'repeat(3, 1fr)',
|
|
gap: 2,
|
|
py: 0,
|
|
zIndex: 9,
|
|
borderRadius: '10px',
|
|
[theme.breakpoints.down('md')]: {
|
|
maxWidth: 370
|
|
}
|
|
}}
|
|
>
|
|
{[...componentsCredentials].map((componentCredential) => (
|
|
<ListItemButton
|
|
alignItems='center'
|
|
key={componentCredential.name}
|
|
onClick={() => onCredentialSelected(componentCredential)}
|
|
sx={{
|
|
border: 1,
|
|
borderColor: theme.palette.grey[900] + 25,
|
|
borderRadius: 2,
|
|
display: 'flex',
|
|
alignItems: 'center',
|
|
justifyContent: 'start',
|
|
textAlign: 'left',
|
|
gap: 1,
|
|
p: 2
|
|
}}
|
|
>
|
|
<div
|
|
style={{
|
|
width: 50,
|
|
height: 50,
|
|
borderRadius: '50%',
|
|
backgroundColor: 'white'
|
|
}}
|
|
>
|
|
<img
|
|
style={{
|
|
width: '100%',
|
|
height: '100%',
|
|
padding: 7,
|
|
borderRadius: '50%',
|
|
objectFit: 'contain'
|
|
}}
|
|
alt={componentCredential.name}
|
|
src={`${baseURL}/api/v1/components-credentials-icon/${componentCredential.name}`}
|
|
/>
|
|
</div>
|
|
<Typography>{componentCredential.label}</Typography>
|
|
</ListItemButton>
|
|
))}
|
|
</List>
|
|
</DialogContent>
|
|
</Dialog>
|
|
) : null
|
|
|
|
return createPortal(component, portalElement)
|
|
}
|
|
|
|
CredentialListDialog.propTypes = {
|
|
show: PropTypes.bool,
|
|
dialogProps: PropTypes.object,
|
|
onCancel: PropTypes.func,
|
|
onCredentialSelected: PropTypes.func
|
|
}
|
|
|
|
export default CredentialListDialog
|