mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-28 05:54:43 -04:00
51 lines
2 KiB
TypeScript
51 lines
2 KiB
TypeScript
import React from 'react'
|
|
import { Button, Nav, Navbar } from 'react-bootstrap'
|
|
import { Trans, useTranslation } from 'react-i18next'
|
|
import { useSelector } from 'react-redux'
|
|
import { useParams } from 'react-router'
|
|
import { Link } from 'react-router-dom'
|
|
import { ApplicationState } from '../../../redux'
|
|
import { ForkAwesomeIcon } from '../../common/fork-awesome/fork-awesome-icon'
|
|
import { ShowIf } from '../../common/show-if/show-if'
|
|
import { SignInButton } from '../../landing-layout/navigation/sign-in-button'
|
|
import { UserDropdown } from '../../landing-layout/navigation/user-dropdown'
|
|
import { SyncScrollButton } from './sync-scroll-button/sync-scroll-button'
|
|
import { EditorPathParams } from '../editor'
|
|
import { DarkModeButton } from './dark-mode-button'
|
|
import { EditorViewMode } from './editor-view-mode'
|
|
import { HelpButton } from './help-button/help-button'
|
|
import { NavbarBranding } from './navbar-branding'
|
|
|
|
export const AppBar: React.FC = () => {
|
|
const { t } = useTranslation()
|
|
const { id } = useParams<EditorPathParams>()
|
|
const userExists = useSelector((state: ApplicationState) => !!state.user)
|
|
|
|
return (
|
|
<Navbar bg={'light'}>
|
|
<Nav className="mr-auto d-flex align-items-center">
|
|
<NavbarBranding/>
|
|
<EditorViewMode/>
|
|
<SyncScrollButton/>
|
|
<DarkModeButton/>
|
|
<Link to={`/p/${id}`} target='_blank'>
|
|
<Button title={t('editor.documentBar.slideMode')} className="ml-2 text-secondary" size="sm" variant="outline-light">
|
|
<ForkAwesomeIcon icon="television"/>
|
|
</Button>
|
|
</Link>
|
|
<HelpButton/>
|
|
</Nav>
|
|
<Nav className="d-flex align-items-center text-secondary">
|
|
<Button className="mx-2" size="sm" variant="primary">
|
|
<ForkAwesomeIcon icon="plus"/> <Trans i18nKey="editor.documentBar.new"/>
|
|
</Button>
|
|
<ShowIf condition={!userExists}>
|
|
<SignInButton size={'sm'} />
|
|
</ShowIf>
|
|
<ShowIf condition={userExists}>
|
|
<UserDropdown />
|
|
</ShowIf>
|
|
</Nav>
|
|
</Navbar>
|
|
)
|
|
}
|