From 851be377fff0195506f09a7d8aefa93c70afbaec Mon Sep 17 00:00:00 2001 From: jasquat Date: Wed, 23 Nov 2022 18:44:51 -0500 Subject: [PATCH] some ui changes w/ burnettk --- .../components/ProcessInstanceListTable.tsx | 2 +- .../src/components/ProcessInstanceRun.tsx | 2 +- .../src/components/TasksForMyOpenProcesses.tsx | 14 ++++++-------- .../src/components/TasksWaitingForMe.tsx | 18 ++++++++---------- .../src/components/TasksWaitingForMyGroups.tsx | 16 +++++++--------- spiffworkflow-frontend/src/index.css | 1 + .../src/routes/CreateNewInstance.tsx | 4 +--- .../src/routes/HomePageRoutes.tsx | 6 +++--- .../src/routes/ProcessModelShow.tsx | 17 ++++++++++------- 9 files changed, 38 insertions(+), 42 deletions(-) diff --git a/spiffworkflow-frontend/src/components/ProcessInstanceListTable.tsx b/spiffworkflow-frontend/src/components/ProcessInstanceListTable.tsx index 739c89484..78b67aaa9 100644 --- a/spiffworkflow-frontend/src/components/ProcessInstanceListTable.tsx +++ b/spiffworkflow-frontend/src/components/ProcessInstanceListTable.tsx @@ -608,7 +608,7 @@ export default function ProcessInstanceListTable({ const buildTable = () => { const headerLabels: Record = { id: 'Id', - process_model_identifier: 'Process Model', + process_model_identifier: 'Process', start_in_seconds: 'Start Time', end_in_seconds: 'End Time', status: 'Status', diff --git a/spiffworkflow-frontend/src/components/ProcessInstanceRun.tsx b/spiffworkflow-frontend/src/components/ProcessInstanceRun.tsx index c5d79abd7..bcead73fc 100644 --- a/spiffworkflow-frontend/src/components/ProcessInstanceRun.tsx +++ b/spiffworkflow-frontend/src/components/ProcessInstanceRun.tsx @@ -119,7 +119,7 @@ export default function ProcessInstanceRun({ return ( ); diff --git a/spiffworkflow-frontend/src/components/TasksForMyOpenProcesses.tsx b/spiffworkflow-frontend/src/components/TasksForMyOpenProcesses.tsx index 7a01a7c42..bfe9df6fa 100644 --- a/spiffworkflow-frontend/src/components/TasksForMyOpenProcesses.tsx +++ b/spiffworkflow-frontend/src/components/TasksForMyOpenProcesses.tsx @@ -65,7 +65,6 @@ export default function MyOpenProcesses() { > {rowToUse.task_title} - {rowToUse.process_instance_status} {rowToUse.group_identifier || '-'} {convertSecondsToFormattedDateTime( @@ -94,13 +93,12 @@ export default function MyOpenProcesses() { - - - - - - - + + + + + + diff --git a/spiffworkflow-frontend/src/components/TasksWaitingForMe.tsx b/spiffworkflow-frontend/src/components/TasksWaitingForMe.tsx index cd0eb048b..c34745e1d 100644 --- a/spiffworkflow-frontend/src/components/TasksWaitingForMe.tsx +++ b/spiffworkflow-frontend/src/components/TasksWaitingForMe.tsx @@ -56,7 +56,7 @@ export default function TasksWaitingForMe() { data-qa="process-instance-show-link" to={`/admin/process-models/${modifiedProcessModelIdentifier}/process-instances/${rowToUse.process_instance_id}`} > - View {rowToUse.process_instance_id} + {rowToUse.process_instance_id} -
Process ModelProcess InstanceTask NameProcess Instance StatusAssigned GroupProcess StartedProcess UpdatedProcessIdTaskWaiting ForDate StartedLast Updated Actions
{rowToUse.username}{rowToUse.process_instance_status} {rowToUse.group_identifier || '-'} {convertSecondsToFormattedDateTime( @@ -94,14 +93,13 @@ export default function TasksWaitingForMe() { - - - - - - - - + + + + + + + diff --git a/spiffworkflow-frontend/src/components/TasksWaitingForMyGroups.tsx b/spiffworkflow-frontend/src/components/TasksWaitingForMyGroups.tsx index 05a970ef7..b62d6edd0 100644 --- a/spiffworkflow-frontend/src/components/TasksWaitingForMyGroups.tsx +++ b/spiffworkflow-frontend/src/components/TasksWaitingForMyGroups.tsx @@ -66,7 +66,6 @@ export default function TasksWaitingForMyGroups() { {rowToUse.task_title} -
Process ModelProcess InstanceTask NameProcess Started ByProcess Instance StatusAssigned GroupProcess StartedProcess UpdatedProcessIdTaskStarted ByWaiting ForDate StartedLast Updated Actions
{rowToUse.username}{rowToUse.process_instance_status} {rowToUse.group_identifier || '-'} {convertSecondsToFormattedDateTime( @@ -95,14 +94,13 @@ export default function TasksWaitingForMyGroups() { - - - - - - - - + + + + + + + diff --git a/spiffworkflow-frontend/src/index.css b/spiffworkflow-frontend/src/index.css index 6985ef9f0..88202b6e5 100644 --- a/spiffworkflow-frontend/src/index.css +++ b/spiffworkflow-frontend/src/index.css @@ -273,4 +273,5 @@ td.actions-cell { line-height: 18px; letter-spacing: 0.16px; color: #525252; + margin-bottom: 1em; } diff --git a/spiffworkflow-frontend/src/routes/CreateNewInstance.tsx b/spiffworkflow-frontend/src/routes/CreateNewInstance.tsx index fbb3f8440..6d6d133f0 100644 --- a/spiffworkflow-frontend/src/routes/CreateNewInstance.tsx +++ b/spiffworkflow-frontend/src/routes/CreateNewInstance.tsx @@ -2,8 +2,6 @@ import ProcessModelListTiles from '../components/ProcessModelListTiles'; export default function CreateNewInstance() { return ( - Process models available to you} - /> + Processes you can start} /> ); } diff --git a/spiffworkflow-frontend/src/routes/HomePageRoutes.tsx b/spiffworkflow-frontend/src/routes/HomePageRoutes.tsx index 10d98f956..872a7a69c 100644 --- a/spiffworkflow-frontend/src/routes/HomePageRoutes.tsx +++ b/spiffworkflow-frontend/src/routes/HomePageRoutes.tsx @@ -35,12 +35,12 @@ export default function HomePageRoutes() { {/* navigate('/tasks/my-tasks')}>My Tasks */} - navigate('/tasks/grouped')}>Tasks + navigate('/tasks/grouped')}>In Progress navigate('/tasks/completed-instances')}> - Completed Instances + Completed navigate('/tasks/create-new-instance')}> - Create New Instance + + Start New + diff --git a/spiffworkflow-frontend/src/routes/ProcessModelShow.tsx b/spiffworkflow-frontend/src/routes/ProcessModelShow.tsx index d654a51e0..32d122f7b 100644 --- a/spiffworkflow-frontend/src/routes/ProcessModelShow.tsx +++ b/spiffworkflow-frontend/src/routes/ProcessModelShow.tsx @@ -101,6 +101,7 @@ export default function ProcessModelShow() { ).

+
); } @@ -544,16 +545,17 @@ export default function ProcessModelShow() { a={targetUris.processInstanceActionPath} ability={ability} > - + <> + +
+
+ -
-
{processInstanceRunResultTag()} -
{processInstanceListTableButton()}
+
{processModelButtons()}
Process ModelProcess InstanceTask NameProcess Started ByProcess Instance StatusAssigned GroupProcess StartedProcess UpdatedProcessIdTaskStarted ByWaiting ForDate StartedLast Updated Actions