Skip to content

Commit

Permalink
Merge pull request #164 from flatironinstitute/tab-tweaks
Browse files Browse the repository at this point in the history
Tweaks to Tab UI
  • Loading branch information
WardBrian authored Jul 29, 2024
2 parents 07586d1 + 03e304d commit 784e70c
Show file tree
Hide file tree
Showing 8 changed files with 75 additions and 107 deletions.
2 changes: 1 addition & 1 deletion gui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@
"test-watch": "vitest"
},
"dependencies": {
"@devbookhq/splitter": "^1.4.2",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@fi-sci/misc": "^0.0.8",
"@fi-sci/modal-window": "^0.0.2",
"@geoffcox/react-splitter": "^2.1.2",
"@monaco-editor/react": "^4.6.0",
"@mui/icons-material": "^5.15.17",
"@mui/material": "^5.15.17",
Expand Down
39 changes: 22 additions & 17 deletions gui/src/app/FileEditor/StanFileEditor.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Split } from "@geoffcox/react-splitter";
import { AutoFixHigh, Cancel, Settings } from "@mui/icons-material";
import { SplitDirection, Splitter } from "@SpComponents/Splitter";
import StanCompileResultWindow from "@SpComponents/StanCompileResultWindow";
import TextEditor from "@SpComponents/TextEditor";
import { ToolbarItem } from "@SpComponents/ToolBar";
Expand Down Expand Up @@ -216,25 +216,30 @@ const StanFileEditor: FunctionComponent<Props> = ({
<></>
);

const initialSizes = syntaxWindowVisible ? [60, 40] : [100, 0];
const editor = (
<TextEditor
language="stan"
label={fileName}
text={fileContent}
onSaveText={onSaveContent}
editedText={editedFileContent}
onSetEditedText={setEditedFileContent}
readOnly={!isCompiling ? readOnly : true}
toolbarItems={toolbarItems}
codeMarkers={stancErrorsToCodeMarkers(stancErrors)}
contentOnEmpty="Begin editing or select an example from the left panel"
/>
);

return (
<Splitter direction={SplitDirection.Vertical} initialSizes={initialSizes}>
<TextEditor
// language="stan"
language="stan"
label={fileName}
text={fileContent}
onSaveText={onSaveContent}
editedText={editedFileContent}
onSetEditedText={setEditedFileContent}
readOnly={!isCompiling ? readOnly : true}
toolbarItems={toolbarItems}
codeMarkers={stancErrorsToCodeMarkers(stancErrors)}
contentOnEmpty="Begin editing or select an example from the left panel"
/>
<Split
horizontal
initialPrimarySize={syntaxWindowVisible ? "60%" : "100%"}
splitterSize={syntaxWindowVisible ? "7px" : "0px"}
>
{editor}
{window}
</Splitter>
</Split>
);
};

Expand Down
6 changes: 3 additions & 3 deletions gui/src/app/Scripting/PlottingScriptEditor.tsx
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
import { FunctionComponent, RefObject } from "react";
import ScriptEditor, { ScriptEditorProps } from "./ScriptEditor";
import { SplitDirection, Splitter } from "@SpComponents/Splitter";
import { Split } from "@geoffcox/react-splitter";

const PlottingScriptEditor: FunctionComponent<
ScriptEditorProps & { imagesRef: RefObject<HTMLDivElement> }
> = (props) => {
return (
<Splitter direction={SplitDirection.Horizontal}>
<Split>
<ScriptEditor {...props} />
<ImageOutputWindow imagesRef={props.imagesRef} />
</Splitter>
</Split>
);
};

Expand Down
6 changes: 3 additions & 3 deletions gui/src/app/Scripting/ScriptEditor.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { Help, PlayArrow } from "@mui/icons-material";
import { SplitDirection, Splitter } from "@SpComponents/Splitter";
import TextEditor from "@SpComponents/TextEditor";
import { ToolbarItem } from "@SpComponents/ToolBar";
import { FileNames } from "@SpCore/FileMapping";
Expand All @@ -13,6 +12,7 @@ import {
useMemo,
} from "react";
import { InterpreterStatus } from "./InterpreterTypes";
import { Split } from "@geoffcox/react-splitter";

const interpreterNames = { python: "pyodide", r: "webR" } as const;

Expand Down Expand Up @@ -92,7 +92,7 @@ const ScriptEditor: FunctionComponent<ScriptEditorProps> = ({
]);

return (
<Splitter direction={SplitDirection.Vertical} initialSizes={[60, 40]}>
<Split horizontal initialPrimarySize="60%">
<TextEditor
label={filename}
language={language}
Expand All @@ -104,7 +104,7 @@ const ScriptEditor: FunctionComponent<ScriptEditorProps> = ({
contentOnEmpty={contentOnEmpty}
/>
<ConsoleOutputWindow consoleRef={consoleRef} />
</Splitter>
</Split>
);
};

Expand Down
62 changes: 0 additions & 62 deletions gui/src/app/components/Splitter.tsx

This file was deleted.

7 changes: 6 additions & 1 deletion gui/src/app/components/TabWidget.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,12 @@ const TabWidget: FunctionComponent<TabWidgetProps> = ({ labels, children }) => {

return (
<Box display="flex" height="100%" width="100%" flexDirection="column">
<Tabs value={index} onChange={handleChange}>
<Tabs
value={index}
onChange={handleChange}
variant="scrollable"
scrollButtons="auto"
>
{labels.map((label, i) => (
<Tab key={i} label={label} />
))}
Expand Down
17 changes: 5 additions & 12 deletions gui/src/app/pages/HomePage/HomePage.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import Box from "@mui/material/Box";
import styled from "@mui/material/styles/styled";
import useMediaQuery from "@mui/material/useMediaQuery";
import { GutterTheme, SplitDirection, Splitter } from "@SpComponents/Splitter";
import StanFileEditor from "@SpComponents/StanFileEditor";
import { ProjectContext } from "@SpCore/ProjectContextProvider";
import {
Expand All @@ -23,6 +22,7 @@ import { FileNames } from "@SpCore/FileMapping";
import DataRWindow from "@SpScripting/DataGeneration/DataRWindow";
import DataPyWindow from "@SpScripting/DataGeneration/DataPyWindow";
import TextEditor from "@SpComponents/TextEditor";
import { Split } from "@geoffcox/react-splitter";

type Props = {
//
Expand Down Expand Up @@ -63,14 +63,10 @@ const HomePage: FunctionComponent<Props> = () => {
/>

<MovingBox open={leftPanelCollapsed} flex="1" minHeight="0">
<Splitter
minWidths={[80, 120]}
direction={SplitDirection.Horizontal}
gutterTheme={GutterTheme.Light}
>
<Split minPrimarySize="80px" minSecondarySize="120px">
<LeftView setCompiledMainJsUrl={setCompiledMainJsUrl} />
<RightView compiledMainJsUrl={compiledMainJsUrl} />
</Splitter>
</Split>
</MovingBox>
</Box>
);
Expand Down Expand Up @@ -103,10 +99,7 @@ const LeftView: FunctionComponent<LeftViewProps> = ({
}) => {
const { data, update } = useContext(ProjectContext);
return (
<Splitter
direction={SplitDirection.Vertical}
gutterTheme={GutterTheme.Light}
>
<Split horizontal>
<StanFileEditor
fileName={FileNames.STANFILE}
fileContent={data.stanFileContent}
Expand Down Expand Up @@ -149,7 +142,7 @@ const LeftView: FunctionComponent<LeftViewProps> = ({
readOnly={false}
contentOnEmpty={"Enter JSON data or use the data generation tab"}
/>
</Splitter>
</Split>
);
};

Expand Down
43 changes: 35 additions & 8 deletions gui/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,13 @@
dependencies:
regenerator-runtime "^0.14.0"

"@babel/runtime@^7.2.0":
version "7.25.0"
resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.25.0.tgz#3af9a91c1b739c569d5d80cc917280919c544ecb"
integrity sha512-7dRy4DwXwtzBrPbZflqxnvfxLF8kdZXPkhymtDeFoFqE6ldzjQFgYTtYIFARcLEYDrqfBfYcZt1WqFxRoyC9Rw==
dependencies:
regenerator-runtime "^0.14.0"

"@babel/template@^7.24.7":
version "7.24.7"
resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.24.7.tgz#02efcee317d0609d2c07117cb70ef8fb17ab7315"
Expand Down Expand Up @@ -288,13 +295,6 @@
style-mod "^4.1.0"
w3c-keyname "^2.2.4"

"@devbookhq/splitter@^1.4.2":
version "1.4.2"
resolved "https://registry.yarnpkg.com/@devbookhq/splitter/-/splitter-1.4.2.tgz#97fb5d015ca605847511f7420cb9d59d70b0eb89"
integrity sha512-DqJXsL7WNeDn/DyCeyoeeSpFHHoYBXscYlKNd3cJQ5d1xur73MPezHpyR2OID6Kh40TZ4KAb4hYjl5nL2+5M1g==
dependencies:
react-is "^17.0.2"

"@emotion/babel-plugin@^11.11.0":
version "11.11.0"
resolved "https://registry.yarnpkg.com/@emotion/babel-plugin/-/babel-plugin-11.11.0.tgz#c2d872b6a7767a9d176d007f5b31f7d504bb5d6c"
Expand Down Expand Up @@ -589,6 +589,13 @@
resolved "https://registry.yarnpkg.com/@floating-ui/utils/-/utils-0.2.4.tgz#1d459cee5031893a08a0e064c406ad2130cced7c"
integrity sha512-dWO2pw8hhi+WrXq1YJy2yCuWoL20PddgGaqTgVe4cOS9Q6qklXCiA1tJEqX6BEwRNSCP84/afac9hd4MS+zEUA==

"@geoffcox/react-splitter@^2.1.2":
version "2.1.2"
resolved "https://registry.yarnpkg.com/@geoffcox/react-splitter/-/react-splitter-2.1.2.tgz#cce71c0a034029714172af30df5c462b73aabf1e"
integrity sha512-+9d+VlhS/YCxqzFVqAG8+c2umDhahuR/jpykpTWtSVIcvcf42gVcyMe7tD0w+KAvZj12IJdV1dO7K1hLg15Yrg==
dependencies:
react-measure "^2.5.2"

"@humanwhocodes/config-array@^0.11.14":
version "0.11.14"
resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.11.14.tgz#d78e481a039f7566ecc9660b4ea7fe6b1fec442b"
Expand Down Expand Up @@ -2329,6 +2336,11 @@ get-intrinsic@^1.1.3, get-intrinsic@^1.2.1, get-intrinsic@^1.2.3, get-intrinsic@
has-symbols "^1.0.3"
hasown "^2.0.0"

get-node-dimensions@^1.2.1:
version "1.2.1"
resolved "https://registry.yarnpkg.com/get-node-dimensions/-/get-node-dimensions-1.2.1.tgz#fb7b4bb57060fb4247dd51c9d690dfbec56b0823"
integrity sha512-2MSPMu7S1iOTL+BOa6K1S62hB2zUAYNF/lV0gSVlOaacd087lc6nR1H1r0e3B1CerTo+RceOmi1iJW+vp21xcQ==

get-stream@^8.0.1:
version "8.0.1"
resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-8.0.1.tgz#def9dfd71742cd7754a7761ed43749a27d02eca2"
Expand Down Expand Up @@ -3490,7 +3502,7 @@ react-is@^16.13.1, react-is@^16.7.0:
resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4"
integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==

react-is@^17.0.1, react-is@^17.0.2:
react-is@^17.0.1:
version "17.0.2"
resolved "https://registry.yarnpkg.com/react-is/-/react-is-17.0.2.tgz#e691d4a8e9c789365655539ab372762b0efb54f0"
integrity sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==
Expand All @@ -3500,6 +3512,16 @@ react-is@^18.0.0, react-is@^18.2.0:
resolved "https://registry.yarnpkg.com/react-is/-/react-is-18.3.1.tgz#e83557dc12eae63a99e003a46388b1dcbb44db7e"
integrity sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==

react-measure@^2.5.2:
version "2.5.2"
resolved "https://registry.yarnpkg.com/react-measure/-/react-measure-2.5.2.tgz#4ffc410e8b9cb836d9455a9ff18fc1f0fca67f89"
integrity sha512-M+rpbTLWJ3FD6FXvYV6YEGvQ5tMayQ3fGrZhRPHrE9bVlBYfDCLuDcgNttYfk8IqfOI03jz6cbpqMRTUclQnaA==
dependencies:
"@babel/runtime" "^7.2.0"
get-node-dimensions "^1.2.1"
prop-types "^15.6.2"
resize-observer-polyfill "^1.5.0"

react-plotly.js@^2.6.0:
version "2.6.0"
resolved "https://registry.yarnpkg.com/react-plotly.js/-/react-plotly.js-2.6.0.tgz#ad6b68ee64f1b5cfa142ee92c59687f9c2c09209"
Expand Down Expand Up @@ -3602,6 +3624,11 @@ requires-port@^1.0.0:
resolved "https://registry.yarnpkg.com/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff"
integrity sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==

resize-observer-polyfill@^1.5.0:
version "1.5.1"
resolved "https://registry.yarnpkg.com/resize-observer-polyfill/-/resize-observer-polyfill-1.5.1.tgz#0e9020dd3d21024458d4ebd27e23e40269810464"
integrity sha512-LwZrotdHOo12nQuZlHEmtuXdqGoOD0OhaxopaNFxWzInpEgaLWoVuAMbTzixuosCx2nEG58ngzW3vxdWoxIgdg==

resolve-from@^4.0.0:
version "4.0.0"
resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6"
Expand Down

0 comments on commit 784e70c

Please sign in to comment.