garage-box/src/BucketList.tsx

48 lines
856 B
TypeScript

import React from 'react';
import { S3Client, ListBucketsCommand } from '@aws-sdk/client-s3';
type Props = {
client: S3Client;
};
type State = {
buckets: string[];
};
class BucketList extends React.Component<Props, State> {
state = {
buckets: [],
};
constructor(props: Props) {
super(props);
this.init();
}
async init() {
let command = new ListBucketsCommand({});
try {
const data = await this.props.client.send(command);
console.log("ok", data);
const buckets = (data.Buckets || []).map((b) => (b.Name || 'aza'));
this.setState({buckets: buckets});
} catch(error) {
console.log("err", error);
}
}
render() {
return (
<ul>
{ this.state.buckets.map((b) =>
<li key="{b}">{ b }</li>
)}
</ul>
);
}
}
export default BucketList;