1
0
mirror of https://github.com/mgerb/go-discord-bot synced 2026-01-09 08:32:48 +00:00
Files
go-discord-bot/client/app/pages/clips/clips.tsx
2018-08-19 18:31:08 -05:00

46 lines
863 B
TypeScript

import React from 'react';
import { SoundList, SoundType } from '../../components';
import { axios } from '../../services';
interface Props {}
interface State {
clipList: SoundType[];
}
export class Clips extends React.Component<Props, State> {
constructor(props: Props) {
super(props);
this.state = {
clipList: [],
};
}
componentDidMount() {
this.getClipList();
}
private getClipList() {
axios
.get('/api/cliplist')
.then(response => {
this.setState({
clipList: response.data,
});
})
.catch((error: any) => {
console.error(error.response.data);
});
}
render() {
return (
<div className="content">
<div className="column">
<SoundList soundList={this.state.clipList} type="Clips" />
</div>
</div>
);
}
}