Vulcan/packages/vulcan-base-components/lib/common/Newsletter.jsx
2017-06-02 07:19:39 +09:00

114 lines
3.5 KiB
JavaScript

import { Components, registerComponent, withCurrentUser, withMutation, withMessages, Utils } from 'meteor/vulcan:core';
import React, { PureComponent } from 'react';
import PropTypes from 'prop-types';
import { FormattedMessage, intlShape } from 'meteor/vulcan:i18n';
import Formsy from 'formsy-react';
import { Input } from 'formsy-react-components';
import Button from 'react-bootstrap/lib/Button';
import Cookie from 'react-cookie';
import Users from 'meteor/vulcan:users';
class Newsletter extends PureComponent {
constructor(props, context) {
super(props);
this.subscribeEmail = this.subscribeEmail.bind(this);
this.successCallbackSubscription = this.successCallbackSubscription.bind(this);
this.dismissBanner = this.dismissBanner.bind(this);
this.state = {
showBanner: showBanner(props.currentUser)
};
}
componentWillReceiveProps(nextProps, nextContext) {
if (nextProps.currentUser) {
this.setState({showBanner: showBanner(nextProps.currentUser)});
}
}
async subscribeEmail(data) {
try {
const result = await this.props.addEmailNewsletter({email: data.email});
this.successCallbackSubscription(result);
} catch(error) {
console.error(error); // eslint-disable-line no-console
this.props.flash(
this.context.intl.formatMessage(Utils.decodeIntlError(error)),
"error"
);
}
}
successCallbackSubscription(/* result*/) {
this.props.flash(this.context.intl.formatMessage({ id: 'newsletter.success_message'}), 'success' );
this.dismissBanner();
}
dismissBanner(e) {
if (e && e.preventDefault) e.preventDefault();
this.setState({showBanner: false});
// set cookie to keep the banner dismissed persistently
Cookie.save('showBanner', 'no');
}
renderButton() {
return (
<Components.NewsletterButton
label="newsletter.subscribe"
mutationName="addUserNewsletter"
successCallback={() => this.successCallbackSubscription()}
user={this.props.currentUser}
/>
);
}
renderForm() {
return (
<Formsy.Form className="newsletter-form" onSubmit={this.subscribeEmail}>
<Input
name="email"
value=""
placeholder={this.context.intl.formatMessage({id: "newsletter.email"})}
type="text"
layout="elementOnly"
/>
<Button className="newsletter-button" type="submit" bsStyle="primary"><FormattedMessage id="newsletter.subscribe"/></Button>
</Formsy.Form>
)
}
render() {
return this.state.showBanner
? (
<div className="newsletter">
<h4 className="newsletter-tagline"><FormattedMessage id="newsletter.subscribe_prompt"/></h4>
{this.props.currentUser ? this.renderButton() : this.renderForm()}
<a onClick={this.dismissBanner} className="newsletter-close"><Components.Icon name="close"/></a>
</div>
) : null;
}
}
Newsletter.contextTypes = {
actions: PropTypes.object,
intl: intlShape
};
const mutationOptions = {
name: 'addEmailNewsletter',
args: { email: 'String' }
}
function showBanner (user) {
return (
// showBanner cookie either doesn't exist or is not set to "no"
Cookie.load('showBanner') !== 'no'
// and user is not subscribed to the newsletter already (setting either DNE or is not set to false)
&& !Users.getSetting(user, 'newsletter_subscribeToNewsletter', false)
);
}
registerComponent('Newsletter', Newsletter, withMutation(mutationOptions), withCurrentUser, withMessages);