import PropTypes from "prop-types"; import ImmutablePropTypes from "react-immutable-proptypes"; import ImmutablePureComponent from "react-immutable-pure-component"; import { Avatar } from "flavours/glitch/components/avatar"; import Permalink from "flavours/glitch/components/permalink"; import initialState from "mastodon/initial_state"; import ActionBar from "./action_bar"; export default class NavigationBar extends ImmutablePureComponent { static propTypes = { account: ImmutablePropTypes.map.isRequired, onLogout: PropTypes.func.isRequired, }; render () { return (
{this.props.account.get("acct")}
{this.props.account.get("display_name")}
@{this.props.account.get("acct")} @{initialState.meta.domain}
); } }