import React from 'react'; import ChannelLoginForm from './ChannelLoginForm.jsx'; import ChannelCreateForm from './ChannelCreateForm.jsx'; const LOGIN = 'login'; const CREATE = 'create'; class ChannelSelector extends React.Component { constructor (props) { super(props); this.state = { optionState: LOGIN, }; this.handleSelection = this.handleSelection.bind(this); this.selectOption = this.selectOption.bind(this); this.replaceChannelSelectionInNavBar = this.replaceChannelSelectionInNavBar.bind(this); this.updateLoggedInChannelOutsideReact = this.updateLoggedInChannelOutsideReact.bind(this); } componentWillMount () { if (this.props.loggedInChannelName) { this.setState({ optionState: this.props.loggedInChannelName }); } } handleSelection (event) { const selectedOption = event.target.selectedOptions[0].value; this.selectOption(selectedOption); } selectOption (option) { this.setState({optionState: option}); } updateLoggedInChannelOutsideReact (channelName, channelClaimId, shortChannelId) { // update anywhere on page that needs to be updated outside of this component setUserCookies(channelName, channelClaimId, shortChannelId); this.replaceChannelSelectionInNavBar(channelName); } replaceChannelSelectionInNavBar (loggedInChannel) { // remove the old channel option const oldChannel = document.getElementById('nav-bar-channel-select-channel-option'); if (oldChannel) { oldChannel.parentNode.removeChild(oldChannel); } // create new channel option & select it const newChannelOption = document.createElement('option'); newChannelOption.setAttribute('value', loggedInChannel); newChannelOption.setAttribute('id', 'nav-bar-channel-select-channel-option'); newChannelOption.setAttribute('selected', ''); newChannelOption.innerText = loggedInChannel; // add the new option const channelSelect = document.getElementById('nav-bar-channel-select'); channelSelect.style.display = 'inline-block'; channelSelect.insertBefore(newChannelOption, channelSelect.firstChild); // hide login const navBarLoginLink = document.getElementById('nav-bar-login-link'); navBarLoginLink.style.display = 'none'; } render () { return (
{this.props.channelError}