feat(dashboard,admin-shared): Last injection zones (#7478)

* add reservations

* add final injection zones
This commit is contained in:
Kasper Fabricius Kristensen
2024-05-27 19:38:26 +02:00
committed by GitHub
parent d2b5768c02
commit 2efa016c6e
12 changed files with 248 additions and 8 deletions

View File

@@ -7,6 +7,9 @@ import { WorkflowExecutionHistorySection } from "./components/workflow-execution
import { WorkflowExecutionPayloadSection } from "./components/workflow-execution-payload-section"
import { WorkflowExecutionTimelineSection } from "./components/workflow-execution-timeline-section"
import after from "virtual:medusa/widgets/workflow/details/after"
import before from "virtual:medusa/widgets/workflow/details/before"
export const ExecutionDetail = () => {
const { id } = useParams()
@@ -23,10 +26,24 @@ export const ExecutionDetail = () => {
return (
<div className="flex flex-col gap-y-2">
{before.widgets.map((w, i) => {
return (
<div key={i}>
<w.Component execution={workflow_execution} />
</div>
)
})}
<WorkflowExecutionGeneralSection execution={workflow_execution} />
<WorkflowExecutionTimelineSection execution={workflow_execution} />
<WorkflowExecutionPayloadSection execution={workflow_execution} />
<WorkflowExecutionHistorySection execution={workflow_execution} />
{after.widgets.map((w, i) => {
return (
<div key={i}>
<w.Component execution={workflow_execution} />
</div>
)
})}
<JsonViewSection data={workflow_execution} />
</div>
)

View File

@@ -1,9 +1,26 @@
import { WorkflowExecutionListTable } from "./components/workflow-execution-list-table"
import after from "virtual:medusa/widgets/workflow/list/after"
import before from "virtual:medusa/widgets/workflow/list/before"
export const WorkflowExcecutionList = () => {
return (
<div className="flex flex-col gap-y-2">
{before.widgets.map((w, i) => {
return (
<div key={i}>
<w.Component />
</div>
)
})}
<WorkflowExecutionListTable />
{after.widgets.map((w, i) => {
return (
<div key={i}>
<w.Component />
</div>
)
})}
</div>
)
}