mirror of
https://github.com/flarum/framework.git
synced 2024-12-05 17:13:38 +08:00
59 lines
1.6 KiB
JavaScript
59 lines
1.6 KiB
JavaScript
/*
|
|
* This file is part of Flarum.
|
|
*
|
|
* (c) Toby Zerner <toby.zerner@gmail.com>
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
import DashboardWidget from './DashboardWidget';
|
|
import listItems from '../../common/helpers/listItems';
|
|
import ItemList from '../../common/utils/ItemList';
|
|
import Dropdown from '../../common/components/Dropdown';
|
|
import Button from '../../common/components/Button';
|
|
import LoadingModal from './LoadingModal';
|
|
|
|
export default class StatusWidget extends DashboardWidget {
|
|
className() {
|
|
return 'StatusWidget';
|
|
}
|
|
|
|
content() {
|
|
return <ul>{listItems(this.items().toArray())}</ul>;
|
|
}
|
|
|
|
items() {
|
|
const items = new ItemList();
|
|
|
|
items.add(
|
|
'tools',
|
|
<Dropdown
|
|
label={app.translator.trans('core.admin.dashboard.tools_button')}
|
|
icon="fas fa-cog"
|
|
buttonClassName="Button"
|
|
menuClassName="Dropdown-menu--right"
|
|
>
|
|
<Button onclick={this.handleClearCache.bind(this)}>{app.translator.trans('core.admin.dashboard.clear_cache_button')}</Button>
|
|
</Dropdown>
|
|
);
|
|
|
|
items.add('version-flarum', [<strong>Flarum</strong>, <br />, app.forum.attribute('version')]);
|
|
items.add('version-php', [<strong>PHP</strong>, <br />, app.data.phpVersion]);
|
|
items.add('version-mysql', [<strong>MySQL</strong>, <br />, app.data.mysqlVersion]);
|
|
|
|
return items;
|
|
}
|
|
|
|
handleClearCache(e) {
|
|
app.modal.show(new LoadingModal());
|
|
|
|
app
|
|
.request({
|
|
method: 'DELETE',
|
|
url: app.forum.attribute('apiUrl') + '/cache',
|
|
})
|
|
.then(() => window.location.reload());
|
|
}
|
|
}
|