\r\n {i18n.getString('Campaign_BudgetCenter_ViewLink')}\r\n >\r\n ),\r\n };\r\n\r\n ReactDOM.render(\r\n ,\r\n document.getElementById(budgetCenterHelpContainerId)\r\n );\r\n};\r\n\r\nexport const hideBudgetCenterHelpTooltip = ({ event, view }) => {\r\n if ($(event.relatedTarget).closest('#budget-center-help-tooltip-id').length === 0) {\r\n view.trigger('closePopup');\r\n }\r\n};\r\n","/* eslint-disable jsx-a11y/anchor-is-valid */\r\nimport classnames from 'classnames';\r\nimport $ from 'jquery';\r\nimport React from 'react';\r\nimport ReactDOM from 'react-dom';\r\nimport { insertPopoverContainer } from '@bingads-webui-campaign/fluctuation-common';\r\nimport { mergeStyleSets, DefaultButton, Text, Link } from '@fluentui/react';\r\nimport { CopilotToggleCustomEvent, LiveAgentQueue } from '@bingads-webui-react/msa-copilot-common';\r\nimport { GridTooltip } from '@bingads-webui-campaign/grid-tooltip';\r\n\r\n// TODO: replace this with util function from copilot-live-agent once build issue is resolved\r\n// Bug 9089477: [Copilot][CTA] Cloudbuild warning when importing copilot-live-agent\r\nconst isEnglishOnlyChatSupportedLocale = (locale) => {\r\n if (!locale) return false;\r\n\r\n const ENGLISH_ONLY_SUPPORTED_LOCALES = [\r\n 'bg-bg',\r\n 'cs-cz',\r\n 'el-gr',\r\n 'fi-fi',\r\n 'fil-ph',\r\n 'hi-in',\r\n 'hr-hr',\r\n 'hu-hu',\r\n 'ko-kr',\r\n 'lt-lt',\r\n 'ms-my',\r\n 'nb-no',\r\n 'pl-pl',\r\n 'ro-ro',\r\n 'ru-ru',\r\n 'th-th',\r\n 'tr-tr',\r\n 'uk-ua',\r\n 'zh-cn',\r\n 'zh-hk',\r\n 'zh-tw',\r\n ];\r\n\r\n const lowerLocale = locale.toLocaleLowerCase();\r\n return ENGLISH_ONLY_SUPPORTED_LOCALES.includes(lowerLocale);\r\n};\r\n\r\nexport const conversionDeliveryStatusContainerId = 'conversion-delivery-status-tooltip';\r\n\r\nexport const dismissConversionStatusCallout = () => {\r\n const calloutElement = document.getElementById(conversionDeliveryStatusContainerId);\r\n if (calloutElement) {\r\n ReactDOM.unmountComponentAtNode(calloutElement);\r\n }\r\n};\r\n\r\nexport const renderConversionDeliveryStatusTooltip = ({\r\n i18n, event, item, view, activity, isConnectWithExpertEnabled,\r\n}) => {\r\n const styles = mergeStyleSets({\r\n content: {\r\n marginBottom: '10px',\r\n marginTop: '10px',\r\n rowGap: '10px',\r\n display: 'flex',\r\n flexDirection: 'column',\r\n },\r\n ctaButton: {\r\n marginTop: '10px',\r\n },\r\n ctaFooter: {\r\n display: 'block',\r\n marginTop: '16px',\r\n paddingTop: '4px',\r\n marginBottom: '-16px',\r\n borderTop: '1px solid #E9E9E9',\r\n color: '#838383',\r\n },\r\n });\r\n const { right } = event.target.getBoundingClientRect();\r\n const calloutMaxWidth = 325; // this value is defined in global style\r\n const placement = right + calloutMaxWidth > window.innerWidth ? 'left' : 'right';\r\n\r\n const noEligibleGoalText = {\r\n title: _TL_('Missing primary conversion goal'),\r\n description: _TL_('This campaign does not have a main conversion goal configured, which may result in missing conversion tracking. Please review your campaign settings to assign a main goal.'),\r\n learnMoreHref: 'https://help.ads.microsoft.com/#apex/ads/en/56689/2-500',\r\n learnMoreText: _TL_('Learn more about conversion goals.'),\r\n };\r\n\r\n const tagUnverifiedText = {\r\n title: _TL_('Unverified UET tag'),\r\n description: _TL_('One or more of your main conversion goals have an unverified tag, which resulted in receiving no events. This could lead to missing conversion data. Please ensure the UET tag is properly implemented.'),\r\n learnMoreHref: 'https://help.ads-int.microsoft.com/#apex/ads/en/56692/1/en-US/#ext:vnext_offlineconversions',\r\n learnMoreText: _TL_('Learn more about UET tracking.'),\r\n };\r\n\r\n const tagInactiveText = {\r\n title: _TL_('Inactive UET tag'),\r\n description: _TL_('The UET tag for this campaign\\'s main goal hasn\\'t recorded any events in the last 24 hours, which may result in incomplete conversion tracking. Please check your tag configuration to ensure it is tracking correctly.'),\r\n learnMoreHref: 'https://help.ads-int.microsoft.com/#apex/ads/en/56692/1/en-US/#ext:vnext_offlineconversions',\r\n learnMoreText: _TL_('Learn more about UET tracking.'),\r\n };\r\n\r\n const noRecentOfflineText = {\r\n title: _TL_('No offline conversions uploaded in last 7 days'),\r\n description: _TL_('Go to your offline goals to upload conversions that may be associated to this campaign.'),\r\n learnMoreHref: 'https://help.ads.microsoft.com/#apex/ads/en/56852/2',\r\n learnMoreText: _TL_('Learn more'),\r\n };\r\n\r\n const consentModeWarning = {\r\n title: _TL_('Action required: Ensure proper implementation of consent signals'),\r\n description: _TL_('To avoid any negative impact on conversion attribution and remarketing segments for users visiting your websites from the European Economic Area (EEA), the United Kingdom, and Switzerland, implement Consent Mode or the Transparency and Consent Framework (TCF) with your UET tags.'),\r\n learnMoreHref: 'https://help.ads.microsoft.com/apex/index/3/en/60119',\r\n learnMoreText: _TL_('Learn more'),\r\n };\r\n\r\n const textStrings = {\r\n NoEligibleGoal: noEligibleGoalText,\r\n TagUnverified: tagUnverifiedText,\r\n TagInactive: tagInactiveText,\r\n NoRecentOfflineConversion: noRecentOfflineText,\r\n ConsentModeWarning: consentModeWarning,\r\n };\r\n\r\n const goalStatus = item && item.GoalStatusDetails && item.GoalStatusDetails.length > 0 && item.GoalStatusDetails[0].GoalDeliveryStatus;\r\n\r\n const Id = item && item.Id;\r\n\r\n const text = textStrings[goalStatus];\r\n\r\n insertPopoverContainer(conversionDeliveryStatusContainerId);\r\n const tooltipProps = {\r\n parentView: view,\r\n popoverId: 'conversion-delivery-status-tooltip-id',\r\n target: event.currentTarget,\r\n show: true,\r\n onClose: dismissConversionStatusCallout,\r\n onMouseLeave: dismissConversionStatusCallout,\r\n closeButton: false,\r\n placement,\r\n focusLockContent: true,\r\n content: (\r\n <>\r\n
\r\n {text},\r\n // eslint-disable-next-line jsx-a11y/anchor-is-valid\r\n b: text => (isEnabledForDynamicFeedCampaign ? <> or {text}> : null),\r\n }}\r\n template={i18n.getString(_TL_('To create a shopping campaign, you need to create a Microsoft Merchant Center store and add your catalog. {{a}}Create a store{{/a}} {{b}}Upload a Dynamic Data Feed{{/b}}'))}\r\n />\r\n
\r\n {/* Scrollbar container (of whom grid view is a descendant) is position:relative to allow offseting the virtual scrollbars.\r\n Normal stacking order causes elements who are position:relative to be stacked in the order in which they appear in the DOM, so toolbar will always be\r\n hidden behind the scrollbar container. Setting a z-index here to prevent scrollbar container (i.e. the grid view) from occluding the sticky toolbar */}\r\n
\r\n {this.props.stickyTopOfGridContent}\r\n
\r\n
\r\n
\r\n
\r\n \r\n \r\n \r\n
\r\n \r\n {this.props.gridView}\r\n
\r\n \r\n \r\n
\r\n
\r\n {\r\n // customer-scope grids don't have timeZone info\r\n // Disclaimer banner will show if either timeZone or CustomDisclaimerBanner valid in props\r\n (this.props.timeZone || this.props.CustomDisclaimerBanner) && (\r\n