441 lines
12 KiB
React
441 lines
12 KiB
React
import React, {useState} from 'react';
|
|
|
|
import { InputAdornment, Tooltip, TextField, CircularProgress, ButtonGroup, Button, Avatar, ListItemAvatar, Typography, List, ListItem, ListItemText} from '@material-ui/core';
|
|
import {FavoriteBorder as FavoriteBorderIcon} from '@material-ui/icons';
|
|
|
|
// Handles workflow updates on first open to highlight the issues of the workflow
|
|
// Variables
|
|
// Action (exists, missing fields)
|
|
// Action auth
|
|
// Triggers
|
|
//
|
|
// Specifically used for UNSAVED workflows only?
|
|
const Workflow = (props) => {
|
|
const { globalUrl, theme, workflow, appAuthentication, setSelectedAction, setAuthenticationModalOpen, setSelectedApp, apps, selectedAction,setConfigureWorkflowModalOpen, saveWorkflow, newWebhook, submitSchedule, referenceUrl, isCloud, } = props
|
|
const [requiredActions, setRequiredActions] = React.useState([])
|
|
const [requiredVariables, setRequiredVariables] = React.useState([])
|
|
const [requiredTriggers, setRequiredTriggers] = React.useState([])
|
|
const [previousAuth, setPreviousAuth] = React.useState(appAuthentication)
|
|
const [firstLoad, setFirstLoad] = React.useState("")
|
|
var finished = false
|
|
|
|
if (workflow === undefined || workflow === null) {
|
|
return null
|
|
}
|
|
|
|
if (apps === undefined || apps === null) {
|
|
return null
|
|
}
|
|
|
|
if (appAuthentication === undefined || appAuthentication === null) {
|
|
return null
|
|
}
|
|
|
|
const getApp = (actionId, appId) => {
|
|
fetch(globalUrl+"/api/v1/apps/"+appId+"/config?openapi=false", {
|
|
headers: {
|
|
'Accept': 'application/json',
|
|
},
|
|
credentials: "include",
|
|
})
|
|
.then((response) => {
|
|
if (response.status === 200) {
|
|
//alert.success("Successfully GOT app "+appId)
|
|
} else {
|
|
alert.error("Failed getting app")
|
|
}
|
|
|
|
return response.json()
|
|
})
|
|
.then((responseJson) => {
|
|
console.log("ACTION: ", responseJson)
|
|
if (responseJson.actions !== undefined && responseJson.actions !== null) {
|
|
}
|
|
})
|
|
.catch(error => {
|
|
alert.error(error.toString())
|
|
});
|
|
}
|
|
|
|
if (firstLoad.length === 0 || firstLoad !== workflow.id) {
|
|
if (finished) {
|
|
setConfigureWorkflowModalOpen(false)
|
|
return null
|
|
}
|
|
|
|
setFirstLoad(workflow.id)
|
|
const newactions = []
|
|
for (var key in workflow.actions) {
|
|
const action = workflow.actions[key]
|
|
var newaction = {
|
|
"large_image": action.large_image,
|
|
"app_name": action.app_name,
|
|
"app_version": action.app_version,
|
|
"activation_done": false,
|
|
"must_activate": false,
|
|
"must_authenticate": false,
|
|
"auth_done": false,
|
|
"action_ids": [],
|
|
"action": action,
|
|
"app": {},
|
|
}
|
|
|
|
const app = apps.find(app => app.name === action.app_name && (app.app_version === action.app_version || app.loop_versions.includes(action.app_version)))
|
|
if (app === undefined || app === null) {
|
|
console.log("App not found!")
|
|
|
|
newaction.must_activate = true
|
|
} else {
|
|
if (action.authentication_id === "" && app.authentication.required === true) {
|
|
newaction.must_authenticate = true
|
|
newaction.action_ids.push(action.id)
|
|
}
|
|
|
|
newaction.app = app
|
|
}
|
|
|
|
if (action.errors !== undefined && action.errors !== null && action.errors.length > 0) {
|
|
//console.log("Node has errors!: ", action.errors)
|
|
}
|
|
|
|
if (newaction.must_authenticate) {
|
|
var authenticationOptions = []
|
|
for (var key in appAuthentication) {
|
|
const auth = appAuthentication[key]
|
|
if (auth.app.name === app.name && auth.active) {
|
|
//console.log("Found auth: ", auth)
|
|
authenticationOptions.push(auth)
|
|
newaction.authenticationId = auth.id
|
|
break
|
|
}
|
|
}
|
|
|
|
if (newaction.authenticationId === null || newaction.authenticationId === undefined || newaction.authenticationId.length === "") {
|
|
//console.log("FAILED to authenticate node!")
|
|
|
|
if (newactions.find(tmpaction => tmpaction.app_id === newaction.app_id && tmpaction.app_name === newaction.app_name) !== undefined) {
|
|
console.log("Action already found.")
|
|
} else {
|
|
newactions.push(newaction)
|
|
}
|
|
} else {
|
|
//console.log("Skipping node as it's already authenticated.")
|
|
newaction.authentication = authenticationOptions
|
|
workflow.actions[key] = newaction
|
|
}
|
|
} else if (newaction.must_activate) {
|
|
|
|
if (newactions.find(tmpaction => tmpaction.app_id === newaction.app_id && tmpaction.app_name === newaction.app_name) !== undefined) {
|
|
console.log("Action already found.")
|
|
} else {
|
|
newactions.push(newaction)
|
|
}
|
|
}
|
|
}
|
|
|
|
for (var key in workflow.workflow_variables) {
|
|
const variable = workflow.workflow_variables[key]
|
|
if (variable.value === undefined || variable.value === undefined || variable.value.length < 2) {
|
|
variable.value = ""
|
|
variable.index = key
|
|
requiredVariables.push(variable)
|
|
}
|
|
}
|
|
|
|
for (var key in workflow.triggers) {
|
|
var trigger = workflow.triggers[key]
|
|
trigger.index = key
|
|
|
|
if (trigger.status === "running") {
|
|
continue
|
|
}
|
|
|
|
if (trigger.trigger_type === "SUBFLOW" || trigger.trigger_type === "USERINPUT") {
|
|
continue
|
|
}
|
|
|
|
requiredTriggers.push(trigger)
|
|
}
|
|
|
|
if (requiredTriggers.length === 0 && requiredVariables.length === 0 && newactions.length === 0) {
|
|
setConfigureWorkflowModalOpen(false)
|
|
}
|
|
|
|
setRequiredTriggers(requiredTriggers)
|
|
setRequiredVariables(requiredVariables)
|
|
setRequiredActions(newactions)
|
|
}
|
|
|
|
if (appAuthentication.length !== previousAuth.length) {
|
|
var newactions = []
|
|
for (var actionkey in requiredActions) {
|
|
var newaction = requiredActions[actionkey]
|
|
const app = newaction.app
|
|
|
|
for (var key in appAuthentication) {
|
|
const auth = appAuthentication[key]
|
|
if (auth.app.name === app.name && auth.active) {
|
|
newaction.auth_done = true
|
|
break
|
|
}
|
|
}
|
|
|
|
newactions.push(newaction)
|
|
}
|
|
|
|
setRequiredActions(newactions)
|
|
setPreviousAuth(appAuthentication)
|
|
// Set auth done to true
|
|
//"auth_done": false
|
|
}
|
|
|
|
const TriggerSection = (props) => {
|
|
const {trigger} = props
|
|
|
|
return (
|
|
<ListItem>
|
|
<ListItemAvatar>
|
|
<Avatar variant="rounded">
|
|
<img alt={trigger.label} src={trigger.large_image} style={{width: 50}} />
|
|
</Avatar>
|
|
</ListItemAvatar>
|
|
<ListItemText
|
|
primary={trigger.name}
|
|
secondary={trigger.description}
|
|
style={{}}
|
|
/>
|
|
{trigger.trigger_type === "WEBHOOK" && trigger.status !== "running" ?
|
|
<Button disabled={trigger.status === "running"} color="primary" variant="contained" onClick={() => {
|
|
workflow.triggers[trigger.index].status = "running"
|
|
if (workflow.triggers[trigger.index].parameters === null) {
|
|
workflow.triggers[trigger.index].parameters = [
|
|
{"name": "url", "value": referenceUrl+"webhook_"+trigger.id},
|
|
{"name": "tmp", "value": "webhook_"+trigger.id},
|
|
]
|
|
}
|
|
|
|
newWebhook(workflow.triggers[trigger.index])
|
|
saveWorkflow(workflow)
|
|
}}>
|
|
{trigger.status !== "running" ? "Start" : "Running"}
|
|
</Button>
|
|
:
|
|
trigger.trigger_type === "SCHEDULE" && trigger.status !== "running" ?
|
|
<Button disabled={trigger.status === "running"} color="primary" variant="contained" onClick={() => {
|
|
workflow.triggers[trigger.index].status = "running"
|
|
if (workflow.triggers[trigger.index].parameters === null) {
|
|
workflow.triggers[trigger.index].parameters = [
|
|
{"name": "cron", "value": isCloud ? "*/15 * * * *" : "120"},
|
|
{"name": "execution_argument", "value": '{"example": {"json": "is cool"}}'},
|
|
]
|
|
}
|
|
|
|
submitSchedule(workflow.triggers[trigger.index], trigger.index)
|
|
saveWorkflow(workflow)
|
|
}}>
|
|
{trigger.status !== "running" ? "Start" : "Running"}
|
|
</Button>
|
|
:
|
|
null}
|
|
{/*
|
|
<ListItemText
|
|
primary={
|
|
<TextField
|
|
style={{backgroundColor: theme.palette.inputColor, borderRadius: 5,}}
|
|
InputProps={{
|
|
style:{
|
|
color: "white",
|
|
minHeight: 50,
|
|
marginLeft: 5,
|
|
maxWidth: "95%",
|
|
fontSize: "1em",
|
|
},
|
|
endAdornment: (
|
|
<InputAdornment position="end">
|
|
</InputAdornment>
|
|
)
|
|
}}
|
|
fullWidth
|
|
color="primary"
|
|
type={"text"}
|
|
placeholder={`New value for ${trigger.name}`}
|
|
onChange={(event) => {
|
|
console.log("NEW VALUE ON INDEX", trigger.value)
|
|
}}
|
|
onBlur={(event) => {
|
|
//workflow.variables[variable.index] = event.target.value
|
|
}}
|
|
/>
|
|
}
|
|
style={{}}
|
|
/>
|
|
*/}
|
|
</ListItem>
|
|
)
|
|
}
|
|
|
|
const VariableSection = (props) => {
|
|
const {variable} = props
|
|
|
|
//<Typography variant="body2">Name: {variable.name} - {variable.value}. </Typography>
|
|
return (
|
|
<ListItem>
|
|
<ListItemAvatar>
|
|
<Avatar>
|
|
<FavoriteBorderIcon />
|
|
</Avatar>
|
|
</ListItemAvatar>
|
|
<ListItemText
|
|
primary={variable.name}
|
|
secondary={variable.description}
|
|
style={{}}
|
|
/>
|
|
<ListItemText
|
|
primary={
|
|
<TextField
|
|
style={{backgroundColor: theme.palette.inputColor, borderRadius: 5,}}
|
|
InputProps={{
|
|
style:{
|
|
color: "white",
|
|
minHeight: 50,
|
|
marginLeft: 5,
|
|
maxWidth: "95%",
|
|
fontSize: "1em",
|
|
},
|
|
endAdornment: (
|
|
<InputAdornment position="end">
|
|
</InputAdornment>
|
|
)
|
|
}}
|
|
fullWidth
|
|
color="primary"
|
|
type={"text"}
|
|
placeholder={`New value for ${variable.name}`}
|
|
onChange={(event) => {
|
|
console.log("NEW VALUE ON INDEX", variable.index, variable.value)
|
|
}}
|
|
onBlur={(event) => {
|
|
workflow.workflow_variables[variable.index].value = event.target.value
|
|
}}
|
|
/>
|
|
}
|
|
style={{}}
|
|
/>
|
|
</ListItem>
|
|
)
|
|
}
|
|
|
|
const AppSection = (props) => {
|
|
const {action} = props
|
|
|
|
return (
|
|
<ListItem>
|
|
<ListItemAvatar>
|
|
<Avatar variant="rounded">
|
|
<img alt={action.app_name} src={action.large_image} style={{width: 50}} />
|
|
</Avatar>
|
|
</ListItemAvatar>
|
|
<ListItemText
|
|
primary={action.app_name}
|
|
secondary={action.app_version}
|
|
style={{}}
|
|
/>
|
|
{action.must_authenticate ?
|
|
action.auth_done ?
|
|
<Button color="primary" variant="outlined" onClick={() => {}}>
|
|
Authenticated
|
|
</Button>
|
|
:
|
|
selectedAction.app_name === action.app_name ?
|
|
<CircularProgress />
|
|
:
|
|
<Button color="primary" variant="contained" onClick={() => {
|
|
setSelectedAction(action.action)
|
|
setSelectedApp(action.app)
|
|
setAuthenticationModalOpen(true)
|
|
}}>
|
|
Authenticate
|
|
</Button>
|
|
:
|
|
null}
|
|
{action.must_activate ?
|
|
<Button color="primary" variant="contained" onClick={() => {
|
|
console.log("SHOULD ACTIVATE: ", action)
|
|
}}>
|
|
Activate
|
|
</Button>
|
|
: null}
|
|
</ListItem>
|
|
)
|
|
}
|
|
|
|
return (
|
|
<div>
|
|
<Typography variant="h6">{workflow.name}</Typography>
|
|
<Typography variant="body1" color="textSecondary">
|
|
The following configuration makes the workflow ready immediately.
|
|
</Typography>
|
|
{requiredActions.length > 0 ?
|
|
<span>
|
|
<Typography variant="body1" style={{marginTop: 10}}>Actions</Typography>
|
|
<List>
|
|
{requiredActions.map((data, index) => {
|
|
return (
|
|
<AppSection key={index} action={data} />
|
|
)
|
|
})}
|
|
</List>
|
|
</span>
|
|
: null}
|
|
|
|
{requiredVariables.length > 0 ?
|
|
<span>
|
|
<Typography variant="body1" style={{marginTop: 10}}>Variables</Typography>
|
|
<List>
|
|
{requiredVariables.map((data, index) => {
|
|
return (
|
|
<VariableSection key={index} variable={data} />
|
|
)
|
|
})}
|
|
</List>
|
|
</span>
|
|
: null}
|
|
|
|
|
|
{requiredTriggers.length > 0 ?
|
|
<span>
|
|
<Typography variant="body1" style={{marginTop: 10}}>Triggers</Typography>
|
|
<List>
|
|
{requiredTriggers.map((data, index) => {
|
|
return (
|
|
<TriggerSection key={index} trigger={data} />
|
|
)
|
|
})}
|
|
</List>
|
|
</span>
|
|
: null }
|
|
<div style={{textAlign: "center", display: "flex", marginTop: 20, }}>
|
|
<ButtonGroup style={{margin: "auto",}}>
|
|
{/*
|
|
<Button color="primary" variant={"outlined"} style={{
|
|
}} onClick={() => {
|
|
setConfigureWorkflowModalOpen(false)
|
|
}}>
|
|
Skip
|
|
</Button>
|
|
*/}
|
|
<Button color="primary" variant={"contained"} style={{
|
|
}} onClick={() => {
|
|
saveWorkflow(workflow)
|
|
window.location.reload()
|
|
}}>
|
|
Finish setup
|
|
</Button>
|
|
</ButtonGroup>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default Workflow
|