Faisal Amir 93ce01051c
fix: wrong direction icon collapse right panel (#2967)
* fix: wrong direction icon collapse right panel

* fix: add back social icon

* fix: modal troubleshoot

* fix: shadow transparent theme

* fix: enable nitro_tensorrt_llm

* fix: disabled model dropdown when local server running
2024-05-30 18:14:16 +07:00

69 lines
1.7 KiB
TypeScript

import React, { useEffect, useState } from 'react'
import { Button } from '@janhq/joi'
import { CopyIcon, CheckIcon } from 'lucide-react'
import { useClipboard } from '@/hooks/useClipboard'
import { useLogs } from '@/hooks/useLogs'
const DeviceSpecs = () => {
const { getLogs } = useLogs()
const [logs, setLogs] = useState<string[]>([])
useEffect(() => {
getLogs('app').then((log) => {
if (typeof log?.split === 'function') {
setLogs(
log.split(/\r?\n|\r|\n/g).filter((e) => e.includes('[SPECS]::'))
)
}
})
// eslint-disable-next-line react-hooks/exhaustive-deps
}, [])
const clipboard = useClipboard({ timeout: 1000 })
return (
<div className="max-w-[50vw] p-4 pb-0">
<div className="absolute right-2 top-7">
<Button
theme="ghost"
variant="outline"
onClick={() => {
clipboard.copy(logs.join('\n') ?? '')
}}
>
<div className="flex items-center space-x-2">
{clipboard.copied ? (
<>
<CheckIcon size={14} className="text-green-600" />
<span>Copying...</span>
</>
) : (
<>
<CopyIcon size={14} />
<span>Copy All</span>
</>
)}
</div>
</Button>
</div>
<div className="flex h-full w-full flex-col">
<code className="inline-block whitespace-break-spaces text-[13px]">
{logs.map((log, i) => {
return (
<p key={i} className="my-2 leading-relaxed">
{log}
</p>
)
})}
</code>
</div>
</div>
)
}
export default DeviceSpecs