Vulcan/packages/my-custom-package/lib/components/CustomNewsletter.jsx
2016-06-16 11:34:13 +09:00

35 lines
No EOL
968 B
JavaScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*
The original Newsletter components is defined using an
ES6 class, so we use the "class foo extends bar" syntax
to extend it. This way, we can simply redefine the
render method to change it, while preserving
all of the class's other methods (other render
functions, event handlers, etc.).
*/
import React, { PropTypes, Component } from 'react';
class CustomNewsletter extends Telescope.components.Newsletter {
render() {
const currentUser = this.context.currentUser;
({Icon} = Telescope.components);
if (this.state.showBanner) {
return (
<div className="newsletter">
<h4 className="newsletter-tagline">{this.props.headerText}</h4>
{this.context.currentUser ? this.renderButton() : this.renderForm()}
<a onClick={this.dismissBanner} className="newsletter-close"><Icon name="close"/></a>
</div>
);
} else {
return null;
}
}
}
export default CustomNewsletter;