var React = require('react'); var _ = require('lodash'); var cx = require('classnames'); //var striptags = require('striptags'); var Nav = require('naturalcrit/nav/nav.jsx'); const MAX_URL_SIZE = 2083; const MAIN_URL = "https://www.reddit.com/r/UnearthedArcana/submit?selftext=true" var RedditShare = React.createClass({ getDefaultProps: function() { return { brew : { title : '', sharedId : '', text : '' } }; }, getText : function(){ }, handleClick : function(){ var url = [ MAIN_URL, 'title=' + encodeURIComponent(this.props.brew.title ? this.props.brew.title : 'Check out my brew!'), 'text=' + encodeURIComponent(this.props.brew.text) ].join('&'); window.open(url, '_blank'); }, render : function(){ return share on reddit }, }); module.exports = RedditShare;