mirror of
https://github.com/Steffo99/sophon.git
synced 2024-12-23 15:24:21 +00:00
46 lines
1.3 KiB
TypeScript
46 lines
1.3 KiB
TypeScript
|
import {faBook} from "@fortawesome/free-solid-svg-icons"
|
||
|
import {FontAwesomeIcon} from "@fortawesome/react-fontawesome"
|
||
|
import {Box, BringAttention as B, Code, Heading, Idiomatic as I} from "@steffo/bluelib-react"
|
||
|
import * as React from "react"
|
||
|
import {useCacheContext} from "../../contexts/cache"
|
||
|
import {useNotebookContext} from "../../contexts/notebook"
|
||
|
|
||
|
|
||
|
export function NotebookDescriptionBox(): JSX.Element | null {
|
||
|
const cache = useCacheContext()
|
||
|
const notebook = useNotebookContext()
|
||
|
|
||
|
if(notebook) {
|
||
|
var locked_by = cache?.getUserById(notebook.value.locked_by)?.value.username
|
||
|
}
|
||
|
|
||
|
const locked_text =
|
||
|
React.useMemo(
|
||
|
() => {
|
||
|
if(!locked_by) {
|
||
|
return null
|
||
|
}
|
||
|
|
||
|
return (
|
||
|
<>, currently <B>locked by {locked_by}</B></>
|
||
|
)
|
||
|
},
|
||
|
[locked_by],
|
||
|
)
|
||
|
|
||
|
if(!notebook) {
|
||
|
return null
|
||
|
}
|
||
|
|
||
|
return (
|
||
|
<Box>
|
||
|
<Heading level={3}>
|
||
|
<FontAwesomeIcon icon={faBook}/> About <I>{notebook.value.name}</I>
|
||
|
</Heading>
|
||
|
<p>
|
||
|
A <B>{notebook.value.is_running ? "running" : "stopped"}</B> notebook using <B><Code>{notebook.value.container_image}</Code></B>{locked_text}.
|
||
|
</p>
|
||
|
</Box>
|
||
|
)
|
||
|
}
|