// @flow import * as ICONS from 'constants/icons'; import * as PAGES from 'constants/pages'; import * as React from 'react'; import Page from 'component/page'; import { FormField } from 'component/common/form'; import Card from 'component/common/card'; import { Lbryio } from 'lbryinc'; import { useHistory } from 'react-router'; import { Redirect } from 'react-router-dom'; import Yrbl from 'component/yrbl'; import Button from 'component/button'; import { SETTINGS } from 'lbry-redux'; type Props = { osNotificationsEnabled: boolean, isAuthenticated: boolean, setClientSetting: (string, boolean) => void, }; export default function NotificationSettingsPage(props: Props) { const { osNotificationsEnabled, setClientSetting, isAuthenticated } = props; const [error, setError] = React.useState(); const [tagMap, setTagMap] = React.useState({}); const [tags, setTags] = React.useState(); const [enabledEmails, setEnabledEmails] = React.useState(); const { location } = useHistory(); const urlParams = new URLSearchParams(location.search); const verificationToken = urlParams.get('verification_token'); const lbryIoParams = verificationToken ? { auth_token: verificationToken } : undefined; React.useEffect(() => { Lbryio.call('tag', 'list', lbryIoParams) .then(setTags) .catch(e => { setError(true); }); Lbryio.call('user_email', 'status', lbryIoParams) .then(res => { const enabledEmails = res.emails && Object.keys(res.emails).reduce((acc, email) => { const isEnabled = res.emails[email]; return [...acc, { email, isEnabled }]; }, []); setTagMap(res.tags); setEnabledEmails(enabledEmails); }) .catch(e => { setError(true); }); }, []); function handleChangeTag(name, newIsEnabled) { const tagParams = newIsEnabled ? { add: name } : { remove: name }; Lbryio.call('user_tag', 'edit', { ...lbryIoParams, ...tagParams }).then(() => { const newTagMap = { ...tagMap }; newTagMap[name] = newIsEnabled; setTagMap(newTagMap); }); } function handleChangeEmail(email, newIsEnabled) { Lbryio.call('user_email', 'edit', { email: email, enabled: newIsEnabled, ...lbryIoParams, }) .then(() => { const newEnabledEmails = enabledEmails ? enabledEmails.map(userEmail => { if (email === userEmail.email) { return { email, isEnabled: newIsEnabled }; } return userEmail; }) : []; setEnabledEmails(newEnabledEmails); }) .catch(e => { setError(true); }); } if (!isAuthenticated && !verificationToken) { return ; } return ( {error ? (