You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1.2 KiB
44 lines
1.2 KiB
import { useCallback } from 'react'; |
|
|
|
import { FormattedMessage } from 'react-intl'; |
|
|
|
import ArrowBackIcon from '@/material-icons/400-24px/arrow_back.svg?react'; |
|
import { Icon } from 'mastodon/components/icon'; |
|
import { ButtonInTabsBar } from 'mastodon/features/ui/util/columns_context'; |
|
|
|
import { useAppHistory } from './router'; |
|
|
|
type OnClickCallback = () => void; |
|
|
|
function useHandleClick(onClick?: OnClickCallback) { |
|
const history = useAppHistory(); |
|
|
|
return useCallback(() => { |
|
if (onClick) { |
|
onClick(); |
|
} else if (history.location.state?.fromMastodon) { |
|
history.goBack(); |
|
} else { |
|
history.push('/'); |
|
} |
|
}, [history, onClick]); |
|
} |
|
|
|
export const ColumnBackButton: React.FC<{ onClick?: OnClickCallback }> = ({ |
|
onClick, |
|
}) => { |
|
const handleClick = useHandleClick(onClick); |
|
|
|
const component = ( |
|
<button onClick={handleClick} className='column-back-button'> |
|
<Icon |
|
id='chevron-left' |
|
icon={ArrowBackIcon} |
|
className='column-back-button__icon' |
|
/> |
|
<FormattedMessage id='column_back_button.label' defaultMessage='Back' /> |
|
</button> |
|
); |
|
|
|
return <ButtonInTabsBar>{component}</ButtonInTabsBar>; |
|
};
|
|
|