121 lines
3.4 KiB
JavaScript
121 lines
3.4 KiB
JavaScript
import React from 'react';
|
|
import axios from 'axios';
|
|
import CommandGroup from './CommandGroup.jsx';
|
|
import { NavLink, Route } from 'react-router-dom';
|
|
// import { Tab, Tabs, TabList, TabPanel } from 'react-tabs';
|
|
import { updateCommandToggle } from './service/CommandService';
|
|
import Loader from '../common/Loader.jsx';
|
|
|
|
export default class Commands extends React.Component {
|
|
constructor(props) {
|
|
super(props);
|
|
this.state = {
|
|
commands: [],
|
|
channels: [],
|
|
roles: [],
|
|
prefix: '?',
|
|
isLoading: true,
|
|
};
|
|
}
|
|
|
|
componentWillMount() {
|
|
this.getCommands();
|
|
}
|
|
|
|
async getCommands(type, id) {
|
|
const basePath = `/api/modules/${this.props.data.guildId}/commands`;
|
|
const url = type ? `${basePath}/${type}/${id}` : basePath;
|
|
try {
|
|
let response = await axios.get(url);
|
|
|
|
this.setState({
|
|
commands: response.data.commands || [],
|
|
channels: response.data.channels || [],
|
|
roles: response.data.roles || [],
|
|
prefix: response.data.prefix || '?',
|
|
isLoading: false,
|
|
});
|
|
} catch (e) {
|
|
this.setState({ error: 'Failed to get data, try again later' });
|
|
}
|
|
}
|
|
|
|
async toggleCommand(command, checked) {
|
|
if (command.disabled) {
|
|
return;
|
|
}
|
|
updateCommandToggle(command, checked);
|
|
}
|
|
|
|
render() {
|
|
if (this.state.isLoading) {
|
|
return <Loader />;
|
|
}
|
|
|
|
let commands = this.state.commands;
|
|
|
|
return (<div id="commands" className="module-content">
|
|
<h3 className="title is-4">Commands</h3>
|
|
<div className="settings-top">
|
|
{/* <Tabs selectedTabClassName="is-active" selectedTabPanelClassName="is-active"> */}
|
|
<div className='tabs'>
|
|
<ul className='tabs'>
|
|
{commands.map((c, i) => {
|
|
const url = this.props.match.url.replace(/\/$/, '');
|
|
if (i === 0) {
|
|
return (
|
|
<li key={i}><NavLink exact to={`${url}`} className='subtab-control' activeClassName='is-active'>{c.name}</NavLink></li>
|
|
);
|
|
} else {
|
|
return (
|
|
<li key={i}><NavLink to={`${url}/${c.name.toLowerCase()}`} className='subtab-control' activeClassName='is-active'>{c.name}</NavLink></li>
|
|
);
|
|
}
|
|
})}
|
|
</ul>
|
|
{/* <TabList className="tabs">
|
|
{commands.map((c, i) => (
|
|
<Tab key={i}><a className="subtab-control">{c.name}</a></Tab>)
|
|
)}
|
|
</TabList> */}
|
|
</div>
|
|
{commands.map((c, i) => {
|
|
const path = this.props.match.path;
|
|
if (i === 0) {
|
|
return (
|
|
<Route key={i} exact path={`${path}`} render={(props) => (
|
|
<CommandGroup
|
|
key={'cmd-group-' + c.name}
|
|
group={c}
|
|
onToggle={this.toggleCommand}
|
|
getCommands={this.getCommands.bind(this)} {...this.state} {...this.props} />
|
|
)} />
|
|
);
|
|
} else {
|
|
return (
|
|
<Route key={i} exact path={`${path}/${c.name.toLowerCase()}`} render={(props) => (
|
|
<CommandGroup
|
|
key={'cmd-group-' + c.name}
|
|
group={c}
|
|
onToggle={this.toggleCommand}
|
|
getCommands={this.getCommands.bind(this)} {...this.state} {...this.props} />
|
|
)} />
|
|
);
|
|
}
|
|
})}
|
|
{/* {commands.map((c, i) => (
|
|
<TabPanel className='flex-containers' key={i}>
|
|
<CommandGroup
|
|
key={'cmd-group-' + c.name}
|
|
group={c}
|
|
onToggle={this.toggleCommand}
|
|
getCommands={this.getCommands.bind(this)} {...this.state} {...this.props} />
|
|
</TabPanel>))
|
|
} */}
|
|
{/* </Tabs> */}
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
}
|