mirror of
https://github.com/farcasclaudiu/Flowise.git
synced 2026-06-26 15:00:20 +03:00
142 lines
5.8 KiB
JavaScript
142 lines
5.8 KiB
JavaScript
import { createPortal } from 'react-dom'
|
|
import { useDispatch } from 'react-redux'
|
|
import { useEffect } from 'react'
|
|
import PropTypes from 'prop-types'
|
|
|
|
// Material
|
|
import { Dialog, DialogContent, DialogTitle } from '@mui/material'
|
|
import { TableViewOnly } from 'ui-component/table/Table'
|
|
|
|
// Store
|
|
import { HIDE_CANVAS_DIALOG, SHOW_CANVAS_DIALOG } from 'store/actions'
|
|
import { baseURL } from 'store/constant'
|
|
|
|
// API
|
|
import configApi from 'api/config'
|
|
import useApi from 'hooks/useApi'
|
|
|
|
const NodeInfoDialog = ({ show, dialogProps, onCancel }) => {
|
|
const portalElement = document.getElementById('portal')
|
|
const dispatch = useDispatch()
|
|
|
|
const getNodeConfigApi = useApi(configApi.getNodeConfig)
|
|
|
|
useEffect(() => {
|
|
if (dialogProps.data) {
|
|
getNodeConfigApi.request(dialogProps.data)
|
|
}
|
|
|
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
}, [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
|
|
onClose={onCancel}
|
|
open={show}
|
|
fullWidth
|
|
maxWidth='md'
|
|
aria-labelledby='alert-dialog-title'
|
|
aria-describedby='alert-dialog-description'
|
|
>
|
|
<DialogTitle sx={{ fontSize: '1rem' }} id='alert-dialog-title'>
|
|
{dialogProps.data && dialogProps.data.name && dialogProps.data.label && (
|
|
<div style={{ display: 'flex', flexDirection: 'row', alignItems: 'center' }}>
|
|
<div
|
|
style={{
|
|
width: 50,
|
|
height: 50,
|
|
marginRight: 10,
|
|
borderRadius: '50%',
|
|
backgroundColor: 'white'
|
|
}}
|
|
>
|
|
<img
|
|
style={{
|
|
width: '100%',
|
|
height: '100%',
|
|
padding: 7,
|
|
borderRadius: '50%',
|
|
objectFit: 'contain'
|
|
}}
|
|
alt={dialogProps.data.name}
|
|
src={`${baseURL}/api/v1/node-icon/${dialogProps.data.name}`}
|
|
/>
|
|
</div>
|
|
<div style={{ display: 'flex', flexDirection: 'column', marginLeft: 10 }}>
|
|
{dialogProps.data.label}
|
|
<div style={{ display: 'flex', flexDirection: 'row' }}>
|
|
<div
|
|
style={{
|
|
display: 'flex',
|
|
flexDirection: 'row',
|
|
width: 'max-content',
|
|
borderRadius: 15,
|
|
background: 'rgb(254,252,191)',
|
|
padding: 5,
|
|
paddingLeft: 10,
|
|
paddingRight: 10,
|
|
marginTop: 5,
|
|
marginBottom: 5
|
|
}}
|
|
>
|
|
<span style={{ color: 'rgb(116,66,16)', fontSize: '0.825rem' }}>{dialogProps.data.id}</span>
|
|
</div>
|
|
{dialogProps.data.version && (
|
|
<div
|
|
style={{
|
|
display: 'flex',
|
|
flexDirection: 'row',
|
|
width: 'max-content',
|
|
borderRadius: 15,
|
|
background: '#e9edc9',
|
|
padding: 5,
|
|
paddingLeft: 10,
|
|
paddingRight: 10,
|
|
marginTop: 5,
|
|
marginLeft: 10,
|
|
marginBottom: 5
|
|
}}
|
|
>
|
|
<span style={{ color: '#606c38', fontSize: '0.825rem' }}>version {dialogProps.data.version}</span>
|
|
</div>
|
|
)}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
)}
|
|
</DialogTitle>
|
|
<DialogContent>
|
|
{dialogProps.data?.description && (
|
|
<div
|
|
style={{
|
|
padding: 10,
|
|
marginBottom: 10
|
|
}}
|
|
>
|
|
<span>{dialogProps.data.description}</span>
|
|
</div>
|
|
)}
|
|
{getNodeConfigApi.data && getNodeConfigApi.data.length > 0 && (
|
|
<TableViewOnly rows={getNodeConfigApi.data} columns={Object.keys(getNodeConfigApi.data[0]).slice(-3)} />
|
|
)}
|
|
</DialogContent>
|
|
</Dialog>
|
|
) : null
|
|
|
|
return createPortal(component, portalElement)
|
|
}
|
|
|
|
NodeInfoDialog.propTypes = {
|
|
show: PropTypes.bool,
|
|
dialogProps: PropTypes.object,
|
|
onCancel: PropTypes.func
|
|
}
|
|
|
|
export default NodeInfoDialog
|