Skip to content

Commit

Permalink
Revert "[production-patch] Fix investigations crashes and same day di…
Browse files Browse the repository at this point in the history
…scharge" (#9085)

This reverts commit c5e9b5d.
  • Loading branch information
sainak authored Nov 11, 2024
1 parent c5e9b5d commit f3cf6cf
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 19 deletions.
10 changes: 0 additions & 10 deletions src/components/Common/DateInputV2.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -190,16 +190,6 @@ const DateInputV2: React.FC<Props> = ({
year = datePickerHeaderDate.getFullYear(),
) => {
const date = new Date(year, month, day);
if (
min &&
max &&
min.getDate() === max.getDate() &&
day === min.getDate() &&
month === min.getMonth() &&
year === min.getFullYear()
) {
return true;
}
if (min) if (date < min) return false;
if (max) if (date > max) return false;
return true;
Expand Down
4 changes: 2 additions & 2 deletions src/components/Facility/Investigations/Reports/index.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { useCallback, useReducer, useState } from "react";
import { InvestigationGroup, InvestigationType } from "..";

import _ from "lodash";
import { chain } from "lodash-es";
import { useTranslation } from "react-i18next";
import routes from "../../../../Redux/api";
import * as Notification from "../../../../Utils/Notifications";
Expand Down Expand Up @@ -172,7 +172,7 @@ const InvestigationReports = ({ id }: any) => {
),
);

const investigationList = _.chain(data)
const investigationList = chain(data)
.flatMap((i) => i?.data?.results)
.compact()
.flatten()
Expand Down
7 changes: 3 additions & 4 deletions src/components/Facility/Investigations/Reports/utils.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
import _ from "lodash";
import { memoize, findIndex } from "lodash-es";
import { memoize, chain, findIndex } from "lodash-es";
import { InvestigationResponse } from "./types";

export const transformData = memoize((data: InvestigationResponse) => {
const sessions = _.chain(data)
const sessions = chain(data)
.map((value: any) => {
return {
...value.session_object,
Expand All @@ -14,7 +13,7 @@ export const transformData = memoize((data: InvestigationResponse) => {
.uniqBy("session_external_id")
.orderBy("session_created_date", "desc")
.value();
const groupByInvestigation = _.chain(data)
const groupByInvestigation = chain(data)
.groupBy("investigation_object.external_id")
.values()
.value();
Expand Down
5 changes: 2 additions & 3 deletions src/components/Facility/Investigations/ShowInvestigation.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import _ from "lodash";
import { set } from "lodash-es";
import { set, chain } from "lodash-es";
import { useCallback, useReducer } from "react";
import routes from "../../../Redux/api";
import * as Notification from "../../../Utils/Notifications";
Expand Down Expand Up @@ -148,7 +147,7 @@ export default function ShowInvestigation(props: ShowInvestigationProps) {
};

const handleUpdateCancel = useCallback(() => {
const changedValues = _.chain(state.initialValues)
const changedValues = chain(state.initialValues)
.map((val: any, _key: string) => ({
id: val?.id,
initialValue: val?.notes || val?.value || null,
Expand Down

0 comments on commit f3cf6cf

Please sign in to comment.