import { useEffect, useMemo, useState } from "react"; import { HttpError, IResourceComponentsProps, useTranslate } from "@refinedev/core"; import { Create, useForm } from "@refinedev/antd"; import { Form, Input, DatePicker, Select, InputNumber, Radio, Divider, Button, Typography, Alert } from "antd"; import dayjs from "dayjs"; import TextArea from "antd/es/input/TextArea"; import { ISpool, ISpoolParsedExtras, WeightToEnter } from "./model"; import { numberFormatter, numberParser } from "../../utils/parsing"; import { useSpoolmanLocations } from "../../components/otherModels"; import { MinusOutlined, PlusOutlined } from "@ant-design/icons"; import "../../utils/overrides.css"; import { EntityType, useGetFields } from "../../utils/queryFields"; import { ExtraFieldFormItem, ParsedExtras, StringifiedExtras } from "../../components/extraFields"; import utc from "dayjs/plugin/utc"; import { getCurrencySymbol, useCurrency } from "../../utils/settings"; import { createFilamentFromExternal } from "../filaments/functions"; import { useGetFilamentSelectOptions } from "./functions"; import { searchMatches } from "../../utils/filtering"; dayjs.extend(utc); interface CreateOrCloneProps { mode: "create" | "clone"; } type ISpoolRequest = Omit & { filament_id: number | string; }; export const SpoolCreate: React.FC = (props) => { const t = useTranslate(); const extraFields = useGetFields(EntityType.spool); const currency = useCurrency(); const { form, formProps, formLoading, onFinish, redirect } = useForm< ISpool, HttpError, ISpoolRequest, ISpoolParsedExtras >({ redirect: false, warnWhenUnsavedChanges: false, }); if (!formProps.initialValues) { formProps.initialValues = {}; } const initialWeightValue = Form.useWatch("initial_weight", form); const spoolWeightValue = Form.useWatch("spool_weight", form); if (props.mode === "clone") { // Clear out the values that we don't want to clone formProps.initialValues.first_used = null; formProps.initialValues.last_used = null; formProps.initialValues.used_weight = 0; // Fix the filament_id if (formProps.initialValues.filament) { formProps.initialValues.filament_id = formProps.initialValues.filament.id; } // Parse the extra fields from string values into real types formProps.initialValues = ParsedExtras(formProps.initialValues); } // If the query variable filament_id is set, set the filament_id field to that value const query = new URLSearchParams(window.location.search); const filament_id = query.get("filament_id"); if (filament_id) { formProps.initialValues.filament_id = parseInt(filament_id); } // // Set up the filament selection options // const { options: filamentOptions, internalSelectOptions, externalSelectOptions, allExternalFilaments, } = useGetFilamentSelectOptions(); const selectedFilamentID = Form.useWatch("filament_id", form); const selectedFilament = useMemo(() => { // id is a number of it's an internal filament, and a string of it's an external filament. if (typeof selectedFilamentID === "number") { return ( internalSelectOptions?.find((obj) => { return obj.value === selectedFilamentID; }) ?? null ); } else if (typeof selectedFilamentID === "string") { return ( externalSelectOptions?.find((obj) => { return obj.value === selectedFilamentID; }) ?? null ); } else { return null; } }, [selectedFilamentID, internalSelectOptions, externalSelectOptions]); // // Submit handler // const handleSubmit = async (redirectTo: "list" | "edit" | "create") => { const values = StringifiedExtras(await form.validateFields()); if (selectedFilament?.is_internal === false) { // Filament ID being a string indicates its an external filament. // If so, we should first create the internal filament version, then create the spool(s) const externalFilament = allExternalFilaments?.find((f) => f.id === values.filament_id); if (!externalFilament) { throw new Error("Unknown external filament"); } const internalFilament = await createFilamentFromExternal(externalFilament); values.filament_id = internalFilament.id; } if (quantity > 1) { const submit = Array(quantity).fill(values); // queue multiple creates this way for now Refine doesn't seem to map Arrays to createMany or multiple creates like it says it does submit.forEach(async (r) => await onFinish(r)); } else { await onFinish(values); } redirect(redirectTo); }; // Use useEffect to update the form's initialValues when the extra fields are loaded // This is necessary because the form is rendered before the extra fields are loaded useEffect(() => { extraFields.data?.forEach((field) => { if (formProps.initialValues && field.default_value) { const parsedValue = JSON.parse(field.default_value as string); form.setFieldsValue({ extra: { [field.key]: parsedValue } }); } }); }, [form, extraFields.data, formProps.initialValues]); // // Weight calculations // const [weightToEnter, setWeightToEnter] = useState(1); const [usedWeight, setUsedWeight] = useState(0); useEffect(() => { const newFilamentWeight = selectedFilament?.weight || 0; const newSpoolWeight = selectedFilament?.spool_weight || 0; if (newFilamentWeight > 0) { form.setFieldValue("initial_weight", newFilamentWeight); } if (newSpoolWeight > 0) { form.setFieldValue("spool_weight", newSpoolWeight); } }, [selectedFilament]); const weightChange = (weight: number) => { setUsedWeight(weight); form.setFieldsValue({ used_weight: weight, }); }; const locations = useSpoolmanLocations(true); const [newLocation, setNewLocation] = useState(""); const allLocations = [...(locations.data || [])]; if (newLocation.trim() && !allLocations.includes(newLocation)) { allLocations.push(newLocation.trim()); } const [quantity, setQuantity] = useState(1); const incrementQty = () => { setQuantity(quantity + 1); }; const decrementQty = () => { setQuantity(quantity - 1); }; const getSpoolWeight = (): number => { return spoolWeightValue ?? selectedFilament?.spool_weight ?? 0; }; const getFilamentWeight = (): number => { return initialWeightValue ?? selectedFilament?.weight ?? 0; }; const getGrossWeight = (): number => { const net_weight = getFilamentWeight(); const spool_weight = getSpoolWeight(); return net_weight + spool_weight; }; const getMeasuredWeight = (): number => { const grossWeight = getGrossWeight(); return grossWeight - usedWeight; }; const getRemainingWeight = (): number => { const initial_weight = getFilamentWeight(); return initial_weight - usedWeight; }; const isMeasuredWeightEnabled = (): boolean => { if (!isRemainingWeightEnabled()) { return false; } const spool_weight = spoolWeightValue; return spool_weight || selectedFilament?.spool_weight ? true : false; }; const isRemainingWeightEnabled = (): boolean => { const initial_weight = initialWeightValue; if (initial_weight) { return true; } return selectedFilament?.weight ? true : false; }; useEffect(() => { if (weightToEnter >= WeightToEnter.measured_weight) { if (!isMeasuredWeightEnabled()) { setWeightToEnter(WeightToEnter.remaining_weight); return; } } if (weightToEnter >= WeightToEnter.remaining_weight) { if (!isRemainingWeightEnabled()) { setWeightToEnter(WeightToEnter.used_weight); return; } } }, [selectedFilament]); return ( ( <>
)} >
({ value: value ? dayjs(value) : undefined, })} > ({ value: value ? dayjs(value) : undefined, })} > ( <> {menu} setNewLocation(event.target.value)} /> )} loading={locations.isLoading} options={allLocations.map((item) => ({ label: item, value: item }))} />