{"version":3,"file":"static/js/application.initial~52501334.ddf60f73.js","mappings":"uWAOO,SAASA,EAAkBC,EAAkBC,EAAkBC,EAAWC,GAAY,IACrFC,EAAG,SAAAC,GACP,SAAAD,EAAYE,GAAQ,IAADC,EAKf,OALeC,EAAAA,EAAAA,GAAA,KAAAJ,IACjBG,GAAAE,EAAAA,EAAAA,GAAA,KAAAL,EAAA,CAAME,KACDI,WAAa,KAClBH,EAAKI,MAAQ,CACXC,QAAS,MACTL,CACJ,CAAC,OAAAM,EAAAA,EAAAA,GAAAT,EAAAC,IAAAS,EAAAA,EAAAA,GAAAV,EAAA,EAAAW,IAAA,oBAAAC,MAED,WAAqB,IAADC,EAAA,KACdd,GACFe,EAAAA,QAAgBC,KAAKhB,GAAW,WACzBc,EAAKP,aAA2C,IAA7BO,EAAKP,WAAWU,UACtCC,QAAQC,IAAI,CACV,yCACApB,MACCqB,MAAK,SAAAC,GAAsC,IAADC,GAAAC,EAAAA,EAAAA,GAAAF,EAAA,GAAjCG,EAAGF,EAAA,GAAHE,IAASC,EAAgBH,EAAA,GAAhBG,iBACXC,EAAUZ,EAAKX,MAAfuB,MACFC,EAASF,EAAiBC,EAAME,UAAWF,EAAMG,MACvDf,EAAKP,WAAaiB,EAAIM,iBAAiBH,GAAQI,SAC/CjB,EAAKkB,SAAS,CAAEvB,QAASK,EAAKP,WAAWE,SAC3C,GAEJ,GAEJ,GAAC,CAAAG,IAAA,uBAAAC,MAED,WACMoB,KAAK1B,YACP0B,KAAK1B,WAAW2B,QAEpB,GAAC,CAAAtB,IAAA,SAAAC,MAED,WACE,OAAIoB,KAAKzB,MAAMC,SAEX0B,EAAAA,EAAAA,KAACtC,GAAgBuC,EAAAA,EAAAA,IAAAA,EAAAA,EAAAA,GAAA,GAAKH,KAAK9B,OAAK,IAAEM,QAASwB,KAAKzB,MAAMC,YAIxD0B,EAAAA,EAAAA,KAACtC,GAAgBuC,EAAAA,EAAAA,GAAA,GAAKH,KAAK9B,OAC/B,IAAC,CAzCM,CAASkC,EAAAA,eAgDlB,OAAOC,EAAAA,EAAAA,oBAAkBC,EAAAA,EAAAA,WAAUtC,GAAMH,EAC3C,C","sources":["../../common-utils/src/with-delayed-styles.js"],"sourcesContent":["/* eslint-disable custom-import/dynamic-import-chunkname */\r\nimport { withTheme } from 'react-jss';\r\nimport React from 'react';\r\nimport PropTypes from 'prop-types';\r\nimport eventDispatcher from '@bingads-webui-component-legacy/event-dispatcher/index';\r\nimport { withDefaultStyles } from '@bingads-webui-react/with-default-styles';\r\n\r\nexport function withDelayedStyles(WrappedComponent, getDefaultStyles, getStyles, eventName) {\r\n class HOC extends React.PureComponent {\r\n constructor(props) {\r\n super(props);\r\n this.styleSheet = null;\r\n this.state = {\r\n classes: null,\r\n };\r\n }\r\n\r\n componentDidMount() {\r\n if (eventName) {\r\n eventDispatcher.once(eventName, () => {\r\n if (!this.styleSheet || this.styleSheet.attached === false) {\r\n Promise.all([\r\n import('react-jss'),\r\n getStyles(),\r\n ]).then(([{ jss }, { getDelayedStyles }]) => {\r\n const { theme } = this.props;\r\n const styles = getDelayedStyles(theme.component, theme.core);\r\n this.styleSheet = jss.createStyleSheet(styles).attach();\r\n this.setState({ classes: this.styleSheet.classes });\r\n });\r\n }\r\n });\r\n }\r\n }\r\n\r\n componentWillUnmount() {\r\n if (this.styleSheet) {\r\n this.styleSheet.detach();\r\n }\r\n }\r\n\r\n render() {\r\n if (this.state.classes) {\r\n return (\r\n <WrappedComponent {...this.props} classes={this.state.classes} />);\r\n }\r\n\r\n return (\r\n <WrappedComponent {...this.props} />);\r\n }\r\n }\r\n\r\n HOC.propTypes = {\r\n theme: PropTypes.shape({}).isRequired,\r\n };\r\n\r\n return withDefaultStyles(withTheme(HOC), getDefaultStyles);\r\n}\r\n"],"names":["withDelayedStyles","WrappedComponent","getDefaultStyles","getStyles","eventName","HOC","_React$PureComponent","props","_this","_classCallCheck","_callSuper","styleSheet","state","classes","_inherits","_createClass","key","value","_this2","eventDispatcher","once","attached","Promise","all","then","_ref","_ref2","_slicedToArray","jss","getDelayedStyles","theme","styles","component","core","createStyleSheet","attach","setState","this","detach","_jsx","_objectSpread","React","withDefaultStyles","withTheme"],"sourceRoot":""}