feat: add shortcut app logs on system monitor (#3150)
This commit is contained in:
parent
e12549b9b8
commit
34ad977c26
@ -1,14 +1,22 @@
|
|||||||
import { Fragment, useEffect, useState } from 'react'
|
import { Fragment, useEffect, useState } from 'react'
|
||||||
|
|
||||||
import { Progress } from '@janhq/joi'
|
import { Button, Progress } from '@janhq/joi'
|
||||||
import { useClickOutside } from '@janhq/joi'
|
import { useClickOutside } from '@janhq/joi'
|
||||||
import { useAtom, useAtomValue } from 'jotai'
|
import { useAtom, useAtomValue } from 'jotai'
|
||||||
import { MonitorIcon, XIcon, ChevronDown, ChevronUp } from 'lucide-react'
|
import {
|
||||||
|
MonitorIcon,
|
||||||
|
XIcon,
|
||||||
|
ChevronDown,
|
||||||
|
ChevronUp,
|
||||||
|
FolderOpenIcon,
|
||||||
|
} from 'lucide-react'
|
||||||
|
|
||||||
import { twMerge } from 'tailwind-merge'
|
import { twMerge } from 'tailwind-merge'
|
||||||
|
|
||||||
import useGetSystemResources from '@/hooks/useGetSystemResources'
|
import useGetSystemResources from '@/hooks/useGetSystemResources'
|
||||||
|
|
||||||
|
import { usePath } from '@/hooks/usePath'
|
||||||
|
|
||||||
import { toGibibytes } from '@/utils/converter'
|
import { toGibibytes } from '@/utils/converter'
|
||||||
|
|
||||||
import TableActiveModel from './TableActiveModel'
|
import TableActiveModel from './TableActiveModel'
|
||||||
@ -28,6 +36,7 @@ const SystemMonitor = () => {
|
|||||||
const usedRam = useAtomValue(usedRamAtom)
|
const usedRam = useAtomValue(usedRamAtom)
|
||||||
const cpuUsage = useAtomValue(cpuUsageAtom)
|
const cpuUsage = useAtomValue(cpuUsageAtom)
|
||||||
const gpus = useAtomValue(gpusAtom)
|
const gpus = useAtomValue(gpusAtom)
|
||||||
|
const { onRevealInFinder } = usePath()
|
||||||
const [showFullScreen, setShowFullScreen] = useState(false)
|
const [showFullScreen, setShowFullScreen] = useState(false)
|
||||||
const ramUtilitized = useAtomValue(ramUtilitizedAtom)
|
const ramUtilitized = useAtomValue(ramUtilitizedAtom)
|
||||||
const [showSystemMonitorPanel, setShowSystemMonitorPanel] = useAtom(
|
const [showSystemMonitorPanel, setShowSystemMonitorPanel] = useAtom(
|
||||||
@ -64,7 +73,7 @@ const SystemMonitor = () => {
|
|||||||
<div
|
<div
|
||||||
ref={setControl}
|
ref={setControl}
|
||||||
className={twMerge(
|
className={twMerge(
|
||||||
'flex cursor-pointer items-center gap-x-1 rounded-l px-1 py-0.5 hover:bg-[hsla(var(--secondary-bg))]',
|
'flex cursor-pointer items-center gap-x-1 rounded px-1 py-0.5 hover:bg-[hsla(var(--secondary-bg))]',
|
||||||
showSystemMonitorPanel && 'bg-[hsla(var(--secondary-bg))]'
|
showSystemMonitorPanel && 'bg-[hsla(var(--secondary-bg))]'
|
||||||
)}
|
)}
|
||||||
onClick={() => {
|
onClick={() => {
|
||||||
@ -89,6 +98,12 @@ const SystemMonitor = () => {
|
|||||||
Running Models
|
Running Models
|
||||||
</h6>
|
</h6>
|
||||||
<div className="unset-drag flex cursor-pointer items-center gap-x-2">
|
<div className="unset-drag flex cursor-pointer items-center gap-x-2">
|
||||||
|
<div
|
||||||
|
className="flex cursor-pointer items-center gap-x-1 rounded px-1 py-0.5 hover:bg-[hsla(var(--secondary-bg))]"
|
||||||
|
onClick={() => onRevealInFinder('Logs')}
|
||||||
|
>
|
||||||
|
<FolderOpenIcon size={12} /> App Log
|
||||||
|
</div>
|
||||||
{showFullScreen ? (
|
{showFullScreen ? (
|
||||||
<ChevronDown
|
<ChevronDown
|
||||||
size={20}
|
size={20}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user