2024-04-19 10:50:58 -04:00
|
|
|
import { APP_VERSION } from 'routes/Settings'
|
|
|
|
import { CustomIcon } from 'components/CustomIcon'
|
|
|
|
import Tooltip from 'components/Tooltip'
|
|
|
|
import { paths } from 'lib/paths'
|
|
|
|
import { NetworkHealthIndicator } from 'components/NetworkHealthIndicator'
|
|
|
|
import { HelpMenu } from './HelpMenu'
|
|
|
|
import { Link, useLocation } from 'react-router-dom'
|
|
|
|
import { useAbsoluteFilePath } from 'hooks/useAbsoluteFilePath'
|
|
|
|
|
|
|
|
export function LowerRightControls(props: React.PropsWithChildren) {
|
|
|
|
const location = useLocation()
|
|
|
|
const filePath = useAbsoluteFilePath()
|
|
|
|
const linkOverrideClassName =
|
|
|
|
'!text-chalkboard-70 hover:!text-chalkboard-80 dark:!text-chalkboard-40 dark:hover:!text-chalkboard-30'
|
|
|
|
|
|
|
|
return (
|
2024-05-23 22:02:25 +02:00
|
|
|
<section className="fixed bottom-2 right-2 flex flex-col items-end gap-3">
|
2024-04-19 10:50:58 -04:00
|
|
|
{props.children}
|
|
|
|
<menu className="flex items-center justify-end gap-3">
|
|
|
|
<a
|
|
|
|
href={`https://github.com/KittyCAD/modeling-app/releases/tag/v${APP_VERSION}`}
|
|
|
|
target="_blank"
|
|
|
|
rel="noopener noreferrer"
|
|
|
|
className={'!no-underline font-mono text-xs ' + linkOverrideClassName}
|
|
|
|
>
|
|
|
|
v{APP_VERSION}
|
|
|
|
</a>
|
|
|
|
<a
|
|
|
|
href="https://github.com/KittyCAD/modeling-app/issues/new/choose"
|
|
|
|
target="_blank"
|
|
|
|
rel="noopener noreferrer"
|
|
|
|
>
|
|
|
|
<CustomIcon
|
|
|
|
name="exclamationMark"
|
|
|
|
className={`w-5 h-5 ${linkOverrideClassName}`}
|
|
|
|
/>
|
|
|
|
<Tooltip position="top">Report a bug</Tooltip>
|
|
|
|
</a>
|
|
|
|
<Link
|
|
|
|
to={
|
|
|
|
location.pathname.includes(paths.FILE)
|
|
|
|
? filePath + paths.SETTINGS
|
|
|
|
: paths.HOME + paths.SETTINGS
|
|
|
|
}
|
|
|
|
>
|
|
|
|
<CustomIcon
|
|
|
|
name="settings"
|
|
|
|
className={`w-5 h-5 ${linkOverrideClassName}`}
|
|
|
|
/>
|
|
|
|
<Tooltip position="top">Settings</Tooltip>
|
|
|
|
</Link>
|
|
|
|
<NetworkHealthIndicator />
|
|
|
|
<HelpMenu />
|
|
|
|
</menu>
|
|
|
|
</section>
|
|
|
|
)
|
|
|
|
}
|