|
|
import { localize } from 'i18n-calypso'; |
|
|
import { find } from 'lodash'; |
|
|
import { Component } from 'react'; |
|
|
import { connect } from 'react-redux'; |
|
|
import Main from 'calypso/components/main'; |
|
|
import NavigationHeader from 'calypso/components/navigation-header'; |
|
|
import PageViewTracker from 'calypso/lib/analytics/page-view-tracker'; |
|
|
import twoStepAuthorization from 'calypso/lib/two-step-authorization'; |
|
|
import ReauthRequired from 'calypso/me/reauth-required'; |
|
|
import { fetchSettings, toggle, saveSettings } from 'calypso/state/notification-settings/actions'; |
|
|
import { |
|
|
getNotificationSettings, |
|
|
hasUnsavedNotificationSettingsChanges, |
|
|
} from 'calypso/state/notification-settings/selectors'; |
|
|
import BlogsSettings from './blogs-settings'; |
|
|
import Navigation from './navigation'; |
|
|
import PushNotificationSettings from './push-notification-settings'; |
|
|
import SubscriptionManagementBackButton from './subscription-management-back-button'; |
|
|
|
|
|
class NotificationSettings extends Component { |
|
|
componentDidMount() { |
|
|
this.props.fetchSettings(); |
|
|
} |
|
|
|
|
|
onChange = () => { |
|
|
const { error, status } = this.props; |
|
|
|
|
|
if ( error ) { |
|
|
this.props.errorNotice( |
|
|
this.props.translate( 'There was a problem saving your changes. Please, try again.' ), |
|
|
{ |
|
|
id: 'notif-settings-save', |
|
|
} |
|
|
); |
|
|
} |
|
|
|
|
|
if ( status === 'success' ) { |
|
|
this.props.successNotice( this.props.translate( 'Settings saved successfully!' ), { |
|
|
id: 'notif-settings-save', |
|
|
duration: 4000, |
|
|
} ); |
|
|
} |
|
|
}; |
|
|
|
|
|
render() { |
|
|
|
|
|
const findSettingsForBlog = ( blogId ) => |
|
|
find( this.props.settings, { blog_id: parseInt( blogId, 10 ) } ); |
|
|
const onSave = ( blogId ) => this.props.saveSettings( 'blogs', findSettingsForBlog( blogId ) ); |
|
|
const onSaveToAll = ( blogId ) => |
|
|
this.props.saveSettings( 'blogs', findSettingsForBlog( blogId ), true ); |
|
|
|
|
|
return ( |
|
|
<Main wideLayout className="notification-settings"> |
|
|
<PageViewTracker path="/me/notifications" title="Me > Notifications" /> |
|
|
<ReauthRequired twoStepAuthorization={ twoStepAuthorization } /> |
|
|
|
|
|
<SubscriptionManagementBackButton /> |
|
|
<NavigationHeader |
|
|
navigationItems={ [] } |
|
|
title={ this.props.translate( 'Notification Settings' ) } |
|
|
/> |
|
|
|
|
|
<Navigation path={ this.props.path } /> |
|
|
<PushNotificationSettings pushNotifications={ this.props.pushNotifications } /> |
|
|
<BlogsSettings |
|
|
settings={ this.props.settings } |
|
|
hasUnsavedChanges={ this.props.hasUnsavedChanges } |
|
|
onToggle={ this.props.toggle } |
|
|
onSave={ onSave } |
|
|
onSaveToAll={ onSaveToAll } |
|
|
/> |
|
|
</Main> |
|
|
); |
|
|
} |
|
|
} |
|
|
|
|
|
export default connect( |
|
|
( state ) => ( { |
|
|
settings: getNotificationSettings( state, 'blogs' ), |
|
|
hasUnsavedChanges: hasUnsavedNotificationSettingsChanges( state, 'blogs' ), |
|
|
} ), |
|
|
{ fetchSettings, toggle, saveSettings } |
|
|
)( localize( NotificationSettings ) ); |
|
|
|