{"version":3,"file":"zendesk_widget-CayyMWiG.js","sources":["../../app/javascript/components/shared/zendesk/zendesk_settings.ts","../../node_modules/react-error-boundary/dist/react-error-boundary.esm.js","../../node_modules/react-zendesk/lib/index.js","../../app/javascript/components/shared/zendesk/zendesk_widget.tsx"],"sourcesContent":["// This key is used by the Zendesk component to render the Zendesk Web Widget.\n// When manually adding this widget to a webpage, the ZENDESK_KEY is included as\n// part of the script tag and is visible in the DOM. So this key shouldn't be treated as \"secret\" or \"secure\".\n// Adding it here as a constant since this is the only component using the Zendesk component currently.\n// Could be moved to a shared location if that changes in the future.\n// ref: https://developer.zendesk.com/documentation/classic-web-widget-sdks/web-widget/quickstart-tutorials/web-widget-javascript-apis/#adding-the-web-widget-classic-on-your-web-page\n\nconst ZENDESK_PRODUCTION_KEY = \"88f2eb5c-80e1-47bd-95ae-6005b892222a\";\n\nexport const ZENDESK_KEY = ZENDESK_PRODUCTION_KEY;\n\n// We're suppressing all features of the web widget except for the Help Center\n// ref: https://developer.zendesk.com/api-reference/widget/settings/#suppress\nexport const PARTNER_DASHBOARD_ZENDESK_SETTINGS = {\n chat: {\n suppress: true,\n },\n contactForm: {\n suppress: true,\n },\n talk: {\n suppress: true,\n },\n answerBot: {\n suppress: true,\n },\n};\n\nexport const PARTICIPANT_DASHBOARD_ZENDESK_SETTINGS = {\n chat: {\n suppress: true,\n },\n helpCenter: {\n suppress: true,\n },\n talk: {\n suppress: true,\n },\n answerBot: {\n suppress: true,\n },\n offset: {\n // there is already a 20px margin applied to the right of the iframe, so this is adding 16px for a total of 36px\n horizontal: \"16px\",\n // there is already a 10px margin applied to the bottom of the iframe, so this is adding 14px for a total of 24px\n vertical: \"14px\",\n mobile: {\n // there is already a 20px margin applied to the right of the iframe, which this is keeping\n horizontal: \"0px\",\n // there is already a 10px margin applied to the bottom of the iframe, so this is adding 74px for a total of 84px\n // (specifically, we need to move the help button above the bottom nav on mobile)\n vertical: \"84px\",\n },\n },\n};\n\nexport const LANDING_PAGE_ZENDESK_SETTINGS = {\n chat: {\n suppress: true,\n },\n helpCenter: {\n suppress: true,\n },\n talk: {\n suppress: true,\n },\n answerBot: {\n suppress: true,\n },\n};\n","'use client';\nimport { createContext, Component, createElement, useContext, useState, useMemo, forwardRef } from 'react';\n\nconst ErrorBoundaryContext = createContext(null);\n\nconst initialState = {\n didCatch: false,\n error: null\n};\nclass ErrorBoundary extends Component {\n constructor(props) {\n super(props);\n this.resetErrorBoundary = this.resetErrorBoundary.bind(this);\n this.state = initialState;\n }\n static getDerivedStateFromError(error) {\n return {\n didCatch: true,\n error\n };\n }\n resetErrorBoundary() {\n const {\n error\n } = this.state;\n if (error !== null) {\n var _this$props$onReset, _this$props;\n for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {\n args[_key] = arguments[_key];\n }\n (_this$props$onReset = (_this$props = this.props).onReset) === null || _this$props$onReset === void 0 ? void 0 : _this$props$onReset.call(_this$props, {\n args,\n reason: \"imperative-api\"\n });\n this.setState(initialState);\n }\n }\n componentDidCatch(error, info) {\n var _this$props$onError, _this$props2;\n (_this$props$onError = (_this$props2 = this.props).onError) === null || _this$props$onError === void 0 ? void 0 : _this$props$onError.call(_this$props2, error, info);\n }\n componentDidUpdate(prevProps, prevState) {\n const {\n didCatch\n } = this.state;\n const {\n resetKeys\n } = this.props;\n\n // There's an edge case where if the thing that triggered the error happens to *also* be in the resetKeys array,\n // we'd end up resetting the error boundary immediately.\n // This would likely trigger a second error to be thrown.\n // So we make sure that we don't check the resetKeys on the first call of cDU after the error is set.\n\n if (didCatch && prevState.error !== null && hasArrayChanged(prevProps.resetKeys, resetKeys)) {\n var _this$props$onReset2, _this$props3;\n (_this$props$onReset2 = (_this$props3 = this.props).onReset) === null || _this$props$onReset2 === void 0 ? void 0 : _this$props$onReset2.call(_this$props3, {\n next: resetKeys,\n prev: prevProps.resetKeys,\n reason: \"keys\"\n });\n this.setState(initialState);\n }\n }\n render() {\n const {\n children,\n fallbackRender,\n FallbackComponent,\n fallback\n } = this.props;\n const {\n didCatch,\n error\n } = this.state;\n let childToRender = children;\n if (didCatch) {\n const props = {\n error,\n resetErrorBoundary: this.resetErrorBoundary\n };\n if (typeof fallbackRender === \"function\") {\n childToRender = fallbackRender(props);\n } else if (FallbackComponent) {\n childToRender = createElement(FallbackComponent, props);\n } else if (fallback !== undefined) {\n childToRender = fallback;\n } else {\n throw error;\n }\n }\n return createElement(ErrorBoundaryContext.Provider, {\n value: {\n didCatch,\n error,\n resetErrorBoundary: this.resetErrorBoundary\n }\n }, childToRender);\n }\n}\nfunction hasArrayChanged() {\n let a = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : [];\n let b = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : [];\n return a.length !== b.length || a.some((item, index) => !Object.is(item, b[index]));\n}\n\nfunction assertErrorBoundaryContext(value) {\n if (value == null || typeof value.didCatch !== \"boolean\" || typeof value.resetErrorBoundary !== \"function\") {\n throw new Error(\"ErrorBoundaryContext not found\");\n }\n}\n\nfunction useErrorBoundary() {\n const context = useContext(ErrorBoundaryContext);\n assertErrorBoundaryContext(context);\n const [state, setState] = useState({\n error: null,\n hasError: false\n });\n const memoized = useMemo(() => ({\n resetBoundary: () => {\n context.resetErrorBoundary();\n setState({\n error: null,\n hasError: false\n });\n },\n showBoundary: error => setState({\n error,\n hasError: true\n })\n }), [context.resetErrorBoundary]);\n if (state.hasError) {\n throw state.error;\n }\n return memoized;\n}\n\nfunction withErrorBoundary(component, errorBoundaryProps) {\n const Wrapped = forwardRef((props, ref) => createElement(ErrorBoundary, errorBoundaryProps, createElement(component, {\n ...props,\n ref\n })));\n\n // Format for display in DevTools\n const name = component.displayName || component.name || \"Unknown\";\n Wrapped.displayName = \"withErrorBoundary(\".concat(name, \")\");\n return Wrapped;\n}\n\nexport { ErrorBoundary, ErrorBoundaryContext, useErrorBoundary, withErrorBoundary };\n","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports[\"default\"] = exports.ZendeskAPI = void 0;\n\nvar _react = require(\"react\");\n\nvar _propTypes = _interopRequireDefault(require(\"prop-types\"));\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { \"default\": obj }; }\n\nfunction _typeof(obj) { \"@babel/helpers - typeof\"; if (typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; }; } return _typeof(obj); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }\n\nfunction _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }\n\nfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function\"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }\n\nfunction _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }\n\nfunction _createSuper(Derived) { return function () { var Super = _getPrototypeOf(Derived), result; if (_isNativeReflectConstruct()) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }\n\nfunction _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === \"object\" || typeof call === \"function\")) { return call; } return _assertThisInitialized(self); }\n\nfunction _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return self; }\n\nfunction _isNativeReflectConstruct() { if (typeof Reflect === \"undefined\" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === \"function\") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }\n\nfunction _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }\n\nvar canUseDOM = function canUseDOM() {\n if (typeof window === 'undefined' || !window.document || !window.document.createElement) {\n return false;\n }\n\n return true;\n};\n\nvar ZendeskAPI = function ZendeskAPI() {\n if (canUseDOM && window.zE) {\n for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {\n args[_key] = arguments[_key];\n }\n\n window.zE.apply(null, args);\n } else {\n console.warn(\"Zendesk is not initialized yet\");\n }\n};\n\nexports.ZendeskAPI = ZendeskAPI;\n\nvar Zendesk = /*#__PURE__*/function (_Component) {\n _inherits(Zendesk, _Component);\n\n var _super = _createSuper(Zendesk);\n\n function Zendesk(props) {\n var _this;\n\n _classCallCheck(this, Zendesk);\n\n _this = _super.call(this, props);\n _this.insertScript = _this.insertScript.bind(_assertThisInitialized(_this));\n _this.onScriptLoaded = _this.onScriptLoaded.bind(_assertThisInitialized(_this));\n return _this;\n }\n\n _createClass(Zendesk, [{\n key: \"onScriptLoaded\",\n value: function onScriptLoaded() {\n if (typeof this.props.onLoaded === 'function') {\n this.props.onLoaded();\n }\n }\n }, {\n key: \"insertScript\",\n value: function insertScript(zendeskKey, defer) {\n var script = document.createElement('script');\n\n if (defer) {\n script.defer = true;\n } else {\n script.async = true;\n }\n\n script.id = 'ze-snippet';\n script.src = \"https://static.zdassets.com/ekr/snippet.js?key=\".concat(zendeskKey);\n script.addEventListener('load', this.onScriptLoaded);\n document.body.appendChild(script);\n }\n }, {\n key: \"componentDidMount\",\n value: function componentDidMount() {\n if (canUseDOM && !window.zE) {\n var _this$props = this.props,\n defer = _this$props.defer,\n zendeskKey = _this$props.zendeskKey,\n other = _objectWithoutProperties(_this$props, [\"defer\", \"zendeskKey\"]);\n\n this.insertScript(zendeskKey, defer);\n window.zESettings = other;\n }\n }\n }, {\n key: \"componentWillUnmount\",\n value: function componentWillUnmount() {\n if (!canUseDOM || !window.zE) {\n return;\n }\n\n delete window.zE;\n delete window.zESettings;\n }\n }, {\n key: \"render\",\n value: function render() {\n return null;\n }\n }]);\n\n return Zendesk;\n}(_react.Component);\n\nexports[\"default\"] = Zendesk;\nZendesk.propTypes = {\n zendeskKey: _propTypes[\"default\"].string.isRequired,\n defer: _propTypes[\"default\"].bool\n};","import React, { ErrorInfo } from \"react\";\nimport { ErrorBoundary } from \"react-error-boundary\";\nimport Zendesk, { IZendeskProps } from \"react-zendesk\";\nimport { ZENDESK_KEY } from \"./zendesk_settings\";\nimport { captureError } from \"../../../utils/capture_error\";\n\ninterface ZendeskWidgetProps extends Omit {}\n\nconst logError = (error: Error, info: ErrorInfo) => {\n captureError(new Error(`Error in ZendeskWidget: ${error.message} ${info.componentStack}`));\n};\n\nconst ZendeskWidget = (props: ZendeskWidgetProps) => {\n // For now, we are just returning an empty fragment as a fallback.\n // The ErrorBoundary component will catch any errors and log them to Sentry.\n const fallback = <>;\n\n return (\n \n \n \n );\n};\n\nexport default ZendeskWidget;\n"],"names":["ZENDESK_PRODUCTION_KEY","ZENDESK_KEY","PARTNER_DASHBOARD_ZENDESK_SETTINGS","PARTICIPANT_DASHBOARD_ZENDESK_SETTINGS","LANDING_PAGE_ZENDESK_SETTINGS","ErrorBoundaryContext","createContext","initialState","ErrorBoundary","Component","props","error","_this$props$onReset","_this$props","_len","args","_key","info","_this$props$onError","_this$props2","prevProps","prevState","didCatch","resetKeys","hasArrayChanged","_this$props$onReset2","_this$props3","children","fallbackRender","FallbackComponent","fallback","childToRender","createElement","a","b","item","index","exports","_react","require$$0","_propTypes","_interopRequireDefault","obj","_typeof","_objectWithoutProperties","source","excluded","target","_objectWithoutPropertiesLoose","key","i","sourceSymbolKeys","sourceKeys","_classCallCheck","instance","Constructor","_defineProperties","descriptor","_createClass","protoProps","staticProps","_inherits","subClass","superClass","_setPrototypeOf","o","p","_createSuper","Derived","Super","_getPrototypeOf","result","_isNativeReflectConstruct","NewTarget","_possibleConstructorReturn","self","call","_assertThisInitialized","canUseDOM","ZendeskAPI","Zendesk","_Component","_super","_this","zendeskKey","defer","script","other","logError","captureError","ZendeskWidget","jsx","Fragment"],"mappings":"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","x_google_ignoreList":[1,2]}