All Downloads are FREE. Search and download functionalities are using the official Maven repository.

theme.keycloak.v2.admin.resources.assets.CreateFlow-129a9146.js.map Maven / Gradle / Ivy

There is a newer version: 25.0.1
Show newest version
{"version":3,"file":"CreateFlow-129a9146.js","sources":["../../src/authentication/form/FlowType.tsx","../../src/authentication/form/CreateFlow.tsx"],"sourcesContent":["import AuthenticationFlowRepresentation from \"@keycloak/keycloak-admin-client/lib/defs/authenticationFlowRepresentation\";\nimport {\n  FormGroup,\n  Select,\n  SelectOption,\n  SelectVariant,\n} from \"@patternfly/react-core\";\nimport { useState } from \"react\";\nimport { Controller, useFormContext } from \"react-hook-form\";\nimport { useTranslation } from \"react-i18next\";\n\nimport { HelpItem } from \"ui-shared\";\n\nconst TYPES = [\"basic-flow\", \"client-flow\"] as const;\n\nexport const FlowType = () => {\n  const { t } = useTranslation(\"authentication\");\n  const { control } = useFormContext();\n  const [open, setOpen] = useState(false);\n\n  return (\n    \n      }\n      fieldId=\"flowType\"\n    >\n       (\n           {\n              field.onChange(value.toString());\n              setOpen(false);\n            }}\n            selections={t(`top-level-flow-type.${field.value}`)}\n            variant={SelectVariant.single}\n            aria-label={t(\"flowType\")}\n            isOpen={open}\n          >\n            {TYPES.map((type) => (\n              \n                {t(`top-level-flow-type.${type}`)}\n              \n            ))}\n          \n        )}\n      />\n    \n  );\n};\n","import type AuthenticationFlowRepresentation from \"@keycloak/keycloak-admin-client/lib/defs/authenticationFlowRepresentation\";\nimport {\n  ActionGroup,\n  AlertVariant,\n  Button,\n  PageSection,\n} from \"@patternfly/react-core\";\nimport { FormProvider, useForm } from \"react-hook-form\";\nimport { useTranslation } from \"react-i18next\";\nimport { Link, useNavigate } from \"react-router-dom\";\n\nimport { adminClient } from \"../../admin-client\";\nimport { useAlerts } from \"../../components/alert/Alerts\";\nimport { FormAccess } from \"../../components/form/FormAccess\";\nimport { ViewHeader } from \"../../components/view-header/ViewHeader\";\nimport { useRealm } from \"../../context/realm-context/RealmContext\";\nimport { toAuthentication } from \"../routes/Authentication\";\nimport { toFlow } from \"../routes/Flow\";\nimport { FlowType } from \"./FlowType\";\nimport { NameDescription } from \"./NameDescription\";\n\nexport default function CreateFlow() {\n  const { t } = useTranslation(\"authentication\");\n  const navigate = useNavigate();\n  const { realm } = useRealm();\n  const { addAlert } = useAlerts();\n  const form = useForm();\n  const { handleSubmit } = form;\n\n  const onSubmit = async (formValues: AuthenticationFlowRepresentation) => {\n    const flow = { ...formValues, builtIn: false, topLevel: true };\n\n    try {\n      const { id } = await adminClient.authenticationManagement.createFlow(\n        flow,\n      );\n      addAlert(t(\"flowCreatedSuccess\"), AlertVariant.success);\n      navigate(\n        toFlow({\n          realm,\n          id: id!,\n          usedBy: \"notInUse\",\n        }),\n      );\n    } catch (error: any) {\n      addAlert(\n        t(\"flowCreateError\", {\n          error: error.response?.data?.errorMessage || error,\n        }),\n        AlertVariant.danger,\n      );\n    }\n  };\n\n  return (\n    <>\n      \n      \n        \n          \n            \n            \n            \n              \n               (\n                  \n                )}\n              >\n                {t(\"common:cancel\")}\n              \n            \n          \n        \n      \n    \n  );\n}\n"],"names":["TYPES","FlowType","useTranslation","control","useFormContext","open","setOpen","useState","jsx","FormGroup","HelpItem","Controller","field","Select","_","value","SelectVariant","type","SelectOption","CreateFlow","navigate","useNavigate","realm","useRealm","addAlert","useAlerts","form","useForm","handleSubmit","onSubmit","formValues","flow","id","adminClient","AlertVariant","toFlow","error","jsxs","Fragment","ViewHeader","PageSection","FormProvider","FormAccess","NameDescription","ActionGroup","Button","props","Link","toAuthentication"],"mappings":"0pBAaA,MAAMA,EAAQ,CAAC,aAAc,aAAa,EAE7BC,EAAW,IAAM,CAC5B,KAAM,CAAE,CAAA,EAAMC,EAAe,gBAAgB,EACvC,CAAE,QAAAC,GAAYC,IACd,CAACC,EAAMC,CAAO,EAAIC,WAAS,EAAK,EAGpC,OAAAC,EAAA,IAACC,EAAA,CACC,MAAO,EAAE,UAAU,EACnB,UACED,EAAA,IAACE,EAAA,CACC,SAAU,EAAE,sCAAsC,EAClD,aAAa,yBAAA,CACf,EAEF,QAAQ,WAER,SAAAF,EAAA,IAACG,EAAA,CACC,KAAK,aACL,aAAcX,EAAM,CAAC,EACrB,QAAAG,EACA,OAAQ,CAAC,CAAE,MAAAS,CAAA,IACTJ,EAAA,IAACK,EAAA,CACC,SAAS,WACT,SAAUP,EACV,SAAU,CAACQ,EAAGC,IAAU,CAChBH,EAAA,SAASG,EAAM,SAAU,CAAA,EAC/BT,EAAQ,EAAK,CACf,EACA,WAAY,EAAE,uBAAuBM,EAAM,KAAK,EAAE,EAClD,QAASI,EAAc,OACvB,aAAY,EAAE,UAAU,EACxB,OAAQX,EAEP,SAAAL,EAAM,IAAKiB,GACVT,EAAA,IAACU,EAAA,CAEC,SAAUD,IAASL,EAAM,MACzB,MAAOK,EAEN,SAAA,EAAE,uBAAuBA,CAAI,EAAE,CAAA,EAJ3BA,CAAA,CAMR,CAAA,CACH,CAAA,CAEJ,CAAA,CAAA,CAGN,ECzCA,SAAwBE,GAAa,CACnC,KAAM,CAAE,CAAA,EAAMjB,EAAe,gBAAgB,EACvCkB,EAAWC,IACX,CAAE,MAAAC,GAAUC,IACZ,CAAE,SAAAC,GAAaC,IACfC,EAAOC,IACP,CAAE,aAAAC,CAAiB,EAAAF,EAEnBG,EAAW,MAAOC,GAAiD,CACvE,MAAMC,EAAO,CAAE,GAAGD,EAAY,QAAS,GAAO,SAAU,IAEpD,GAAA,CACF,KAAM,CAAE,GAAAE,CAAO,EAAA,MAAMC,EAAY,yBAAyB,WACxDF,CAAA,EAEFP,EAAS,EAAE,oBAAoB,EAAGU,EAAa,OAAO,EACtDd,EACEe,EAAO,CACL,MAAAb,EACA,GAAAU,EACA,OAAQ,UAAA,CACT,CAAA,QAEII,EAAY,CACnBZ,EACE,EAAE,kBAAmB,CACnB,MAAOY,EAAM,UAAU,MAAM,cAAgBA,CAAA,CAC9C,EACDF,EAAa,MAAA,CAEjB,CAAA,EAGF,OAEIG,EAAA,KAAAC,WAAA,CAAA,SAAA,CAAA9B,EAAA,IAAC+B,EAAA,CACC,SAAS,4BACT,OAAO,gCAAA,CACT,QACCC,EAAY,CAAA,QAAQ,QACnB,SAAChC,EAAA,IAAAiC,EAAA,CAAc,GAAGf,EAChB,SAAAW,EAAA,KAACK,EAAA,CACC,aAAY,GACZ,KAAK,uBACL,SAAUd,EAAaC,CAAQ,EAE/B,SAAA,CAAArB,EAAA,IAACmC,EAAgB,EAAA,QAChB1C,EAAS,EAAA,SACT2C,EACC,CAAA,SAAA,CAAApC,EAAAA,IAACqC,GAAO,cAAY,SAAS,KAAK,SAC/B,SAAA,EAAE,eAAe,EACpB,EACArC,EAAA,IAACqC,EAAA,CACC,cAAY,SACZ,QAAQ,OACR,UAAYC,GACVtC,EAAA,IAACuC,EAAM,CAAA,GAAGD,EAAO,GAAIE,EAAiB,CAAE,MAAA1B,CAAM,CAAC,CAAG,CAAA,EAGnD,WAAE,eAAe,CAAA,CACpB,CAAA,EACF,CAAA,CAAA,GAEJ,CACF,CAAA,CACF,CAAA,CAAA,CAEJ"}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy