File size: 2,871 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 |
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() {
// TODO: We should avoid creating functions in the render method
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 ) );
|