░▒▓████████████████████████████████▓▒░ ░▒▓█ ▓▒░ ░▒▓█ ~ S W A M P ~ ▓▒░ ░▒▓█ ▓▒░ ░▒▓████████████████████████████████▓▒░
pplmvsvm
LOCATION:
/var/www/canvas/ui/shared/k5/redux
☗ ROOT
↻ REFRESH
✎ CARVE FLESH
EDITING: redux-helpers.js
/* * Copyright (C) 2021 - present Instructure, Inc. * * This file is part of Canvas. * * Canvas is free software: you can redistribute it and/or modify it under * the terms of the GNU Affero General Public License as published by the Free * Software Foundation, version 3 of the License. * * Canvas is distributed in the hope that it will be useful, but WITHOUT ANY * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR * A PARTICULAR PURPOSE. See the GNU Affero General Public License for more * details. * * You should have received a copy of the GNU Affero General Public License along * with this program. If not, see <http://www.gnu.org/licenses/>. */ import moment from 'moment-timezone' import {countByCourseId} from '../react/utils' export const mapStateToProps = ({loading, opportunities, timeZone, weeklyDashboard}) => { const props = {assignmentsDueToday: {}, assignmentsMissing: {}, assignmentsCompletedForToday: {}} const todaysDate = moment.tz(timeZone).format('YYYY-MM-DD') const weeks = weeklyDashboard?.weeks || {} const days = Object.values(weeks).flat(1) const today = days.find(([date]) => date === todaysDate) if (today?.[1]?.length) { props.assignmentsDueToday = countByCourseId( today[1].filter(({status}) => status && !status.submitted) ) props.assignmentsCompletedForToday = countByCourseId( today[1].filter(({status}) => status && status.submitted) ) } if (opportunities?.items?.length) { props.assignmentsMissing = countByCourseId( opportunities.items.filter(({planner_override}) => !planner_override?.dismissed) ) } props.loadingOpportunities = !loading?.allOpportunitiesLoaded return props }
CANCEL
Name
Type
Size
Modified
Actions
↩ ..
DIR
—
—
📁 __tests__/
DIR
—
2023-09-24 03:36
📄 redux-helpers.js
JS
1.7 KB
2023-09-24 03:36
EDIT