import React, { Component } from 'react'; import { List, ListItem, ListItemText, ListSubheader, ListItemSecondaryAction, Paper, IconButton, withStyles, Button, Switch, Dialog, DialogTitle, DialogContent, RadioGroup, FormControlLabel, Radio, DialogActions, DialogContentText } from '@material-ui/core'; import OpenInNewIcon from '@material-ui/icons/OpenInNew'; import {styles} from './PageLayout.styles'; import {setUserDefaultBool, getUserDefaultBool, getUserDefaultTheme, setUserDefaultTheme} from '../utilities/settings'; import {canSendNotifications, browserSupportsNotificationRequests} from '../utilities/notifications'; import {themes} from '../types/HyperspaceTheme'; interface ISettingsState { darkModeEnabled: boolean; pushNotificationsEnabled: boolean; selectThemeName: string; themeDialogOpen: boolean; resetHyperspaceDialog: boolean; resetSettingsDialog: boolean; } class SettingsPage extends Component { constructor(props: any) { super(props); this.state = { darkModeEnabled: getUserDefaultBool('darkModeEnabled'), pushNotificationsEnabled: canSendNotifications(), selectThemeName: getUserDefaultTheme().key, themeDialogOpen: false, resetHyperspaceDialog: false, resetSettingsDialog: false } this.toggleDarkMode = this.toggleDarkMode.bind(this); this.togglePushNotifications = this.togglePushNotifications.bind(this); this.toggleThemeDialog = this.toggleThemeDialog.bind(this); this.changeThemeName = this.changeThemeName.bind(this); this.changeTheme = this.changeTheme.bind(this); } toggleDarkMode() { this.setState({ darkModeEnabled: !this.state.darkModeEnabled }); setUserDefaultBool('darkModeEnabled', !this.state.darkModeEnabled); window.location.reload(); } togglePushNotifications() { this.setState({ pushNotificationsEnabled: !this.state.pushNotificationsEnabled }); setUserDefaultBool('enablePushNotifications', !this.state.pushNotificationsEnabled); } toggleThemeDialog() { this.setState({ themeDialogOpen: !this.state.themeDialogOpen }); } toggleResetDialog() { this.setState({ resetHyperspaceDialog: !this.state.resetHyperspaceDialog }); } toggleResetSettingsDialog() { this.setState({ resetSettingsDialog: !this.state.resetSettingsDialog }); } changeTheme() { setUserDefaultTheme(this.state.selectThemeName); window.location.reload(); } changeThemeName(theme: string) { this.setState({ selectThemeName: theme}); } reset() { localStorage.clear(); window.location.reload(); } refresh() { let settings = ['darkModeEnabled', 'enablePushNotifications', 'clearNotificationsOnRead', 'theme']; settings.forEach(setting => { localStorage.removeItem(setting); }) window.location.reload(); } showThemeDialog() { return ( Choose a color scheme this.changeThemeName(value)} > {themes.map(theme => ( } label={theme.name} /> ))} ))} ); } showResetSettingsDialog() { return ( this.toggleResetSettingsDialog()} > Are you sure you want to refresh settings? ); } showResetDialog() { return ( this.toggleResetDialog()} > Reset Hyperspace? Are you sure you want to reset Hyperspace? You'll need to sign in again and grant Hyperspace access to use it again. ); } render() { const { classes } = this.props; return (
Appearance
Notifications
Accounts
Advanced {this.showThemeDialog()} {this.showResetDialog()} {this.showResetSettingsDialog()}
); } } export default withStyles(styles)(SettingsPage);