react-code-dataset / wp-calypso /client /sites /deployments /components /deployments-survey /index.tsx
| import { useLocale } from '@automattic/i18n-utils'; | |
| import { translate } from 'i18n-calypso'; | |
| import ReactDOM from 'react-dom'; | |
| import SurveyModal from 'calypso/components/survey-modal'; | |
| export const GitHubDeploymentSurvey = () => { | |
| const localeSlug = useLocale(); | |
| if ( localeSlug !== 'en' ) { | |
| return null; | |
| } | |
| return ReactDOM.createPortal( | |
| <SurveyModal | |
| name="github-deployments" | |
| url="https://automattic.survey.fm/github-deployments-survey?initiated-from=calypso" | |
| title={ translate( 'Share your thoughts on GitHub Deployments' ) } | |
| description={ translate( | |
| 'Got a moment? We’d love to hear about your experience using GitHub Deployments in our quick survey.' | |
| ) } | |
| dismissText={ translate( 'Remind later' ) } | |
| confirmText={ translate( 'Take survey' ) } | |
| showOverlay={ false } | |
| />, | |
| document.body | |
| ); | |
| }; | |