feature/IO-3291-Tasks-Notifications: Checkpoint

This commit is contained in:
Dave Richer
2025-07-08 12:29:23 -04:00
parent 443ed717cb
commit 9b53bd9b40
6 changed files with 65 additions and 52 deletions

View File

@@ -1,4 +1,3 @@
// client/src/components/task-center/task-center.container.jsx
import { useCallback, useEffect, useMemo, useState } from "react";
import { useMutation, useQuery } from "@apollo/client";
import { connect } from "react-redux";
@@ -10,6 +9,7 @@ import { useNotification } from "../../contexts/Notifications/notificationContex
import { MUTATION_TOGGLE_TASK_COMPLETED, QUERY_MY_TASKS_PAGINATED } from "../../graphql/tasks.queries";
import TaskCenterComponent from "./task-center.component";
import dayjs from "../../utils/day";
import { setModalContext } from "../../redux/modals/modals.actions"; // Import setModalContext
const POLL_INTERVAL = 60; // seconds
@@ -18,7 +18,11 @@ const mapStateToProps = createStructuredSelector({
currentUser: selectCurrentUser
});
const TaskCenterContainer = ({ visible, onClose, bodyshop, currentUser }) => {
const mapDispatchToProps = (dispatch) => ({
setTaskUpsertContext: (context) => dispatch(setModalContext({ context, modal: "taskUpsert" }))
});
const TaskCenterContainer = ({ visible, onClose, bodyshop, currentUser, setTaskUpsertContext }) => {
const [tasks, setTasks] = useState([]);
const [showIncompleteOnly, setShowIncompleteOnly] = useState(true);
const [loading, setLoading] = useState(false);
@@ -93,10 +97,15 @@ const TaskCenterContainer = ({ visible, onClose, bodyshop, currentUser }) => {
(id) => {
const task = tasks.find((t) => t.id === id);
if (task) {
window.location.href = `/manage/jobs/${task.jobid}`;
setTaskUpsertContext({
context: {
taskId: task.id,
view: true
}
});
}
},
[tasks]
[tasks, setModalContext]
);
return (
@@ -108,9 +117,9 @@ const TaskCenterContainer = ({ visible, onClose, bodyshop, currentUser }) => {
showIncompleteOnly={showIncompleteOnly}
toggleIncomplete={handleToggleIncomplete}
markAllComplete={handleMarkAllComplete}
onTaskClick={handleTaskClick}
onTaskClick={handleTaskClick} // Pass the updated handler
/>
);
};
export default connect(mapStateToProps)(TaskCenterContainer);
export default connect(mapStateToProps, mapDispatchToProps)(TaskCenterContainer);