| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- import { useTranslation } from 'react-i18next'
- import RadioButtonSetting, { RadioOption } from '../radio-button-setting'
- import {
- NotificationLevel,
- useProjectNotificationPreferences,
- } from '../../../ide-redesign/hooks/use-project-notification-preferences'
- export default function ProjectNotificationsSetting() {
- const { t } = useTranslation()
- const { notificationLevel, setNotificationLevel, isLoading } =
- useProjectNotificationPreferences()
- const options: Array<RadioOption<NotificationLevel>> = [
- {
- value: 'all',
- label: t('all_project_activity'),
- description: t('all_project_activity_description'),
- },
- {
- value: 'replies',
- label: t('replies_to_your_activity_only'),
- description: t('replies_to_your_activity_only_description'),
- },
- {
- value: 'off',
- label: t('off'),
- description: t('no_project_notifications_description'),
- },
- ]
- return (
- <>
- <RadioButtonSetting
- id="projectNotifications"
- options={options}
- value={isLoading ? undefined : notificationLevel}
- onChange={setNotificationLevel}
- />
- <div className="project-notifications-beta-note">
- <span className="beta-note-text">
- {t('email_notifications_are_currently_in_beta')}{' '}
- {t('these_settings_might_change_in_the_future')}{' '}
- </span>
- {/* TODO: update forms link */}
- <a target="_blank" rel="noopener noreferrer" href="https://forms.gle/">
- {t('give_feedback')}
- </a>
- </div>
- </>
- )
- }
|