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

web-interface.assets.325e2d4b-1366.8c40ccdf5ccfb2cbfef1.js.map Maven / Gradle / Ivy

There is a newer version: 6.0.1
Show newest version
{"version":3,"file":"325e2d4b-1366.8c40ccdf5ccfb2cbfef1.js","mappings":"+WA4BA,MAAMA,EAAoBC,EAAAA,QAAAA,IAAAA,WAAH,2EAAGA,CAAH,gDAMjBC,GAAaD,EAAAA,EAAAA,SAAOE,EAAAA,MAAV,+EAAGF,CAAH,iCAKVG,EAAYH,EAAAA,QAAAA,IAAAA,WAAH,mEAAGA,CAAH,aAITI,EAAY,IAAyB,IAAxB,gBAAEC,GAAsB,EACzC,MAAMC,EAAcC,EAAAA,GAAAA,OAAAA,eAAAA,SAAAA,cAAoDF,GACxEG,EAAAA,EAAAA,KAAaF,EAAb,EAyCF,EAtC4B,KAC1B,MAEMG,EAFeC,EAAAA,YAAAA,QAAoB,2BACDC,MAAK,CAACC,EAAIC,KAAOC,EAAAA,EAAAA,GAAeF,EAAGG,YAAaF,EAAGE,eAC5CC,KAAKC,IAAD,CAAgBC,MAAOD,EAAQF,YAAaI,MAAOF,EAAQG,SAE9G,OACE,gBAAC,EAAAC,OAAD,CAAQC,SAAUlB,EAAWmB,cAAe,CAAElB,qBAAiBmB,KAC5D,QAAC,aAAEC,EAAF,QAAgBC,GAAjB,SACC,gBAACzB,EAAD,KACE,gBAACF,EAAD,KACE,gBAACI,EAAD,CAAWwB,UAAU,cACnB,gBAAC,EAAAC,MAAD,CAAOR,KAAK,kBAAkBS,UAAUC,EAAAA,EAAAA,IAAc,CAAEC,UAAU,MAC/D,QAAGC,OAAO,KAAEZ,EAAF,MAAQD,EAAR,SAAec,GAAYC,MAAM,MAAEC,IAA7C,SACC,gCACE,gBAAC,KAAD,CAAQC,WAAW,EACXC,WAAY,CAAE,aAAc,oBAC5BJ,SAAWK,GAAgBL,EAAS,CAAEM,OAAQ,CAAEpB,MAAOmB,EAAalB,UACpEoB,QAAS/B,EACTgC,YAAY,mBACZtB,MAAOA,IACf,gBAAC,KAAD,CAAkBgB,MAAOA,IAR5B,KAHP,IAiBE,gBAAC,KAAD,CAAQO,QAAQ,UACRC,SAAUlB,IAAiBC,EAC3BkB,KAAK,UAFb,gBAnBL,GAFL,EC1BIC,EAAiB,QAAC,MAAEC,GAAH,SACrB,gBAAC,KAAD,CAAKnB,UAAU,WACb,gBAAC,KAAD,CAAKoB,GAAI,EAAGC,SAAU,GACpB,gBAAC,KAAD,CAAaF,MAAOA,GAClB,6RAKA,gBAACG,EAAD,QATe,EAevBJ,EAAeK,aAAe,CAC5BJ,WAAOtB,GAGT,U,oDCpBA,MAuBA,EAvBiC,KAC/B,MAAM,gBAAE2B,EAAF,cAAmBC,IAAkBC,EAAAA,EAAAA,KAE3C,OACE,gBAAC,KAAD,CAAeP,MAAM,iCACnB,gBAACQ,EAAA,EAAD,MACA,gBAAC,KAAD,CAAYR,MAAM,gCACNS,QACE,gBAACC,EAAA,EAAD,CAAoBJ,cAAeA,EACfD,gBAAiBA,IAEvCM,kBAAmB,CACjBX,MAAO,+BACPY,KAAMC,EAAAA,EAAAA,MAAAA,cAElB,qGAGF,gBAAC,EAAD,CAAgBb,MAAM,sCAf1B,C","sources":["webpack://graylog-web-interface/./src/components/authentication/BackendCreate/ServiceSelect.tsx","webpack://graylog-web-interface/./src/components/authentication/BackendCreate/GettingStarted.tsx","webpack://graylog-web-interface/./src/pages/AuthenticationCreatePage.tsx"],"sourcesContent":["/*\n * Copyright (C) 2020 Graylog, Inc.\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the Server Side Public License, version 1,\n * as published by MongoDB, Inc.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * Server Side Public License for more details.\n *\n * You should have received a copy of the Server Side Public License\n * along with this program. If not, see\n * .\n */\nimport * as React from 'react';\nimport { Formik, Form, Field } from 'formik';\nimport { PluginStore } from 'graylog-web-plugin/plugin';\nimport styled from 'styled-components';\n\nimport Routes from 'routing/Routes';\nimport { validateField } from 'util/FormsUtils';\nimport history from 'util/History';\nimport { defaultCompare } from 'logic/DefaultCompare';\nimport { Select, InputDescription } from 'components/common';\nimport { Button } from 'components/bootstrap';\n\nconst ElementsContainer = styled.div`\n  display: flex;\n  align-items: start;\n  width: 100%;\n`;\n\nconst StyledForm = styled(Form)`\n  max-width: 360px;\n  width: 100%;\n`;\n\nconst FormGroup = styled.div`\n  flex: 1;\n`;\n\nconst _onSubmit = ({ authServiceType }) => {\n  const createRoute = Routes.SYSTEM.AUTHENTICATION.BACKENDS.createBackend(authServiceType);\n  history.push(createRoute);\n};\n\nconst BackendCreateSelect = () => {\n  const authServices = PluginStore.exports('authentication.services');\n  const sortedAuthServices = authServices.sort((s1, s2) => defaultCompare(s1.displayName, s2.displayName));\n  const authServicesOptions = sortedAuthServices.map((service) => ({ label: service.displayName, value: service.name }));\n\n  return (\n    \n      {({ isSubmitting, isValid }) => (\n        \n          \n            \n              \n                {({ field: { name, value, onChange }, meta: { error } }) => (\n                  <>\n