56 lines
1.1 KiB
JavaScript
56 lines
1.1 KiB
JavaScript
import React, { Component } from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import api from './api/GoogleCloudApi';
|
|
import DatasetsList from './DatasetsList';
|
|
import './googleCloud.css';
|
|
|
|
export default class DatasetPicker extends Component {
|
|
state = {
|
|
error: null,
|
|
loading: true,
|
|
datasets: [],
|
|
};
|
|
|
|
static propTypes = {
|
|
project: PropTypes.object,
|
|
location: PropTypes.object,
|
|
onSelect: PropTypes.func,
|
|
oidcKey: PropTypes.string,
|
|
};
|
|
|
|
async componentDidMount() {
|
|
api.setOidcStorageKey(this.props.oidcKey);
|
|
|
|
const response = await api.loadDatasets(
|
|
this.props.project.projectId,
|
|
this.props.location.locationId
|
|
);
|
|
|
|
if (response.isError) {
|
|
this.setState({
|
|
error: response.message,
|
|
});
|
|
|
|
return;
|
|
}
|
|
|
|
this.setState({
|
|
datasets: response.data.datasets || [],
|
|
loading: false,
|
|
});
|
|
}
|
|
|
|
render() {
|
|
const { datasets, loading, error } = this.state;
|
|
const { onSelect } = this.props;
|
|
return (
|
|
<DatasetsList
|
|
datasets={datasets}
|
|
loading={loading}
|
|
error={error}
|
|
onSelect={onSelect}
|
|
/>
|
|
);
|
|
}
|
|
}
|