[Glitch] Add "More" to the sidebar menu with links to mutes, blocks, and so on

Port f53bb4cd7d to glitch-soc

Signed-off-by: Claire <claire.github-309c@sitedethib.com>
This commit is contained in:
Eugen Rochko
2025-06-11 18:12:04 +02:00
committed by Claire
parent 3166396a16
commit c3ca5d49cf
6 changed files with 147 additions and 157 deletions

View File

@@ -9,8 +9,6 @@ import { IconButton } from 'flavours/glitch/components/icon_button';
import { me } from 'flavours/glitch/initial_state';
import { useAppDispatch, useAppSelector } from 'flavours/glitch/store';
import { ActionBar } from './action_bar';
const messages = defineMessages({
cancel: { id: 'reply_indicator.cancel', defaultMessage: 'Cancel' },
});
@@ -33,15 +31,14 @@ export const NavigationBar: React.FC = () => {
return (
<div className='navigation-bar'>
<Account id={me} minimal />
{isReplying ? (
{isReplying && (
<IconButton
title={intl.formatMessage(messages.cancel)}
icon=''
iconComponent={CloseIcon}
onClick={handleCancelClick}
/>
) : (
<ActionBar />
)}
</div>
);