From ca2a0c3c586140d6ff2148c7ec4ffdb7f72292e2 Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Fri, 15 Oct 2021 17:22:11 +0200 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20Create=20NotebookDescriptionBox?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/App.tsx | 2 + .../notebook/NotebookDescriptionBox.tsx | 45 +++++++++++++++++++ 2 files changed, 47 insertions(+) create mode 100644 frontend/src/components/notebook/NotebookDescriptionBox.tsx diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx index 41be85c..589af0a 100644 --- a/frontend/src/App.tsx +++ b/frontend/src/App.tsx @@ -17,6 +17,7 @@ import {InstanceDescriptionBox} from "./components/instance/InstanceDescriptionB import {InstanceFormBox} from "./components/instance/InstanceFormBox" import {InstanceRouter} from "./components/instance/InstanceRouter" import {NotebookCreateBox} from "./components/notebook/NotebookCreateBox" +import {NotebookDescriptionBox} from "./components/notebook/NotebookDescriptionBox" import {NotebookListBox} from "./components/notebook/NotebookListBox" import {NotebookRouter} from "./components/notebook/NotebookRouter" import {DebugBox} from "./components/placeholder/DebugBox" @@ -81,6 +82,7 @@ function App({..._}: RouteComponentProps) { } selectedRoute={({selection}) => <> + diff --git a/frontend/src/components/notebook/NotebookDescriptionBox.tsx b/frontend/src/components/notebook/NotebookDescriptionBox.tsx new file mode 100644 index 0000000..868768e --- /dev/null +++ b/frontend/src/components/notebook/NotebookDescriptionBox.tsx @@ -0,0 +1,45 @@ +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 locked by {locked_by} + ) + }, + [locked_by], + ) + + if(!notebook) { + return null + } + + return ( + + +  About {notebook.value.name} + +

+ A {notebook.value.is_running ? "running" : "stopped"} notebook using {notebook.value.container_image}{locked_text}. +

+
+ ) +}