{"version":3,"sources":["../../../../../src/app/js/components/Report/WindDataWarningPopup.js"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;MAIa,oBAAoB;cAApB,oBAAoB;;AACpB,aADA,oBAAoB,CACnB,KAAK,EAAE;4BADR,oBAAoB;;AAE7B,iCAFS,oBAAoB,6CAEvB,KAAK,EAAE;AACb,yBALK,WAAW,CAKJ,MAAM,CAAC,IAAI,CAAC,YAAY,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC;AACjD,UAAI,CAAC,KAAK,GAAG,mBANR,WAAW,CAMS,QAAQ,EAAE,CAAC;KACrC;;iBALU,oBAAoB;;aAOnB,wBAAG;AACb,YAAI,CAAC,QAAQ,CAAC,mBAVT,WAAW,CAUU,QAAQ,EAAE,CAAC,CAAC;OACvC;;;aAEiB,8BAAG;AACnB,YAAI,CAAC,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC;OACzB;;;aAEwB,qCAAG;AAC1B,8BAnBK,aAAa,CAmBJ,yBAAyB,EAAE,CAAC;OAC3C;;;aAEK,kBAAG;AACP,eACE;;YAAK,SAAS,8BAA2B,IAAI,CAAC,KAAK,CAAC,+BAA+B,GAAG,EAAE,GAAG,QAAQ,CAAA,AAAG;UACpG;;cAAK,EAAE,EAAE,cAAc,AAAC,EAAC,SAAS,EAAE,eAAe,AAAC;YAClD;;gBAAK,SAAS,EAAC,4BAA4B;cACzC;;;;eAA6B;cAC7B,0CAAM,SAAS,EAAC,0BAA0B,EAAC,OAAO,EAAE,IAAI,CAAC,yBAAyB,AAAC,GAAQ;aACvF;YACN;;gBAAK,SAAS,EAAC,oBAAoB;;aAG7B;YACN;;gBAAK,SAAS,EAAE,+CAA+C,AAAC;cAC9D;;;AACE,2BAAS,EAAE,8DAA8D,AAAC;AAC1E,yBAAO,EAAE,IAAI,CAAC,yBAAyB,AAAC;;;eAGtC;aACA;WACF;SACF,CACN;OACH;;;WA1CU,oBAAoB;KAAS,kBAAM,SAAS","file":"WindDataWarningPopup.js","sourcesContent":["import React from 'react';\nimport { reportActions } from 'actions/ReportActions';\nimport { reportStore } from 'stores/ReportStore';\n\nexport class WindDataWarningPopup extends React.Component {\n constructor(props) {\n super(props);\n reportStore.listen(this.storeUpdated.bind(this));\n this.state = reportStore.getState();\n }\n\n storeUpdated() {\n this.setState(reportStore.getState());\n }\n\n componentDidUpdate() {\n this.state = this.props;\n }\n\n closeWindDataWarningPopup() {\n reportActions.closeWindDataWarningPopup();\n }\n\n render() {\n return (\n
\n
\n
\n ASCE HAZARD TOOL\n \n
\n
\n 7-22 Wind Load data for Puerto Rico and U.S. Virgin Islands is temporarily unavailable. Thank you for your\n patience as we work to resolve this issue.\n
\n
\n \n OK\n \n
\n
\n
\n );\n }\n}\n"]}