Skip to content

Commit

Permalink
Reorganize sidebar. Move not-implemented tabs to More. Spacing for ML…
Browse files Browse the repository at this point in the history
…Edge
  • Loading branch information
NotChristianGarcia committed Aug 14, 2024
1 parent bdb9213 commit 9d538a6
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 12 deletions.
6 changes: 3 additions & 3 deletions packages/icicle-tapisui-extension/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,12 @@ const extension = createExtension({
'ml-edge',
'open-web-ui',
'jupyter-lab',
'data-labeler',
'digital-ag',
'visual-analytics',
'smart-scheduler',
'training-catalog',
'ckn-dashboard',
//'data-labeler',
//'smart-scheduler',
//'digital-ag',
],
authMethods: ['implicit', 'password'],
logo: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { SectionHeader } from '@tapis/tapisui-common';
export const DataLabeler: React.FC = () => {
return (
<div>
<SectionHeader>Data Labeler</SectionHeader>
<SectionHeader>Data Labeler - Not Implemented</SectionHeader>
</div>
);
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { SectionHeader } from '@tapis/tapisui-common';
export const DigitalAg: React.FC = () => {
return (
<div>
<SectionHeader>Digital Ag</SectionHeader>
<SectionHeader>Digital Ag - Not Implemented</SectionHeader>
</div>
);
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,17 @@ import { SectionHeader } from '@tapis/tapisui-common';

const JupyterLab: React.FC = () => {
return (
<div>
<SectionHeader>Jupyter Lab</SectionHeader>
<div
style={{
width: '100%',
height: '100%',
display: 'flex',
flexDirection: 'column',
overflow: 'hidden',
}}
>
<iframe
style={{ width: '100%', height: '800px', border: 'none' }}
style={{ flexGrow: 1, border: 'none' }}
src="https://jupyterlab.pods.tacc.develop.tapis.io/"
/>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,11 @@ const Layout: React.FC = () => {
);

const body = (
<LayoutBody>
<Router />
</LayoutBody>
<div style={{ marginLeft: '1rem', flex: 1, overflow: 'auto' }}>
<LayoutBody>
<Router />
</LayoutBody>
</div>
);

return <PageLayout top={header} right={body} />;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { SectionHeader } from '@tapis/tapisui-common';
const SmartScheduler: React.FC = () => {
return (
<div>
<SectionHeader>Smart Scheduler</SectionHeader>
<SectionHeader>Smart Scheduler - Not Implemented</SectionHeader>
</div>
);
};
Expand Down

0 comments on commit 9d538a6

Please sign in to comment.