| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335 |
- import React, { createContext, useReducer } from "react";
- import {
- PorterFormData,
- PorterFormState,
- PorterFormAction,
- PorterFormVariableList,
- PorterFormValidationInfo,
- GetFinalVariablesFunction,
- } from "./types";
- import { ShowIf, ShowIfAnd, ShowIfNot, ShowIfOr } from "../../shared/types";
- import { getFinalVariablesForStringInput } from "./field-components/Input";
- import { getFinalVariablesForKeyValueArray } from "./field-components/KeyValueArray";
- interface Props {
- rawFormData: PorterFormData;
- onSubmit: (vars: PorterFormVariableList) => void;
- initialVariables?: PorterFormVariableList;
- overrideVariables?: PorterFormVariableList;
- isReadOnly?: boolean;
- }
- interface ContextProps {
- formData: PorterFormData;
- formState: PorterFormState;
- onSubmit: () => void;
- dispatchAction: (event: PorterFormAction) => void;
- validationInfo: PorterFormValidationInfo;
- isReadOnly?: boolean;
- }
- export const PorterFormContext = createContext<ContextProps | undefined>(
- undefined!
- );
- const { Provider } = PorterFormContext;
- export const PorterFormContextProvider: React.FC<Props> = (props) => {
- const handleAction = (
- state: PorterFormState,
- action: PorterFormAction
- ): PorterFormState => {
- switch (action.type) {
- case "init-field":
- if (!(action.id in state.components)) {
- return {
- ...state,
- variables: {
- ...state.variables,
- ...action.initVars,
- },
- components: {
- ...state.components,
- [action.id]: {
- state: action.initValue,
- validation: {
- ...{
- validated: false,
- },
- ...action.initValidation,
- },
- },
- },
- };
- }
- break;
- case "update-field":
- return {
- ...state,
- components: {
- ...state.components,
- [action.id]: {
- ...state.components[action.id],
- state: {
- ...state.components[action.id].state,
- ...action.updateFunc(state.components[action.id].state),
- },
- },
- },
- };
- case "update-validation":
- return {
- ...state,
- components: {
- ...state.components,
- [action.id]: {
- ...state.components[action.id],
- validation: action.updateFunc(
- state.components[action.id].validation
- ),
- },
- },
- };
- case "mutate-vars":
- return {
- ...state,
- variables: {
- ...action.mutateFunc(state.variables),
- ...props.overrideVariables,
- },
- };
- }
- return state;
- };
- const [state, dispatch] = useReducer(handleAction, {
- components: {},
- variables: props.initialVariables || {},
- });
- const evalShowIf = (
- vals: ShowIf,
- variables: PorterFormVariableList
- ): boolean => {
- if (!vals) {
- return false;
- }
- if (typeof vals == "string") {
- return !!variables[vals];
- }
- if ((vals as ShowIfOr).or) {
- vals = vals as ShowIfOr;
- for (let i = 0; i < vals.or.length; i++) {
- if (evalShowIf(vals.or[i], variables)) {
- return true;
- }
- }
- return false;
- }
- if ((vals as ShowIfAnd).and) {
- vals = vals as ShowIfAnd;
- for (let i = 0; i < vals.and.length; i++) {
- if (!evalShowIf(vals.and[i], variables)) {
- return false;
- }
- }
- return true;
- }
- if ((vals as ShowIfNot).not) {
- vals = vals as ShowIfNot;
- return !evalShowIf(vals.not, variables);
- }
- return false;
- };
- /*
- Takes in old form data and changes it to use newer fields
- For example, number-input becomes input with a setting that makes it
- a number input
- */
- const restructureToNewFields = (data: PorterFormData) => {
- return {
- ...data,
- tabs: data.tabs.map((tab) => {
- return {
- ...tab,
- sections: tab.sections.map((section) => {
- return {
- ...section,
- contents: section.contents.map((field: any) => {
- if (field.type == "number-input") {
- return {
- ...field,
- type: "input",
- settings: {
- ...field.settings,
- type: "number",
- },
- };
- }
- if (field.type == "string-input") {
- return {
- ...field,
- type: "input",
- settings: {
- ...field.settings,
- type: "string",
- },
- };
- }
- if (field.type == "string-input-password") {
- return {
- ...field,
- type: "input",
- settings: {
- ...field.settings,
- type: "password",
- },
- };
- }
- return field;
- }),
- };
- }),
- };
- }),
- };
- };
- /*
- We don't want to have the actual <PorterForm> component to do as little form
- logic as possible, so this structures the form object based on show_if statements
- and assigns a unique id to each field
- This computed structure also later lets us figure out which fields should be required
- */
- const computeFormStructure = (
- data: PorterFormData,
- variables: PorterFormVariableList
- ) => {
- return {
- ...data,
- tabs: data.tabs.map((tab, i) => {
- return {
- ...tab,
- sections: tab.sections
- .map((section, j) => {
- return {
- ...section,
- contents: section.contents.map((field, k) => {
- return {
- ...field,
- id: `${i}-${j}-${k}`,
- };
- }),
- };
- })
- .filter((section) => {
- return !section.show_if || evalShowIf(section.show_if, variables);
- }),
- };
- }),
- };
- };
- /*
- compute a list of field ids who's input is required and a map from a variable value
- to a list of fields that set it
- */
- const computeRequiredVariables = (
- data: PorterFormData
- ): [string[], Record<string, string[]>] => {
- const requiredIds: string[] = [];
- const mapping: Record<string, string[]> = {};
- data.tabs.map((tab) =>
- tab.sections.map((section) =>
- section.contents.map((field) => {
- if (field.type == "heading" || field.type == "subtitle") return;
- if (field.required) {
- requiredIds.push(field.id);
- }
- if (!mapping[field.variable]) {
- mapping[field.variable] = [];
- }
- mapping[field.variable].push(field.id);
- })
- )
- );
- return [requiredIds, mapping];
- };
- /*
- Validate the form based on a list of required ids
- */
- const doValidation = (requiredIds: string[]) =>
- requiredIds
- .map((id) => state.components[id]?.validation.validated)
- .every((x) => x);
- const formData = computeFormStructure(
- restructureToNewFields(props.rawFormData),
- state.variables
- );
- const [requiredIds, varMapping] = computeRequiredVariables(formData);
- const isValidated = doValidation(requiredIds);
- /*
- Handle submit
- This involves going through all the (currently active) fields in the form and
- using functions for each input to finalize the variables
- This can take care of things like appending units to strings
- */
- const onSubmitWrapper = () => {
- // we start off with a base list of the current variables for fields
- // that don't need any processing on top (for example: checkbox)
- // the assign here is important because that way state.variable isn't mutated
- const varList: PorterFormVariableList[] = [
- Object.assign({}, state.variables),
- ];
- const finalFunctions: Record<string, GetFinalVariablesFunction> = {
- "string-input": getFinalVariablesForStringInput,
- "key-value-array": getFinalVariablesForKeyValueArray,
- };
- formData.tabs.map((tab) =>
- tab.sections.map((section) =>
- section.contents.map((field) => {
- if (finalFunctions[field.type])
- varList.push(
- finalFunctions[field.type](
- state.variables,
- field,
- state.components[field.id].state
- )
- );
- })
- )
- );
- props.onSubmit(Object.assign.apply({}, varList));
- };
- console.group("Validation Info:");
- console.log(requiredIds);
- console.log(varMapping);
- console.log(isValidated);
- console.groupEnd();
- return (
- <Provider
- value={{
- formData: formData,
- formState: state,
- dispatchAction: dispatch,
- isReadOnly: props.isReadOnly,
- validationInfo: {
- validated: isValidated,
- error: isValidated ? null : "Missing required fields",
- },
- onSubmit: onSubmitWrapper,
- }}
- >
- {props.children}
- </Provider>
- );
- };
|