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

web-interface.assets.57e33c6c-117.11b9f72925818240e61d.js.map Maven / Gradle / Ivy

There is a newer version: 6.0.2
Show newest version
{"version":3,"sources":["webpack:///./src/pages/StreamAlertsOverviewPage.jsx"],"names":["StreamsStore","CombinedProvider","get","StreamAlertsOverviewPage","stream","undefined","this","props","params","streamId","setState","state","title","page","DocsHelper","PAGES","ALERTS","text","to","Routes","STREAMS","bsStyle","LEGACY_ALERTS","LIST","CONDITIONS","NOTIFICATIONS","React","Component","PropTypes","object","isRequired","withParams"],"mappings":"ouDA6BQA,EAAiBC,IAAiBC,IAAI,WAAtCF,aAEFG,E,kaAKI,CACNC,YAAQC,I,gDAGV,WAAoB,WAClBL,EAAaE,IAAII,KAAKC,MAAMC,OAAOC,UAAU,SAACL,GAC5C,EAAKM,SAAS,CAAEN,OAAQA,S,oBAI5B,WAAS,IACCA,EAAWE,KAAKK,MAAhBP,OAGR,OAFmBA,EAOjB,kBAAC,IAAD,CAAeQ,MAAK,uCAAkCR,EAAOQ,QAC3D,6BACE,kBAAC,IAAD,CAAYA,MAAO,+DAA2CR,EAAOQ,MAAlD,MACjB,qHACuF,IACrF,4BAAKR,EAAOQ,OAFd,KAKA,iEACkC,kBAAC,IAAD,CAAmBC,KAAMC,IAAWC,MAAMC,OAAQC,KAAK,kBADzF,KAIA,kBAAC,IAAD,KACE,kBAAC,IAAD,CAAeC,GAAIC,IAAOC,SACxB,kBAAC,IAAD,CAAQC,QAAQ,QAAhB,YAEF,kBAAC,IAAD,CAAeH,GAAIC,IAAOG,cAAcC,MACtC,kBAAC,IAAD,CAAQF,QAAQ,QAAhB,eAEF,kBAAC,IAAD,CAAeH,GAAIC,IAAOG,cAAcE,YACtC,kBAAC,IAAD,CAAQH,QAAQ,QAAhB,mBAEF,kBAAC,IAAD,CAAeH,GAAIC,IAAOG,cAAcG,eACtC,kBAAC,IAAD,CAAQJ,QAAQ,QAAhB,wBAKN,kBAAC,IAAD,CAA+BjB,OAAQA,MAhCpC,kBAAC,IAAD,CAAeQ,MAAM,0BAAyB,kBAAC,KAAD,Y,8BApBpBc,IAAMC,W,EAAvCxB,E,YACe,CACjBK,OAAQoB,IAAUC,OAAOC,aAyDdC,sBAAW5B","file":"57e33c6c-117.11b9f72925818240e61d.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 PropTypes from 'prop-types';\n\nimport { LinkContainer } from 'components/graylog/router';\nimport { ButtonToolbar, Button } from 'components/graylog';\nimport { DocumentTitle, PageHeader, Spinner } from 'components/common';\nimport Routes from 'routing/Routes';\nimport CombinedProvider from 'injection/CombinedProvider';\nimport { StreamAlertsOverviewContainer } from 'components/alerts';\nimport DocumentationLink from 'components/support/DocumentationLink';\nimport DocsHelper from 'util/DocsHelper';\nimport withParams from 'routing/withParams';\n\nconst { StreamsStore } = CombinedProvider.get('Streams');\n\nclass StreamAlertsOverviewPage extends React.Component {\n  static propTypes = {\n    params: PropTypes.object.isRequired,\n  };\n\n  state = {\n    stream: undefined,\n  };\n\n  componentDidMount() {\n    StreamsStore.get(this.props.params.streamId, (stream) => {\n      this.setState({ stream: stream });\n    });\n  }\n\n  render() {\n    const { stream } = this.state;\n    const isLoading = !stream;\n\n    if (isLoading) {\n      return ;\n    }\n\n    return (\n      \n        
\n Alerting overview for Stream »{stream.title}«}>\n \n This is an overview of alerts, conditions, and notifications belonging to the Stream{' '}\n {stream.title}.\n \n\n \n Read more about alerting in the .\n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n
\n
\n );\n }\n}\n\nexport default withParams(StreamAlertsOverviewPage);\n"],"sourceRoot":""}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy