mirror of
https://gitee.com/nocobase/nocobase.git
synced 2025-07-02 11:12:20 +08:00
Merge branch 'main' into next
This commit is contained in:
commit
bc9ff30a72
@ -14,12 +14,14 @@ import { Link, useNavigate } from 'react-router-dom';
|
|||||||
import {
|
import {
|
||||||
ActionContextProvider,
|
ActionContextProvider,
|
||||||
cx,
|
cx,
|
||||||
|
Input,
|
||||||
SchemaComponent,
|
SchemaComponent,
|
||||||
useAPIClient,
|
useAPIClient,
|
||||||
useApp,
|
useApp,
|
||||||
useCompile,
|
useCompile,
|
||||||
useDocumentTitle,
|
useDocumentTitle,
|
||||||
usePlugin,
|
usePlugin,
|
||||||
|
useRequest,
|
||||||
useResourceActionContext,
|
useResourceActionContext,
|
||||||
} from '@nocobase/client';
|
} from '@nocobase/client';
|
||||||
import { str2moment } from '@nocobase/utils/client';
|
import { str2moment } from '@nocobase/utils/client';
|
||||||
@ -34,6 +36,7 @@ import { FlowContext, useFlowContext } from './FlowContext';
|
|||||||
import { lang, NAMESPACE } from './locale';
|
import { lang, NAMESPACE } from './locale';
|
||||||
import useStyles from './style';
|
import useStyles from './style';
|
||||||
import { getWorkflowDetailPath, getWorkflowExecutionsPath, linkNodes } from './utils';
|
import { getWorkflowDetailPath, getWorkflowExecutionsPath, linkNodes } from './utils';
|
||||||
|
import { get } from 'lodash';
|
||||||
|
|
||||||
function attachJobs(nodes, jobs: any[] = []): void {
|
function attachJobs(nodes, jobs: any[] = []): void {
|
||||||
const nodesMap = new Map();
|
const nodesMap = new Map();
|
||||||
@ -56,6 +59,23 @@ function attachJobs(nodes, jobs: any[] = []): void {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function JobResult(props) {
|
||||||
|
const { viewJob } = useFlowContext();
|
||||||
|
const { data, loading } = useRequest({
|
||||||
|
resource: 'jobs',
|
||||||
|
action: 'get',
|
||||||
|
params: {
|
||||||
|
filterByTk: viewJob.id,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
if (loading) {
|
||||||
|
return <Spin />;
|
||||||
|
}
|
||||||
|
const result = get(data, 'data.result');
|
||||||
|
return <Input.JSON {...props} value={result} disabled />;
|
||||||
|
}
|
||||||
|
|
||||||
function JobModal() {
|
function JobModal() {
|
||||||
const { instructions } = usePlugin(WorkflowPlugin);
|
const { instructions } = usePlugin(WorkflowPlugin);
|
||||||
const compile = useCompile();
|
const compile = useCompile();
|
||||||
@ -68,6 +88,9 @@ function JobModal() {
|
|||||||
return (
|
return (
|
||||||
<ActionContextProvider value={{ visible: Boolean(job), setVisible: setViewJob }}>
|
<ActionContextProvider value={{ visible: Boolean(job), setVisible: setViewJob }}>
|
||||||
<SchemaComponent
|
<SchemaComponent
|
||||||
|
components={{
|
||||||
|
JobResult,
|
||||||
|
}}
|
||||||
schema={{
|
schema={{
|
||||||
type: 'void',
|
type: 'void',
|
||||||
properties: {
|
properties: {
|
||||||
@ -108,7 +131,7 @@ function JobModal() {
|
|||||||
type: 'object',
|
type: 'object',
|
||||||
title: `{{t("Node result", { ns: "${NAMESPACE}" })}}`,
|
title: `{{t("Node result", { ns: "${NAMESPACE}" })}}`,
|
||||||
'x-decorator': 'FormItem',
|
'x-decorator': 'FormItem',
|
||||||
'x-component': 'Input.JSON',
|
'x-component': 'JobResult',
|
||||||
'x-component-props': {
|
'x-component-props': {
|
||||||
className: styles.nodeJobResultClass,
|
className: styles.nodeJobResultClass,
|
||||||
autoSize: {
|
autoSize: {
|
||||||
@ -116,8 +139,6 @@ function JobModal() {
|
|||||||
maxRows: 32,
|
maxRows: 32,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
// 'x-read-pretty': true,
|
|
||||||
'x-disabled': true,
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
@ -38,6 +38,7 @@ export const ExecutionPage = () => {
|
|||||||
params: {
|
params: {
|
||||||
filter: params,
|
filter: params,
|
||||||
appends: ['jobs', 'workflow', 'workflow.nodes'],
|
appends: ['jobs', 'workflow', 'workflow.nodes'],
|
||||||
|
except: ['jobs.result', 'workflow.options'],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
Loading…
x
Reference in New Issue
Block a user