-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5510090
commit e45cfe1
Showing
9 changed files
with
74 additions
and
95 deletions.
There are no files selected for viewing
12 changes: 12 additions & 0 deletions
12
packages/icicle-tapisui-extension/src/pages/DataLabeler/DataLabeler.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import * as React from 'react'; | ||
import { SectionHeader } from '@tapis/tapisui-common'; | ||
|
||
export const DataLabeler: React.FC = () => { | ||
return ( | ||
<div> | ||
<SectionHeader>Data Labeler</SectionHeader> | ||
</div> | ||
); | ||
}; | ||
|
||
export default DataLabeler; |
1 change: 1 addition & 0 deletions
1
packages/icicle-tapisui-extension/src/pages/DataLabeler/index.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export { default as DataLabeler } from './DataLabeler'; |
12 changes: 12 additions & 0 deletions
12
packages/icicle-tapisui-extension/src/pages/DigitalAg/DigitalAg.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import * as React from 'react'; | ||
import { SectionHeader } from '@tapis/tapisui-common'; | ||
|
||
export const DigitalAg: React.FC = () => { | ||
return ( | ||
<div> | ||
<SectionHeader>Digital Ag</SectionHeader> | ||
</div> | ||
); | ||
}; | ||
|
||
export default DigitalAg; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export { default as DigitalAg } from './DigitalAg'; |
2 changes: 1 addition & 1 deletion
2
packages/icicle-tapisui-extension/src/pages/OpenWebUI/OpenWebUI.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
28 changes: 28 additions & 0 deletions
28
packages/icicle-tapisui-extension/src/pages/VisualAnalytics/VisualAnalytics.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
import * as React from 'react'; | ||
import { SectionHeader } from '@tapis/tapisui-common'; | ||
import { Component } from '@tapis/tapisui-extensions-core'; | ||
|
||
export const VisualAnalytics: Component = ({ accessToken }) => { | ||
return ( | ||
<div | ||
style={{ | ||
width: '100%', | ||
height: '100%', | ||
display: 'flex', | ||
flexDirection: 'column', | ||
overflow: 'hidden', | ||
}} | ||
> | ||
{accessToken ? ( | ||
<iframe | ||
style={{ flexGrow: 1, border: 'none' }} | ||
src={`https://vaapibackenddev.pods.icicle.tapis.io/tapisui-entry?jwt=${accessToken}`} | ||
/> | ||
) : ( | ||
<>Invalid JWT. Log out of TapisUI then log back in</> | ||
)} | ||
</div> | ||
); | ||
}; | ||
|
||
export default VisualAnalytics; |
1 change: 1 addition & 0 deletions
1
packages/icicle-tapisui-extension/src/pages/VisualAnalytics/index.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export { default as VisualAnalytics } from './VisualAnalytics'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,93 +1,8 @@ | ||
import * as React from 'react'; | ||
import { SectionHeader } from '@tapis/tapisui-common'; | ||
import { Component } from '@tapis/tapisui-extensions-core'; | ||
// export { JupyterLab } from './JupyterLab'; | ||
// import { OpenWebUI } from './OpenWebUI'; | ||
// export { MLEdge } from './MLEdge'; | ||
// export { SmartScheduler } from './SmartScheduler'; | ||
|
||
export const DataLabeler: React.FC = () => { | ||
return ( | ||
<div> | ||
<SectionHeader>Data Labeler</SectionHeader> | ||
</div> | ||
); | ||
}; | ||
|
||
export const JupyterLab: React.FC = () => { | ||
return ( | ||
<div> | ||
<SectionHeader>Jupyter Lab</SectionHeader> | ||
<iframe | ||
style={{ width: '100%', height: '800px', border: 'none' }} | ||
src="https://jupyterlab.pods.tacc.develop.tapis.io/" | ||
/> | ||
</div> | ||
); | ||
}; | ||
|
||
export const MLEdge: React.FC = () => { | ||
return ( | ||
<div> | ||
<SectionHeader>ML Edge</SectionHeader> | ||
</div> | ||
); | ||
}; | ||
|
||
export const OpenWebUI: React.FC = () => { | ||
return ( | ||
<div | ||
style={{ | ||
width: '100%', | ||
height: '100%', | ||
display: 'flex', | ||
flexDirection: 'column', | ||
overflow: 'hidden', | ||
}} | ||
> | ||
<iframe | ||
style={{ flexGrow: 1, border: 'none' }} | ||
src="https://openwebui.pods.tacc.develop.tapis.io/" | ||
/> | ||
</div> | ||
); | ||
}; | ||
|
||
export const DigitalAg: React.FC = () => { | ||
return ( | ||
<div> | ||
<SectionHeader>Digital Ag</SectionHeader> | ||
</div> | ||
); | ||
}; | ||
|
||
export const SmartScheduler: React.FC = () => { | ||
return ( | ||
<div> | ||
<SectionHeader>Smart Scheduler</SectionHeader> | ||
</div> | ||
); | ||
}; | ||
|
||
export const VisualAnalytics: Component = ({ accessToken }) => { | ||
return ( | ||
<div | ||
style={{ | ||
width: '100%', | ||
height: '100%', | ||
display: 'flex', | ||
flexDirection: 'column', | ||
overflow: 'hidden', | ||
}} | ||
> | ||
{accessToken ? ( | ||
<iframe | ||
style={{ flexGrow: 1, border: 'none' }} | ||
src={`https://vaapibackenddev.pods.icicle.tapis.io/tapisui-entry?jwt=${accessToken}`} | ||
/> | ||
) : ( | ||
<>Invalid JWT. Log out of TapisUI then log back in</> | ||
)} | ||
</div> | ||
); | ||
}; | ||
export { DataLabeler } from './DataLabeler'; | ||
export { JupyterLab } from './JupyterLab'; | ||
export { OpenWebUI } from './OpenWebUI'; | ||
export { MLEdge } from './MLEdge'; | ||
export { DigitalAg } from './DigitalAg'; | ||
export { SmartScheduler } from './SmartScheduler'; | ||
export { VisualAnalytics } from './VisualAnalytics'; | ||
export { TrainingCatalog } from './TrainingCatalog'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters