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