scinote-web/app/javascript/packs/shared/navigation/components/TeamSwitch.jsx

84 lines
2.1 KiB
React
Raw Normal View History

2017-08-02 23:27:05 +08:00
import React, { Component } from "react";
2017-08-03 22:03:15 +08:00
import { connect } from "react-redux";
2017-08-02 23:27:05 +08:00
import PropTypes from "prop-types";
2017-08-07 15:31:24 +08:00
import { FormattedMessage } from "react-intl";
2017-08-02 23:27:05 +08:00
import { NavDropdown, MenuItem } from "react-bootstrap";
2017-08-03 22:03:15 +08:00
import { setCurrentUser, changeTeam } from "../../actions/TeamsActions";
2017-08-02 23:27:05 +08:00
class TeamSwitch extends Component {
constructor(props) {
super(props);
2017-08-03 22:03:15 +08:00
this.displayTeams = this.displayTeams.bind(this);
}
2017-08-07 15:31:24 +08:00
changeTeam(teamId) {
this.props.changeTeam(teamId);
2017-08-03 22:03:15 +08:00
}
2017-08-02 23:27:05 +08:00
2017-08-03 22:03:15 +08:00
displayTeams() {
return this.props.all_teams.filter(team => !team.current_team).map(team =>
<MenuItem onSelect={() => this.changeTeam(team.id)} key={team.id}>
{team.name}
</MenuItem>
);
2017-08-02 23:27:05 +08:00
}
2017-08-07 15:31:24 +08:00
newTeamLink() {
return (
<MenuItem href="/users/settings/teams/new" key="addNewTeam">
<span className="glyphicon glyphicon-plus" />
<FormattedMessage id="global_team_switch.new_team" />
</MenuItem>
);
}
2017-08-02 23:27:05 +08:00
render() {
return (
<NavDropdown
2017-08-07 15:31:24 +08:00
noCaret
2017-08-02 23:27:05 +08:00
eventKey={this.props.eventKey}
2017-08-03 22:03:15 +08:00
title={this.props.current_team.name}
2017-08-02 23:27:05 +08:00
id="team-switch"
>
2017-08-03 22:03:15 +08:00
{this.displayTeams()}
2017-08-07 15:31:24 +08:00
{this.newTeamLink()}
2017-08-02 23:27:05 +08:00
</NavDropdown>
);
}
}
TeamSwitch.propTypes = {
2017-08-03 22:03:15 +08:00
eventKey: PropTypes.number.isRequired,
2017-08-07 15:31:24 +08:00
changeTeam: PropTypes.func.isRequired,
2017-08-03 22:03:15 +08:00
all_teams: PropTypes.arrayOf(
PropTypes.shape({
id: PropTypes.number.isRequired,
name: PropTypes.string.isRequired,
current_team: PropTypes.bool.isRequired
})
),
current_team: PropTypes.shape({
id: PropTypes.number.isRequired,
name: PropTypes.string.isRequired,
current_team: PropTypes.bool.isRequired
})
};
// Map the states from store to component
const mapStateToProps = ({ all_teams, current_team }) => {
return { all_teams, current_team };
};
// Map the fetch activity action to component
const mapDispatchToProps = dispatch => ({
setCurrentUser() {
dispatch(setCurrentUser());
},
changeTeam(team_id) {
dispatch(changeTeam(team_id));
}
});
2017-08-02 23:27:05 +08:00
2017-08-03 22:03:15 +08:00
export default connect(mapStateToProps, mapDispatchToProps)(TeamSwitch);