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

web-interface.assets.LoadingPage.5c1ad875c683417cc575.js.map Maven / Gradle / Ivy

There is a newer version: 6.0.1
Show newest version
{"version":3,"file":"LoadingPage.5c1ad875c683417cc575.js","mappings":"2PAwBA,MAAMA,EAAUC,EAAAA,QAAAA,IAAAA,WAAH,6DAAGA,CAAH,sKAkBPC,GAAWD,EAAAA,EAAAA,SAAOE,EAAAA,IAAV,yEAAGF,EAAY,QAAC,MAAEG,GAAH,SAAeC,EAAAA,EAAAA,KAAd,CAAD,qGAEPD,EAAME,OAAOC,OAAOC,kBACpBJ,EAAME,OAAOG,QAAQC,MAAMC,QAExBP,EAAME,OAAOC,OAAOK,oBALhB,IAQvBC,EAAW,QAAC,SAAEC,GAAH,SACf,gBAACd,EAAD,CAASe,UAAU,aACjB,gBAAC,KAAD,KACE,gBAAC,KAAD,CAAKC,GAAI,EAAGC,SAAU,GACpB,gBAAC,IAAD,CAAqBC,gBAAc,MAGvC,gBAAC,KAAD,KACE,gBAAChB,EAAD,CAAUc,GAAI,EAAGC,SAAU,EAAGE,GAAI,EAAGC,SAAU,GAC5CN,IATQ,EAejBD,EAASQ,UAAY,CACnBP,SAAUQ,IAAAA,KAAAA,YAGZ,S,0FChDA,MAAMC,EAAStB,EAAAA,QAAAA,GAAAA,WAAH,+DAAGA,CAAH,+FAQNuB,GAAavB,EAAAA,EAAAA,SAAOwB,EAAAA,IAAV,8EAAGxB,CAAH,uBAUhB,EANoB,IAClB,gBAACsB,EAAD,KACE,gBAACC,EAAD,CAAYE,KAAK,UADnB,qB,kLCLF,MAAMC,GAAoBC,EAAAA,EAAAA,mBAAH,QACnBC,EAAAA,GAGEC,EAAc,IAAqB,IAApB,KAAEC,GAAkB,EACvC,OACE,gBAAC,KAAD,CAAeC,MAAM,cACnB,gBAACL,EAAD,MACA,gBAAC,IAAD,KACE,gBAAC,IAAD,MACA,yBACE,gBAAC,KAAD,CAASI,KAAMA,EAAME,MAAO,MANpC,EAaFH,EAAYT,UAAY,CACtBU,KAAMT,IAAAA,QAGRQ,EAAYI,aAAe,CACzBH,KAAM,2BAGR,S","sources":["webpack://graylog-web-interface/./src/components/login/LoginBox.jsx","webpack://graylog-web-interface/./src/components/login/LoginHeader.tsx","webpack://graylog-web-interface/./src/pages/LoadingPage.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 React from 'react';\nimport PropTypes from 'prop-types';\nimport styled, { css } from 'styled-components';\n\nimport { Col, Row } from 'components/bootstrap';\n\nimport PublicNotifications from '../common/PublicNotifications';\n\nconst Wrapper = styled.div`\n  display: flex;\n  align-items: center;\n  justify-content: flex-start;\n  padding-top: 25vh;\n  flex-direction: column;\n  height: 100%;\n  \n  .row {\n    width: 100%;\n  }\n  \n  &::before,\n  &::after {\n    content: none;\n  }\n`;\n\nconst LoginCol = styled(Col)(({ theme }) => css`\n  padding: 15px;\n  background-color: ${theme.colors.global.contentBackground};\n  border: 1px solid ${theme.colors.variant.light.default};\n  border-radius: 4px;\n  box-shadow: 0 0 21px ${theme.colors.global.navigationBoxShadow};\n`);\n\nconst LoginBox = ({ children }) => (\n  \n    \n      \n        \n      \n    \n    \n      \n        {children}\n      \n    \n  \n);\n\nLoginBox.propTypes = {\n  children: PropTypes.node.isRequired,\n};\n\nexport default LoginBox;\n","/*\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 styled from 'styled-components';\n\nimport { Icon } from 'components/common';\n\nconst Header = styled.h1`\n  display: flex;\n  align-items: center;\n  justify-content: center;\n  margin-bottom: 21px;\n  margin-top: 6px;\n`;\n\nconst HeaderIcon = styled(Icon)`\n  margin-right: 9px;\n`;\n\nconst LoginHeader = () => (\n  
\n Welcome to Graylog\n
\n);\n\nexport default LoginHeader;\n","/*\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 PropTypes from 'prop-types';\nimport { createGlobalStyle } from 'styled-components';\n\nimport { DocumentTitle, Spinner } from 'components/common';\nimport LoginBox from 'components/login/LoginBox';\nimport authStyles from 'theme/styles/authStyles';\nimport LoginHeader from 'components/login/LoginHeader';\n\ntype Props = {\n text: string,\n};\n\nconst LoadingPageStyles = createGlobalStyle`\n ${authStyles}\n`;\n\nconst LoadingPage = ({ text }: Props) => {\n return (\n \n \n \n \n

\n \n

\n
\n
\n );\n};\n\nLoadingPage.propTypes = {\n text: PropTypes.string,\n};\n\nLoadingPage.defaultProps = {\n text: 'Loading, please wait...',\n};\n\nexport default LoadingPage;\n"],"names":["Wrapper","styled","LoginCol","Col","theme","css","colors","global","contentBackground","variant","light","default","navigationBoxShadow","LoginBox","children","className","md","mdOffset","readFromConfig","xs","xsOffset","propTypes","PropTypes","Header","HeaderIcon","Icon","name","LoadingPageStyles","createGlobalStyle","authStyles","LoadingPage","text","title","delay","defaultProps"],"sourceRoot":""}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy