-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change export button to link directly to terra-ui import page
- Loading branch information
1 parent
6da2377
commit 0e8e708
Showing
2 changed files
with
12 additions
and
71 deletions.
There are no files selected for viewing
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,53 +1,22 @@ | ||
import * as React from 'react'; | ||
import { CircularProgress, IconButton, Link } from '@mui/material'; | ||
import { useState } from 'react'; | ||
import IosShareIcon from '@mui/icons-material/IosShare'; | ||
import { TerraDataRepo } from '../../libs/ajax/TerraDataRepo'; | ||
import {useEffect, useState} from 'react'; | ||
import {Link} from '@mui/material'; | ||
import {Config} from '../../libs/config'; | ||
|
||
export const DatasetExportButton = (props) => { | ||
const { snapshot, title } = props; | ||
// The exportStatus flow is: initial -> prepping -> ready | ||
// TODO: error handling? | ||
const [exportStatus, setExportStatus] = useState('initial'); | ||
const [exportResult, setExportResult] = useState(null); | ||
const {snapshot, title} = props; | ||
|
||
// Not a supported export location | ||
if (!snapshot) { | ||
return null; | ||
} | ||
const [terraUrl, setTerraUrl] = useState(''); | ||
|
||
const prepExportHandler = async () => { | ||
setExportStatus('prepping'); | ||
const job = await TerraDataRepo.prepareExport(snapshot.id); | ||
const result = await TerraDataRepo.waitForJob(job.id); | ||
setExportResult(result); | ||
setExportStatus('ready'); | ||
}; | ||
useEffect(() => { | ||
(async () => { | ||
setTerraUrl(await Config.getTerraUrl()); | ||
})(); | ||
}, []); | ||
|
||
if (exportStatus === 'initial') { | ||
return ( | ||
<IconButton aria-label="prepare export to Terra" size="medium" onClick={prepExportHandler}> | ||
<IosShareIcon size={15} /> | ||
</IconButton> | ||
); | ||
} | ||
|
||
if (exportStatus === 'prepping') { | ||
return ( | ||
<IconButton aria-label="prepare export to Terra" size="medium" onClick={() => ({})} disabled> | ||
<CircularProgress size={15} />, | ||
</IconButton> | ||
); | ||
} | ||
|
||
if (exportStatus === 'ready') { | ||
return ( | ||
<Link href={exportResult.terraImportLink} target="_blank" rel="noopener noreferrer" title={title} aria-label={title}>Export</Link> | ||
); | ||
} | ||
|
||
return null; | ||
const link = `${terraUrl}/#import-data?snapshotId=${snapshot.id}&format=tdrexport&tdrSyncPermissions=false`; | ||
|
||
return <Link href={link} target="_blank" rel="noopener noreferrer" title={title} aria-label={title}>Export</Link>; | ||
}; | ||
|
||
export default DatasetExportButton; |
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