* chore: building out perf testing * chore: adding my printing code for the different formats of the marks * feat: adding invocation count table * fix: markOnce iunstead * fix: typescript additions * fix: adding more types * chore: adding telemetry panel as MVP, gonna remove the pane * chore: view telemetry from command bar in file route and home route * fix: deleting unused imports * fix: deleting some unused files * fix: auto cleanup * chore: adding other routes, these will need to be moved... * chore: moving some printing logic around and unit testing some of it * fix: moving command init * fix: removing debugging marks * fix: adding some comments * fix: fixed a bug with generating the go to page commands * chore: adding will pages load within the router config * chore: implementing marks for routes * fix: auto fixes and checkers * chore: implemented a route watcher at the root level... * fix: auto fixes, removing unused code * chore: timing for syntax highlighting and auto fixes * fix: didAuth issue and syntax highlighting in the packaged application. Constructor name gets renamed * fix: fixing typescript checks * chore: adding mag bar chart icon for telemetry * A snapshot a day keeps the bugs away! 📷🐛 (OS: ubuntu-latest) * A snapshot a day keeps the bugs away! 📷🐛 (OS: ubuntu-latest) * A snapshot a day keeps the bugs away! 📷🐛 (OS: windows-latest) * chore: swapped telemetry icon for stopwatch * A snapshot a day keeps the bugs away! 📷🐛 (OS: windows-latest) * A snapshot a day keeps the bugs away! 📷🐛 (OS: ubuntu-latest) * A snapshot a day keeps the bugs away! 📷🐛 (OS: windows-latest) * A snapshot a day keeps the bugs away! 📷🐛 (OS: windows-latest) * A snapshot a day keeps the bugs away! 📷🐛 (OS: ubuntu-latest) * chore: writing telemetry to disk * fix: auto fixers * chore: getting args parsed for cli flags and writing telemetry file * A snapshot a day keeps the bugs away! 📷🐛 (OS: ubuntu-latest) * chore: swapped mark for markOnce since we infinitely write marks to a JS array... need to solve this run time marking in another way. We only need this for startup right now * A snapshot a day keeps the bugs away! 📷🐛 (OS: ubuntu-latest) * A snapshot a day keeps the bugs away! 📷🐛 (OS: ubuntu-latest) * A snapshot a day keeps the bugs away! 📷🐛 (OS: windows-latest) * A snapshot a day keeps the bugs away! 📷🐛 (OS: windows-latest) * chore: writing raw marks to disk as well * A snapshot a day keeps the bugs away! 📷🐛 (OS: ubuntu-latest) * A snapshot a day keeps the bugs away! 📷🐛 (OS: windows-latest) * A snapshot a day keeps the bugs away! 📷🐛 (OS: windows-latest) * A snapshot a day keeps the bugs away! 📷🐛 (OS: ubuntu-latest) * A snapshot a day keeps the bugs away! 📷🐛 (OS: windows-latest) * fix: cleaned up the testing names * A snapshot a day keeps the bugs away! 📷🐛 (OS: ubuntu-latest) * A snapshot a day keeps the bugs away! 📷🐛 (OS: ubuntu-latest) * Fix fmt and codespell * A snapshot a day keeps the bugs away! 📷🐛 (OS: ubuntu-latest-8-cores) * A snapshot a day keeps the bugs away! 📷🐛 (OS: windows-latest-8-cores) * A snapshot a day keeps the bugs away! 📷🐛 (OS: ubuntu-latest-8-cores) * A snapshot a day keeps the bugs away! 📷🐛 (OS: ubuntu-latest-8-cores) * A snapshot a day keeps the bugs away! 📷🐛 (OS: windows-latest-8-cores) * A snapshot a day keeps the bugs away! 📷🐛 (OS: windows-latest-8-cores) * A snapshot a day keeps the bugs away! 📷🐛 (OS: windows-latest-8-cores) * A snapshot a day keeps the bugs away! 📷🐛 (OS: ubuntu-latest-8-cores) * fix: moving this route loader data stuff * chore: adding comment * fix: fmt * A snapshot a day keeps the bugs away! 📷🐛 (OS: windows-latest-8-cores) * empty :( * A snapshot a day keeps the bugs away! 📷🐛 (OS: windows-latest-8-cores) * empty :( --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: 49fl <ircsurfer33@gmail.com>
142 lines
4.6 KiB
TypeScript
142 lines
4.6 KiB
TypeScript
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'
|
|
import { coreDump } from 'lang/wasm'
|
|
import toast from 'react-hot-toast'
|
|
import { CoreDumpManager } from 'lib/coredump'
|
|
import openWindow, { openExternalBrowserIfDesktop } from 'lib/openWindow'
|
|
import { NetworkMachineIndicator } from './NetworkMachineIndicator'
|
|
import { ModelStateIndicator } from './ModelStateIndicator'
|
|
import { reportRejection } from 'lib/trap'
|
|
|
|
export function LowerRightControls({
|
|
children,
|
|
coreDumpManager,
|
|
}: {
|
|
children?: React.ReactNode
|
|
coreDumpManager?: CoreDumpManager
|
|
}) {
|
|
const location = useLocation()
|
|
const filePath = useAbsoluteFilePath()
|
|
|
|
const linkOverrideClassName =
|
|
'!text-chalkboard-70 hover:!text-chalkboard-80 dark:!text-chalkboard-40 dark:hover:!text-chalkboard-30'
|
|
|
|
function reportbug(event: {
|
|
preventDefault: () => void
|
|
stopPropagation: () => void
|
|
}) {
|
|
event?.preventDefault()
|
|
event?.stopPropagation()
|
|
|
|
if (!coreDumpManager) {
|
|
// open default reporting option
|
|
openWindow(
|
|
'https://github.com/KittyCAD/modeling-app/issues/new/choose'
|
|
).catch(reportRejection)
|
|
} else {
|
|
toast
|
|
.promise(
|
|
coreDump(coreDumpManager, true),
|
|
{
|
|
loading: 'Preparing bug report...',
|
|
success: 'Bug report opened in new window',
|
|
error: 'Unable to export a core dump. Using default reporting.',
|
|
},
|
|
{
|
|
success: {
|
|
// Note: this extended duration is especially important for Playwright e2e testing
|
|
// default duration is 2000 - https://react-hot-toast.com/docs/toast#default-durations
|
|
duration: 6000,
|
|
},
|
|
}
|
|
)
|
|
.catch((err: Error) => {
|
|
if (err) {
|
|
openWindow(
|
|
'https://github.com/KittyCAD/modeling-app/issues/new/choose'
|
|
).catch(reportRejection)
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
return (
|
|
<section className="fixed bottom-2 right-2 flex flex-col items-end gap-3 pointer-events-none">
|
|
{children}
|
|
<menu className="flex items-center justify-end gap-3 pointer-events-auto">
|
|
{!location.pathname.startsWith(PATHS.HOME) && <ModelStateIndicator />}
|
|
<a
|
|
onClick={openExternalBrowserIfDesktop(
|
|
`https://github.com/KittyCAD/modeling-app/releases/tag/v${APP_VERSION}`
|
|
)}
|
|
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
|
|
onClick={reportbug}
|
|
href="https://github.com/KittyCAD/modeling-app/issues/new/choose"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
>
|
|
<CustomIcon
|
|
name="bug"
|
|
className={`w-5 h-5 ${linkOverrideClassName}`}
|
|
/>
|
|
<Tooltip position="top" contentClassName="text-xs">
|
|
Report a bug
|
|
</Tooltip>
|
|
</a>
|
|
<Link
|
|
to={
|
|
location.pathname.includes(PATHS.FILE)
|
|
? filePath + PATHS.TELEMETRY + '?tab=project'
|
|
: PATHS.HOME + PATHS.TELEMETRY
|
|
}
|
|
data-testid="telemetry-link"
|
|
>
|
|
<CustomIcon
|
|
name="stopwatch"
|
|
className={`w-5 h-5 ${linkOverrideClassName}`}
|
|
/>
|
|
<span className="sr-only">Telemetry</span>
|
|
<Tooltip position="top" contentClassName="text-xs">
|
|
Telemetry
|
|
</Tooltip>
|
|
</Link>
|
|
<Link
|
|
to={
|
|
location.pathname.includes(PATHS.FILE)
|
|
? filePath + PATHS.SETTINGS + '?tab=project'
|
|
: PATHS.HOME + PATHS.SETTINGS
|
|
}
|
|
data-testid="settings-link"
|
|
>
|
|
<CustomIcon
|
|
name="settings"
|
|
className={`w-5 h-5 ${linkOverrideClassName}`}
|
|
/>
|
|
<span className="sr-only">Settings</span>
|
|
<Tooltip position="top" contentClassName="text-xs">
|
|
Settings
|
|
</Tooltip>
|
|
</Link>
|
|
<NetworkMachineIndicator className={linkOverrideClassName} />
|
|
{!location.pathname.startsWith(PATHS.HOME) && (
|
|
<NetworkHealthIndicator />
|
|
)}
|
|
<HelpMenu />
|
|
</menu>
|
|
</section>
|
|
)
|
|
}
|