Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

delivery new changes, toast fix, error fix #716

Merged
merged 12 commits into from
May 29, 2024
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<link rel="stylesheet" href="https://unpkg.com/@egovernments/[email protected]/dist/index.css" />

<link rel="stylesheet" href="https://unpkg.com/@egovernments/[email protected]/dist/index.css" />
<link rel="stylesheet" href="https://unpkg.com/@egovernments/[email protected].44-campaign/dist/index.css" />
<link rel="stylesheet" href="https://unpkg.com/@egovernments/[email protected].45-campaign/dist/index.css" />
<!-- added below css for hcm-workbench module inclusion-->

<!-- <link rel="stylesheet" href="https://unpkg.com/@egovernments/[email protected]/dist/index.css" /> -->
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@egovernments/digit-ui-css",
"version": "1.0.44-campaign",
"version": "1.0.45-campaign",
"license": "MIT",
"main": "dist/index.css",
"author": "Jagankumar <[email protected]>",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -292,3 +292,26 @@ input[type="date"]::-webkit-calendar-picker-indicator {
}
}
}

.digit-toast-success {
max-width: 90%;
margin-left: auto;
margin-right: auto;
height: auto;
.toast-label {
line-height: 1.5;
word-break: break-word;
height: auto;
white-space: unset;
}
}

.digit-dropdown-select.error {
border: 1px solid #d4351c;
}
.campaign-type-wrapper {
.digit-error-icon-message-wrap {
margin-top: 4px;
font-size: 14px;
}
}
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React, { useState, useEffect } from "react";
import { DatePicker, LabelFieldPair, Header } from "@egovernments/digit-ui-react-components";
import { useTranslation } from "react-i18next";
import { TextInput } from "@egovernments/digit-ui-components";
import { ErrorMessage, TextInput } from "@egovernments/digit-ui-components";

const CampaignDates = ({ onSelect, formData, ...props }) => {
const { t } = useTranslation();
Expand All @@ -14,6 +14,8 @@ const CampaignDates = ({ onSelect, formData, ...props }) => {
const [startDate, setStartDate] = useState(props?.props?.sessionData?.HCM_CAMPAIGN_DATE?.campaignDates?.startDate); // Set default start date to today
const [endDate, setEndDate] = useState(props?.props?.sessionData?.HCM_CAMPAIGN_DATE?.campaignDates?.endDate); // Default end date
const [executionCount, setExecutionCount] = useState(0);
const [error, setError] = useState(null);
const [startValidation, setStartValidation] = useState(null);

useEffect(() => {
setDates({
Expand All @@ -23,18 +25,38 @@ const CampaignDates = ({ onSelect, formData, ...props }) => {
setStartDate(props?.props?.sessionData?.HCM_CAMPAIGN_DATE?.campaignDates?.startDate);
setEndDate(props?.props?.sessionData?.HCM_CAMPAIGN_DATE?.campaignDates?.endDate);
}, [props?.props?.sessionData?.HCM_CAMPAIGN_DATE?.campaignDates]);


useEffect(() => {
nabeelmd-eGov marked this conversation as resolved.
Show resolved Hide resolved
if (props?.props?.isSubmitting && !endDate && !startDate) {
setError({ startDate: "CAMPAIGN_FIELD_MANDATORY", endDate: "CAMPAIGN_FIELD_MANDATORY" });
} else if (props?.props?.isSubmitting && !startDate) {
setError({ startDate: "CAMPAIGN_FIELD_MANDATORY" });
} else if (props?.props?.isSubmitting && !endDate) {
setError({ endDate: "CAMPAIGN_FIELD_MANDATORY" });
} else {
setError(null);
}
nabeelmd-eGov marked this conversation as resolved.
Show resolved Hide resolved
}, [props?.props?.isSubmitting]);
useEffect(() => {
onSelect("campaignDates", { startDate: startDate, endDate: endDate });
if (!startDate && startValidation) {
setError({ startDate: "CAMPAIGN_START_DATE_ERROR" });
} else if (!endDate && startValidation) {
setError({ endDate: "CAMPAIGN_END_DATE_ERROR" });
} else if (new Date(endDate).getTime() < new Date(startDate).getTime() && startValidation) {
setError({ endDate: "CAMPAIGN_END_DATE_BEFORE_ERROR" });
} else if (startDate || endDate) {
setError(null);
onSelect("campaignDates", { startDate: startDate, endDate: endDate });
}
}, [startDate, endDate]);

useEffect(() => {
if (executionCount < 5) {
onSelect("campaignDates", { startDate: startDate, endDate: endDate });
setExecutionCount(prevCount => prevCount + 1);
setExecutionCount((prevCount) => prevCount + 1);
}
});

function setStart(value) {
setStartDate(value);
}
Expand All @@ -53,20 +75,34 @@ const CampaignDates = ({ onSelect, formData, ...props }) => {
<span className="mandatory-date">*</span>
</div>
<div className="date-field-container">
<TextInput
type="date"
value={startDate}
placeholder={t("HCM_START_DATE")}
min={Digit.Utils.date.getDate(Date.now() + ONE_DAY_IN_MS)}
onChange={(d) => setStart(d)}
/>
<TextInput
type="date"
value={endDate}
placeholder={t("HCM_END_DATE")}
min={Digit.Utils.date.getDate(Date.now() + 2 * ONE_DAY_IN_MS)}
onChange={(d) => setEnd(d)}
/>
<div>
<TextInput
error={error?.startDate}
type="date"
value={startDate}
placeholder={t("HCM_START_DATE")}
min={Digit.Utils.date.getDate(Date.now() + ONE_DAY_IN_MS)}
onChange={(d) => {
setStartValidation(true);
setStart(d);
}}
/>
{error?.startDate && <ErrorMessage message={t(error?.startDate)} showIcon={true} />}
</div>
<div>
<TextInput
error={error?.endDate}
type="date"
value={endDate}
placeholder={t("HCM_END_DATE")}
min={Digit.Utils.date.getDate(Date.now() + 2 * ONE_DAY_IN_MS)}
onChange={(d) => {
setStartValidation(true);
setEnd(d);
}}
/>
{error?.endDate && <ErrorMessage message={t(error?.endDate)} showIcon={true} />}
</div>
</div>
</LabelFieldPair>
</React.Fragment>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,19 +1,33 @@
import React, { useState, useEffect } from "react";
import { Header, TextInput } from "@egovernments/digit-ui-react-components";
import { Header } from "@egovernments/digit-ui-react-components";
import { useTranslation } from "react-i18next";
import { LabelFieldPair } from "@egovernments/digit-ui-react-components";
import { ErrorMessage, TextInput } from "@egovernments/digit-ui-components";

const CampaignName = ({ onSelect, formData, control, ...props }) => {
const CampaignName = ({ onSelect, formData, control, formState, ...props }) => {
nabeelmd-eGov marked this conversation as resolved.
Show resolved Hide resolved
const { t } = useTranslation();
const [name, setName] = useState(props?.props?.sessionData?.HCM_CAMPAIGN_NAME?.campaignName || null);
const [executionCount, setExecutionCount] = useState(0);

const [startValidation, setStartValidation] = useState(null);
const [error, setError] = useState(null);
useEffect(() => {
setName(props?.props?.sessionData?.HCM_CAMPAIGN_NAME?.campaignName);
}, [props?.props?.sessionData?.HCM_CAMPAIGN_NAME]);

useEffect(() => {
nabeelmd-eGov marked this conversation as resolved.
Show resolved Hide resolved
onSelect("campaignName", name);
if (props?.props?.isSubmitting && !name) {
setError({ message: "CAMPAIGN_FIELD_MANDATORY" });
} else {
setError(null);
}
}, [props?.props?.isSubmitting]);
useEffect(() => {
if (startValidation && !name) {
setError({ message: "CAMPAIGN_NAME_ERROR" });
} else if (name) {
setError(null);
onSelect("campaignName", name);
}
nabeelmd-eGov marked this conversation as resolved.
Show resolved Hide resolved
}, [name, props?.props?.sessionData?.HCM_CAMPAIGN_NAME?.campaignName]);

useEffect(() => {
Expand All @@ -32,7 +46,19 @@ const CampaignName = ({ onSelect, formData, control, ...props }) => {
<span>{`${t("HCM_CAMPAIGN_NAME")}`}</span>
<span className="mandatory-span">*</span>
</div>
<TextInput style={{ width: "40rem", marginBottom: "0" }} name="campaignName" value={name} onChange={(event) => setName(event.target.value)} />
<div>
<TextInput
error={!!error}
style={{ width: "40rem", marginBottom: "0" }}
name="campaignName"
value={name}
onChange={(event) => {
setStartValidation(true);
setName(event.target.value);
}}
/>
{error?.message && <ErrorMessage message={t(error?.message)} showIcon={true} />}
</div>
</LabelFieldPair>
</React.Fragment>
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,24 @@ import React, { useState, useMemo, useRef, useEffect } from "react";
import { UploadIcon, FileIcon, DeleteIconv2, Toast, Card, Header } from "@egovernments/digit-ui-react-components";
import { useTranslation } from "react-i18next";
import { LabelFieldPair } from "@egovernments/digit-ui-react-components";
import { Dropdown } from "@egovernments/digit-ui-components";
import { Dropdown, ErrorMessage } from "@egovernments/digit-ui-components";

const CampaignSelection = ({ onSelect, formData, ...props }) => {
const CampaignSelection = ({ onSelect, formData, formState, ...props }) => {
nabeelmd-eGov marked this conversation as resolved.
Show resolved Hide resolved
const { t } = useTranslation();
const tenantId = Digit.ULBService.getStateId();
const { isLoading, data: projectType } = Digit.Hooks.useCustomMDMS(tenantId, "HCM-PROJECT-TYPES", [{ name: "projectTypes" }]);
const [type, setType] = useState(props?.props?.sessionData?.HCM_CAMPAIGN_TYPE?.projectType || {});
const [beneficiaryType, setBeneficiaryType] = useState(props?.props?.sessionData?.HCM_CAMPAIGN_TYPE?.projectType?.beneficiaryType || "");
const [showBeneficiary, setShowBeneficiaryType] = useState(Boolean(props?.props?.sessionData?.HCM_CAMPAIGN_TYPE?.projectType?.beneficiaryType));
const [executionCount, setExecutionCount] = useState(0);
const [error, setError] = useState(null);
const [startValidation, setStartValidation] = useState(null);

useEffect(() => {
nabeelmd-eGov marked this conversation as resolved.
Show resolved Hide resolved
if (props?.props?.isSubmitting && !type) {
setError({ message: "CAMPAIGN_FIELD_MANDATORY" });
}
}, [props?.props?.isSubmitting]);
useEffect(() => {
setType(props?.props?.sessionData?.HCM_CAMPAIGN_TYPE?.projectType);
setBeneficiaryType(props?.props?.sessionData?.HCM_CAMPAIGN_TYPE?.projectType?.beneficiaryType);
Expand All @@ -26,7 +33,12 @@ const CampaignSelection = ({ onSelect, formData, ...props }) => {
};

useEffect(() => {
onSelect("projectType", type);
if (!type && startValidation) {
setError({ message: "CAMPAIGN_FIELD_MANDATORY" });
} else {
setError(null);
onSelect("projectType", type);
}
nabeelmd-eGov marked this conversation as resolved.
Show resolved Hide resolved
}, [type]);

useEffect(() => {
Expand All @@ -44,16 +56,21 @@ const CampaignSelection = ({ onSelect, formData, ...props }) => {
<span>{`${t("HCM_CAMPAIGN_TYPE")}`}</span>
<span className="mandatory-span">*</span>
</div>
<Dropdown
style={{ width: "40rem" , paddingBottom: "1rem" }}
t={t}
option={projectType?.["HCM-PROJECT-TYPES"]?.projectTypes}
optionKey={"code"}
selected={type}
select={(value) => {
handleChange(value);
}}
/>
<div className="campaign-type-wrapper">
<Dropdown
style={{ width: "40rem", paddingBottom: "1rem" }}
variant={error ? "error" : ""}
t={t}
option={projectType?.["HCM-PROJECT-TYPES"]?.projectTypes}
optionKey={"code"}
selected={type}
select={(value) => {
setStartValidation(true);
handleChange(value);
}}
/>
{error?.message && <ErrorMessage wrapperStyles={{ marginTop: "-10px" }} message={t(error?.message)} showIcon={true} />}
</div>
</LabelFieldPair>
{showBeneficiary && (
<LabelFieldPair>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export const CampaignConfig = (totalFormData, dataParams) => {
export const CampaignConfig = (totalFormData, dataParams, isSubmitting) => {
return [
{
form: [
Expand All @@ -18,6 +18,7 @@ export const CampaignConfig = (totalFormData, dataParams) => {
customProps: {
module: "HCM",
sessionData: totalFormData,
isSubmitting: isSubmitting
},
populators: {
name: "projectType",
Expand All @@ -41,6 +42,7 @@ export const CampaignConfig = (totalFormData, dataParams) => {
customProps: {
module: "HCM",
sessionData: totalFormData,
isSubmitting: isSubmitting
},
populators: {
name: "campaignName",
Expand All @@ -64,6 +66,7 @@ export const CampaignConfig = (totalFormData, dataParams) => {
customProps: {
module: "HCM",
sessionData: totalFormData,
isSubmitting: isSubmitting
},
populators: {
name: "campaignDates",
Expand Down
Loading
Loading