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

web-interface.assets.6e61897c-100.472622149827c1587209.js.map Maven / Gradle / Ivy

There is a newer version: 6.0.1
Show newest version
{"version":3,"sources":["webpack:///./src/pages/InputsPage.jsx"],"names":["CurrentUserStore","StoreProvider","getStore","InputStatesStore","InputsPage","createReactClass","displayName","mixins","Reflux","connect","componentDidMount","this","interval","setInterval","list","componentWillUnmount","clearInterval","render","title","permissions","state","currentUser"],"mappings":"4GAAA,sIAwBMA,EAAmBC,IAAcC,SAAS,eAC1CC,EAAmBF,IAAcC,SAAS,eAE1CE,EAAaC,IAAiB,CAClCC,YAAa,aACbC,OAAQ,CAACC,IAAOC,QAAQT,IAExBU,kBAJkC,WAKhCC,KAAKC,SAAWC,YAAYV,EAAiBW,KAAM,MAGrDC,qBARkC,WAShCC,cAAcL,KAAKC,WAGrBK,OAZkC,WAahC,OACE,kBAAC,IAAD,CAAeC,MAAM,UACnB,6BACE,kBAAC,IAAD,CAAYA,MAAM,UAChB,6HAEF,kBAAC,IAAD,CAAYC,YAAaR,KAAKS,MAAMC,YAAYF,mBAO3Cf","file":"6e61897c-100.472622149827c1587209.js","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 createReactClass from 'create-react-class';\nimport Reflux from 'reflux';\n\nimport StoreProvider from 'injection/StoreProvider';\nimport { DocumentTitle, PageHeader } from 'components/common';\nimport { InputsList } from 'components/inputs';\n\nconst CurrentUserStore = StoreProvider.getStore('CurrentUser');\nconst InputStatesStore = StoreProvider.getStore('InputStates');\n\nconst InputsPage = createReactClass({\n  displayName: 'InputsPage',\n  mixins: [Reflux.connect(CurrentUserStore)],\n\n  componentDidMount() {\n    this.interval = setInterval(InputStatesStore.list, 2000);\n  },\n\n  componentWillUnmount() {\n    clearInterval(this.interval);\n  },\n\n  render() {\n    return (\n      \n        
\n \n Graylog nodes accept data via inputs. Launch or terminate as many inputs as you want here.\n \n \n
\n
\n );\n },\n});\n\nexport default InputsPage;\n"],"sourceRoot":""}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy