d03bfe2ab8
commit242cfc4b06Author: Zoë Bijl <code@moiety.me> Date: Tue Oct 21 00:22:46 2025 +0200 [bugfix] tweak display name alignment commit23e5d9840fAuthor: Zoë Bijl <code@moiety.me> Date: Tue Oct 21 00:00:59 2025 +0200 [bugfix] improve display name alignment commit1664835c94Author: Zoë Bijl <code@moiety.me> Date: Mon Oct 20 17:03:52 2025 +0200 [feature] add text-decoration to usernames and hashtags commitd4fdb18549Author: Zoë Bijl <code@moiety.me> Date: Mon Oct 20 16:38:08 2025 +0200 [bugfix] correct spacing in status__content__spoiler commitc19307a115Author: Zoë Bijl <code@moiety.me> Date: Mon Oct 20 16:28:30 2025 +0200 [feature] remove giant logo in multi-column view commit51e2c6e1c3Author: Zoë Bijl <code@moiety.me> Date: Mon Oct 20 16:24:52 2025 +0200 [feature] add gts logo in the multi-column menu commitedc83b0f54Author: Zoë Bijl <code@moiety.me> Date: Mon Oct 20 16:23:26 2025 +0200 [bugfix] fix width of fullwidth media gallery commit9923c1b6daAuthor: Zoë Bijl <code@moiety.me> Date: Mon Oct 20 15:17:25 2025 +0200 [chore] remove `fixedWith` from icons commit935d6b73efAuthor: Zoë Bijl <code@moiety.me> Date: Mon Oct 20 15:09:43 2025 +0200 [chore] lint commit776f02bd5fAuthor: Zoë Bijl <code@moiety.me> Date: Mon Oct 20 15:07:52 2025 +0200 [bugfix] correctly align multiline column-header button commitd988d35671Author: Zoë Bijl <code@moiety.me> Date: Mon Oct 20 15:04:35 2025 +0200 [feat] add new size variables commit34bcbb669dAuthor: Zoë Bijl <code@moiety.me> Date: Sun Oct 19 23:47:20 2025 +0200 [bugfix] re-enable hicolor privacy icons commit97f2cb8f69Author: Zoë Bijl <code@moiety.me> Date: Sun Oct 19 23:26:16 2025 +0200 [bugfix] correctly align “toot” buttons commit52bcd4b6d0Author: Zoë Bijl <code@moiety.me> Date: Thu Oct 16 16:22:44 2025 +0200 [bugfix] replace `--size` with global `--size-icon` BREAKING CHANGE: any user styles that overwrote `--size` in a `,gts-icon` class will need to be updated. commit9812a2611fAuthor: Zoë Bijl <code@moiety.me> Date: Thu Oct 16 15:53:37 2025 +0200 [bugfix] further tweaks to `.poll__footer` alignment commit798d6fbf79Author: Zoë Bijl <code@moiety.me> Date: Thu Oct 16 15:38:45 2025 +0200 [bugfix] correctly align .poll__footer
142 lines
4.1 KiB
React
142 lines
4.1 KiB
React
import PropTypes from "prop-types";
|
|
|
|
import { injectIntl, defineMessages } from "react-intl";
|
|
|
|
import { Link } from "react-router-dom";
|
|
|
|
import ImmutablePropTypes from "react-immutable-proptypes";
|
|
import ImmutablePureComponent from "react-immutable-pure-component";
|
|
|
|
import { Icon } from "flavours/glitch/components/icon";
|
|
import { signOutLink } from "flavours/glitch/utils/backend_links";
|
|
import { conditionalRender } from "flavours/glitch/utils/react_helpers";
|
|
|
|
const messages = defineMessages({
|
|
community: {
|
|
defaultMessage: "Local timeline",
|
|
id: "navigation_bar.community_timeline",
|
|
},
|
|
home_timeline: {
|
|
defaultMessage: "Home",
|
|
id: "tabs_bar.home",
|
|
},
|
|
logout: {
|
|
defaultMessage: "Logout",
|
|
id: "navigation_bar.logout",
|
|
},
|
|
notifications: {
|
|
defaultMessage: "Notifications",
|
|
id: "tabs_bar.notifications",
|
|
},
|
|
public: {
|
|
defaultMessage: "Federated timeline",
|
|
id: "navigation_bar.public_timeline",
|
|
},
|
|
settings: {
|
|
defaultMessage: "App settings",
|
|
id: "navigation_bar.app_settings",
|
|
},
|
|
start: {
|
|
defaultMessage: "Getting started",
|
|
id: "getting_started.heading",
|
|
},
|
|
});
|
|
|
|
class Header extends ImmutablePureComponent {
|
|
|
|
static propTypes = {
|
|
columns: ImmutablePropTypes.list,
|
|
unreadNotifications: PropTypes.number,
|
|
showNotificationsBadge: PropTypes.bool,
|
|
intl: PropTypes.object,
|
|
onSettingsClick: PropTypes.func,
|
|
onLogout: PropTypes.func.isRequired,
|
|
};
|
|
|
|
handleLogoutClick = e => {
|
|
e.preventDefault();
|
|
e.stopPropagation();
|
|
|
|
this.props.onLogout();
|
|
|
|
return false;
|
|
};
|
|
|
|
render () {
|
|
const { intl, columns, unreadNotifications, showNotificationsBadge, onSettingsClick } = this.props;
|
|
|
|
// Only renders the component if the column isn't being shown.
|
|
const renderForColumn = conditionalRender.bind(null,
|
|
columnId => !columns || !columns.some(
|
|
column => column.get("id") === columnId,
|
|
),
|
|
);
|
|
|
|
// The result.
|
|
return (
|
|
<nav className='drawer__header'>
|
|
<Link
|
|
aria-label={intl.formatMessage(messages.start)}
|
|
title={intl.formatMessage(messages.start)}
|
|
to='/getting-started'
|
|
className='drawer__tab'
|
|
><Icon id='gts-simple' /></Link>
|
|
{renderForColumn("HOME", (
|
|
<Link
|
|
aria-label={intl.formatMessage(messages.home_timeline)}
|
|
title={intl.formatMessage(messages.home_timeline)}
|
|
to='/home'
|
|
className='drawer__tab'
|
|
><Icon id='house-line' /></Link>
|
|
))}
|
|
{renderForColumn("NOTIFICATIONS", (
|
|
<Link
|
|
aria-label={intl.formatMessage(messages.notifications)}
|
|
title={intl.formatMessage(messages.notifications)}
|
|
to='/notifications'
|
|
className='drawer__tab'
|
|
>
|
|
<span className='icon-badge-wrapper'>
|
|
<Icon id='bell' />
|
|
{ showNotificationsBadge && unreadNotifications > 0 && <div className='icon-badge' />}
|
|
</span>
|
|
</Link>
|
|
))}
|
|
{renderForColumn("COMMUNITY", (
|
|
<Link
|
|
aria-label={intl.formatMessage(messages.community)}
|
|
title={intl.formatMessage(messages.community)}
|
|
to='/public/local'
|
|
className='drawer__tab'
|
|
><Icon id='users' /></Link>
|
|
))}
|
|
{renderForColumn("PUBLIC", (
|
|
<Link
|
|
aria-label={intl.formatMessage(messages.public)}
|
|
title={intl.formatMessage(messages.public)}
|
|
to='/public'
|
|
className='drawer__tab'
|
|
><Icon id='planet' /></Link>
|
|
))}
|
|
<a
|
|
aria-label={intl.formatMessage(messages.settings)}
|
|
onClick={onSettingsClick}
|
|
href='/settings/preferences'
|
|
title={intl.formatMessage(messages.settings)}
|
|
className='drawer__tab'
|
|
><Icon id='gear' /></a>
|
|
<a
|
|
aria-label={intl.formatMessage(messages.logout)}
|
|
onClick={this.handleLogoutClick}
|
|
href={signOutLink}
|
|
title={intl.formatMessage(messages.logout)}
|
|
className='drawer__tab'
|
|
><Icon id='sign-out' /></a>
|
|
</nav>
|
|
);
|
|
}
|
|
|
|
}
|
|
|
|
export default injectIntl(Header);
|